Bump @types/node from 14.14.33 to 14.14.34 (#269)
[poolifier.git] / CHANGELOG.md
... / ...
CommitLineData
1# Changelog
2
3All notable changes to this project will be documented in this file.
4
5The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
8## [2.0.0] - 2021-01-03
9
10### Bug fixes
11
12- Now a thread/process by default is not deleted when the task submitted take more time than maxInactiveTime configured (issue #70).
13
14### Breaking Changes
15
16- `FullPool` event is now renamed to `busy` and emitted on all pool types.
17- `maxInactiveTime` on `ThreadWorker` default behavior is now changed, if you want to keep the old behavior set `killBehavior` to `KillBehaviors.HARD`.
18 _Find more details on our JSDoc._
19
20- `maxTasks` option on `FixedThreadPool` and `DynamicThreadPool` is now removed since is no more needed.
21
22- We changed some internal structures, but you shouldn't be too affected by them as these are internal changes.
23
24### Pool options types declaration merge
25
26`FixedThreadPoolOptions` and `DynamicThreadPoolOptions` type declarations have been merged to `PoolOptions<Worker>`.
27
28#### New `export` strategy
29
30```js
31// Before
32const DynamicThreadPool = require('poolifier/lib/dynamic')
33// After
34const { DynamicThreadPool } = require('poolifier/lib/dynamic')
35```
36
37But you should always prefer just using
38
39```js
40const { DynamicThreadPool } = require('poolifier')
41```
42
43#### New type definitions for input data and response
44
45For cluster worker and worker-thread pools, you can now only send and receive serializable data.
46_This is not a limitation by poolifier but NodeJS._
47
48#### Public property replacements
49
50`numWorkers` property is now `numberOfWorkers`
51
52#### Internal (protected) properties and methods renaming
53
54These properties are not intended for end users
55
56- `id` => `nextMessageId`
57
58These methods are not intended for end users
59
60- `_chooseWorker` => `chooseWorker`
61- `_newWorker` => `createWorker`
62- `_execute` => `internalExecute`
63- `_chooseWorker` => `chooseWorker`
64- `_checkAlive` => `checkAlive`
65- `_run` => `run`
66- `_runAsync` => `runAsync`
67
68## [1.1.0] - 2020-21-05
69
70### Added
71
72- ThreadWorker support async functions as option
73- Various external library patches
74
75## [1.0.0] - 2020-24-01
76
77### Added
78
79- FixedThreadPool implementation
80- DynamicThreadPool implementation
81- WorkerThread implementation to improve developer experience