CHANGELOG.md: update
[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
45a5a54c
JB
8## [Unreleased]
9
b953022b
JB
10### Changed
11
12- Switch to open collective FOSS project funding platform.
13
3b9f6953
JB
14## [2.3.6] - 2022-10-22
15
f80cead4
JB
16### Changed
17
18- Cleanup pool attributes and methods.
19- Refine error types thrown.
20
21### Fixed
22
23- Fix continuous integration build on windows.
24- Fix code coverage reporting by using c8 instead of nyc.
25
efc22107
JB
26## [2.3.5] - 2022-10-21
27
7a6a0a96
JB
28### Changed
29
a05c10de
JB
30- Improve benchmarks: add IO intensive task workload, add task size option, integrate code into linter.
31- Optimize tasks usage lookup implementation.
7a6a0a96 32
b4904890
JB
33### Fixed
34
35- Fix missed pool event emitter type export.
36- Fix typedoc documentation generation.
37
a875f8d1
JB
38## [2.3.4] - 2022-10-17
39
73cda448
JB
40### Added
41
42- Fully automate release process with release-it.
43
45a5a54c
JB
44### Changed
45
73cda448 46- Optimize fair share task scheduling algorithm implementation.
eb4a8a82 47- Update benchmarks versus external pools results with latest version.
45a5a54c 48
90ee1b18 49## [2.3.3] - 2022-10-15
1a76932b
JB
50
51### Added
52
53- Add support for [cluster settings](https://nodejs.org/api/cluster.html#cluster_cluster_settings) in cluster pool options.
54
90ee1b18 55## [2.3.2] - 2022-10-14
11df3590
JB
56
57### Changed
58
59- Optimize fair share worker selection strategy implementation.
60
61### Fixed
62
63- Fix WRR worker selection strategy: ensure the condition triggering the round robin can be fulfilled.
64
90ee1b18 65## [2.3.1] - 2022-10-13
23ff945a
JB
66
67### Added
68
69- Pool worker choice strategies:
70 - `WorkerChoiceStrategies.WEIGHTED_ROUND_ROBIN` strategy based on weighted round robin scheduling algorithm using tasks execution time for now.
71 - `WorkerChoiceStrategies.FAIR_SHARE` strategy based on fair share scheduling algorithm using tasks execution time for now.
72
90ee1b18 73## [2.2.2] - 2022-10-09
cb2b6c69
JB
74
75### Fixed
76
77- Fixed `README.md` file.
78
90ee1b18 79## [2.2.1] - 2022-10-08
bdacc2d2 80
bdaf31cd
JB
81### Added
82
83- Dynamic worker choice strategy change at runtime.
bdacc2d2 84
90ee1b18 85## [2.2.0] - 2022-01-05
7e0d447f
JB
86
87### Breaking Changes
88
89- Support only NodeJS version 16.x.x for cluster pool: upstream cluster API have changed on that version.
90
90ee1b18 91## [2.1.0] - 2021-08-29
35cf1c03
JB
92
93### Added
94
95- Add an optional pool option `messageHandler` to `PoolOptions<Worker>` for registering a message handler callback on each worker.
e088a00c
JB
96
97### Breaking Changes
98
99- `AbstractWorker` class `maxInactiveTime`, `killBehavior` and `async` attributes have been removed in favour of the same ones in the worker options `opts` public attribute.
100- `AbstractWorker` class `lastTask` attribute have been renamed to `lastTaskTimestamp`.
101- `AbstractWorker` class `interval` attribute have been renamed to `aliveInterval`.
c365b2d3 102- `AbstractWorker` class cannot be instantiated without specifying the `mainWorker` argument referencing the main worker.
e088a00c 103
90ee1b18 104## [2.0.2] - 2021-05-12
14916bf9
JB
105
106### Bug fixes
107
108- Fix `busy` event emission on fixed pool type
109
90ee1b18 110## [2.0.1] - 2021-03-16
7f685093
JB
111
112### Bug fixes
113
114- Check if pool options are properly set.
115- `busy` event is emitted on all pool types.
116
90ee1b18 117## [2.0.0] - 2021-03-01
fa0f5b28 118
f3f833ab 119### Bug fixes
d63d3be3 120
ddbeaffd 121- Now a thread/process by default is not deleted when the task submitted take more time than maxInactiveTime configured (issue #70).
d63d3be3 122
fa0f5b28
S
123### Breaking Changes
124
7f685093 125- `FullPool` event is now renamed to `busy`.
1927ee67 126- `maxInactiveTime` on `ThreadWorker` default behavior is now changed, if you want to keep the old behavior set `killBehavior` to `KillBehaviors.HARD`.
1a81f8af 127 _Find more details on our JSDoc._
ddbeaffd 128
1927ee67
APA
129- `maxTasks` option on `FixedThreadPool` and `DynamicThreadPool` is now removed since is no more needed.
130
ddbeaffd 131- We changed some internal structures, but you shouldn't be too affected by them as these are internal changes.
fa0f5b28 132
ec2ccfc8
JB
133### Pool options types declaration merge
134
135`FixedThreadPoolOptions` and `DynamicThreadPoolOptions` type declarations have been merged to `PoolOptions<Worker>`.
136
fa0f5b28
S
137#### New `export` strategy
138
139```js
140// Before
777b7824 141const DynamicThreadPool = require('poolifier/lib/dynamic')
fa0f5b28 142// After
777b7824 143const { DynamicThreadPool } = require('poolifier/lib/dynamic')
fa0f5b28
S
144```
145
146But you should always prefer just using
147
148```js
777b7824 149const { DynamicThreadPool } = require('poolifier')
fa0f5b28
S
150```
151
d3c8a1a8
S
152#### New type definitions for input data and response
153
ec2ccfc8 154For cluster worker and worker-thread pools, you can now only send and receive serializable data.
d3c8a1a8
S
155_This is not a limitation by poolifier but NodeJS._
156
3a4b605f 157#### Public property replacements
5c5a1fb7 158
3a4b605f 159`numWorkers` property is now `numberOfWorkers`
5c5a1fb7 160
280c2a77 161#### Internal (protected) properties and methods renaming
fa0f5b28 162
280c2a77
S
163These properties are not intended for end users
164
165- `id` => `nextMessageId`
166
167These methods are not intended for end users
fa0f5b28
S
168
169- `_chooseWorker` => `chooseWorker`
280c2a77 170- `_newWorker` => `createWorker`
fa0f5b28
S
171- `_execute` => `internalExecute`
172- `_chooseWorker` => `chooseWorker`
173- `_checkAlive` => `checkAlive`
174- `_run` => `run`
175- `_runAsync` => `runAsync`
176
90ee1b18 177## [1.1.0] - 2020-05-21
0312f71a
APA
178
179### Added
180
181- ThreadWorker support async functions as option
cf9aa6c3 182- Various external library patches
0312f71a 183
90ee1b18 184## [1.0.0] - 2020-01-24
522eea03 185
186### Added
187
188- FixedThreadPool implementation
189- DynamicThreadPool implementation
0312f71a 190- WorkerThread implementation to improve developer experience