README.md: fix typo
[poolifier.git] / CHANGELOG.md
CommitLineData
522eea03 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
11df3590
JB
8## [2.3.2] - 2022-14-10
9
10### Changed
11
12- Optimize fair share worker selection strategy implementation.
13
14### Fixed
15
16- Fix WRR worker selection strategy: ensure the condition triggering the round robin can be fulfilled.
17
3f4ea67d 18## [2.3.1] - 2022-13-10
23ff945a
JB
19
20### Added
21
22- Pool worker choice strategies:
23 - `WorkerChoiceStrategies.WEIGHTED_ROUND_ROBIN` strategy based on weighted round robin scheduling algorithm using tasks execution time for now.
24 - `WorkerChoiceStrategies.FAIR_SHARE` strategy based on fair share scheduling algorithm using tasks execution time for now.
25
cb2b6c69
JB
26## [2.2.2] - 2022-09-10
27
28### Fixed
29
30- Fixed `README.md` file.
31
32## [2.2.1] - 2022-08-10
bdacc2d2 33
bdaf31cd
JB
34### Added
35
36- Dynamic worker choice strategy change at runtime.
bdacc2d2 37
72ddc5cb 38## [2.2.0] - 2022-05-01
7e0d447f
JB
39
40### Breaking Changes
41
42- Support only NodeJS version 16.x.x for cluster pool: upstream cluster API have changed on that version.
43
f30df385 44## [2.1.0] - 2021-29-08
35cf1c03
JB
45
46### Added
47
48- Add an optional pool option `messageHandler` to `PoolOptions<Worker>` for registering a message handler callback on each worker.
e088a00c
JB
49
50### Breaking Changes
51
52- `AbstractWorker` class `maxInactiveTime`, `killBehavior` and `async` attributes have been removed in favour of the same ones in the worker options `opts` public attribute.
53- `AbstractWorker` class `lastTask` attribute have been renamed to `lastTaskTimestamp`.
54- `AbstractWorker` class `interval` attribute have been renamed to `aliveInterval`.
c365b2d3 55- `AbstractWorker` class cannot be instantiated without specifying the `mainWorker` argument referencing the main worker.
e088a00c 56
d7a0c5c5 57## [2.0.2] - 2021-12-05
14916bf9
JB
58
59### Bug fixes
60
61- Fix `busy` event emission on fixed pool type
62
59af1281 63## [2.0.1] - 2021-16-03
7f685093
JB
64
65### Bug fixes
66
67- Check if pool options are properly set.
68- `busy` event is emitted on all pool types.
69
3695a6b0 70## [2.0.0] - 2021-01-03
fa0f5b28 71
f3f833ab 72### Bug fixes
d63d3be3 73
ddbeaffd 74- Now a thread/process by default is not deleted when the task submitted take more time than maxInactiveTime configured (issue #70).
d63d3be3 75
fa0f5b28
S
76### Breaking Changes
77
7f685093 78- `FullPool` event is now renamed to `busy`.
1927ee67 79- `maxInactiveTime` on `ThreadWorker` default behavior is now changed, if you want to keep the old behavior set `killBehavior` to `KillBehaviors.HARD`.
1a81f8af 80 _Find more details on our JSDoc._
ddbeaffd 81
1927ee67
APA
82- `maxTasks` option on `FixedThreadPool` and `DynamicThreadPool` is now removed since is no more needed.
83
ddbeaffd 84- We changed some internal structures, but you shouldn't be too affected by them as these are internal changes.
fa0f5b28 85
ec2ccfc8
JB
86### Pool options types declaration merge
87
88`FixedThreadPoolOptions` and `DynamicThreadPoolOptions` type declarations have been merged to `PoolOptions<Worker>`.
89
fa0f5b28
S
90#### New `export` strategy
91
92```js
93// Before
777b7824 94const DynamicThreadPool = require('poolifier/lib/dynamic')
fa0f5b28 95// After
777b7824 96const { DynamicThreadPool } = require('poolifier/lib/dynamic')
fa0f5b28
S
97```
98
99But you should always prefer just using
100
101```js
777b7824 102const { DynamicThreadPool } = require('poolifier')
fa0f5b28
S
103```
104
d3c8a1a8
S
105#### New type definitions for input data and response
106
ec2ccfc8 107For cluster worker and worker-thread pools, you can now only send and receive serializable data.
d3c8a1a8
S
108_This is not a limitation by poolifier but NodeJS._
109
3a4b605f 110#### Public property replacements
5c5a1fb7 111
3a4b605f 112`numWorkers` property is now `numberOfWorkers`
5c5a1fb7 113
280c2a77 114#### Internal (protected) properties and methods renaming
fa0f5b28 115
280c2a77
S
116These properties are not intended for end users
117
118- `id` => `nextMessageId`
119
120These methods are not intended for end users
fa0f5b28
S
121
122- `_chooseWorker` => `chooseWorker`
280c2a77 123- `_newWorker` => `createWorker`
fa0f5b28
S
124- `_execute` => `internalExecute`
125- `_chooseWorker` => `chooseWorker`
126- `_checkAlive` => `checkAlive`
127- `_run` => `run`
128- `_runAsync` => `runAsync`
129
0312f71a
APA
130## [1.1.0] - 2020-21-05
131
132### Added
133
134- ThreadWorker support async functions as option
cf9aa6c3 135- Various external library patches
0312f71a 136
522eea03 137## [1.0.0] - 2020-24-01
138
139### Added
140
141- FixedThreadPool implementation
142- DynamicThreadPool implementation
0312f71a 143- WorkerThread implementation to improve developer experience