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