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