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