refactor: silence sonar
[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
e4543b14
JB
10### Added
11
12- Switch pool event emitter to `EventEmitterAsyncResource`.
13
14### Changed
15
16- Renamed worker choice strategy `LESS_BUSY` to `LEAST_BUSY` and `LESS_USED` to `LEAST_USED`.
17
570efb11
JB
18## [2.4.14] - 2023-05-09
19
b0f28bad
JB
20### Fixed
21
22- Ensure no undefined task runtime can land in the tasks history.
23- Fix median computation implementation once again.
24
110b6d13
JB
25### Added
26
27- Unit tests for median and queue implementations.
28
72584880
JB
29## [2.4.13] - 2023-05-08
30
b0d6ed8f
JB
31### Fixed
32
e3058615 33- Fix worker choice strategy options validation.
b0d6ed8f
JB
34- Fix fair share worker choice strategy internals update: ensure virtual task end timestamp is computed at task submission.
35
06140c32
JB
36## [2.4.12] - 2023-05-06
37
a86b6df1
JB
38### Added
39
40- Support multiple task functions per worker.
08f3f44c 41- Add custom worker weights support to worker choice strategies options.
a86b6df1 42
29ee7e9a
JB
43### Changed
44
45- Use O(1) queue implementation for tasks queueing.
46
0682ba15
JB
47### Fixed
48
49- Fix median computation implementation.
50- Fix fair share worker choice strategy internals update.
51
936d53ec
JB
52## [2.4.11] - 2023-04-23
53
cb70b19d
JB
54### Changed
55
56- Optimize free worker finding in worker choice strategies.
57
15bb637a
JB
58## [2.4.10] - 2023-04-15
59
ef41a6e6
JB
60### Fixed
61
62- Fix typescript type definition for worker function: ensure the input data is optional.
63- Fix typescript type definition for pool execute(): ensure the input data is optional.
64
181eb2b4
JB
65## [2.4.9] - 2023-04-15
66
a20f0ba5
JB
67### Added
68
69- Add tasks queue enablement runtime setter to pool.
70- Add tasks queue options runtime setter to pool.
71- Add worker choice strategy options runtime setter to pool.
72
73### Changed
74
75- Remove the tasks queuing experimental status.
76
d4aeae5a
JB
77### Fixed
78
79- Fix worker function type definition and validation.
2fc5cae3 80- Fix worker choice strategy options handling.
d4aeae5a 81
1d9e7023
JB
82## [2.4.8] - 2023-04-12
83
f9b4bbf8
JB
84### Fixed
85
86- Fix message between main worker and worker type definition for tasks.
87- Fix code documentation.
88
12ae3210
JB
89## [2.4.7] - 2023-04-11
90
7171d33f
JB
91### Added
92
93- Add worker tasks queue options to pool options.
94
e8bd29ce
JB
95### Fixed
96
97- Fix missing documentation.
98
42c7bc10
JB
99## [2.4.6] - 2023-04-10
100
681196cc
JB
101### Fixed
102
103- Ensure one task at a time is executed per worker with tasks queueing enabled.
76545787 104- Properly count worker running tasks with tasks queueing enabled.
681196cc 105
54d360e3
JB
106## [2.4.5] - 2023-04-09
107
3fafb1b2
JB
108### Added
109
9e775f96
JB
110- Use monotonic high resolution timer for worker tasks runtime.
111- Add worker tasks median runtime to statistics.
ff733df7 112- Add worker tasks queue (experimental).
3fafb1b2 113
92fa3eb6
JB
114## [2.4.4] - 2023-04-07
115
aee46736
JB
116### Added
117
118- Add `PoolEvents` enumeration and `PoolEvent` type.
119
36b5e78f
JB
120### Fixed
121
ff0c2b3e 122- Destroy worker only on alive check.
36b5e78f 123
9fb0f324
JB
124## [2.4.3] - 2023-04-07
125
28cf3617
JB
126### Fixed
127
128- Fix typedoc generation with inheritance.
129
848f0f27
JB
130## [2.4.2] - 2023-04-06
131
164d950a
JB
132### Added
133
134- Add `full` event to dynamic pool.
32417142 135- Keep worker choice strategy in memory for conditional reuse.
164d950a 136
78ab2555
JB
137### Fixed
138
139- Fix possible negative worker key at worker removal in worker choice strategies.
140
79aafe9f
JB
141## [2.4.1] - 2023-04-05
142
9cd39dd4
JB
143### Changed
144
145- Optimize worker choice strategy for dynamic pool.
146
965415bb
JB
147### Fixed
148
149- Ensure dynamic pool does not alter worker choice strategy expected behavior.
150
d8b60b1c
JB
151## [2.4.0] - 2023-04-04
152
c6bd2650
JB
153### Added
154
155- Add `LESS_BUSY` worker choice strategy.
156
157### Changed
158
159- Optimize worker storage in pool.
160- Optimize worker alive status check.
161- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
162- Optimize `LESS_USED` worker choice strategy.
163- Update benchmarks versus external threads pools.
164- Optimize tasks usage statistics requirements for worker choice strategy.
165
166### Fixed
167
168- Ensure trimmable characters are checked at pool initialization.
169- Fix message id integer overflow.
170- Fix pool worker removal in worker choice strategy internals.
171- Fix package publication with pnpm.
172
d0a3f018
JB
173## [2.4.0-3] - 2023-04-04
174
b2ede285
JB
175### Added
176
177- Add `LESS_BUSY` worker choice strategy.
178
179### Changed
180
181- Optimize worker storage in pool.
182- Optimize worker alive status check.
183- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
184- Optimize `LESS_USED` worker choice strategy.
185- Update benchmarks versus external threads pools.
186
187### Fixed
188
189- Ensure trimmable characters are checked at pool initialization.
190- Fix message id integer overflow.
191- Fix pool worker removal in worker choice strategy internals.
192- Fix package publication with pnpm.
193
a015ea40
JB
194## [2.4.0-2] - 2023-04-03
195
698f4bbc
JB
196### Added
197
198- Add `LESS_BUSY` worker choice strategy.
199
200### Changed
201
202- Optimize worker storage in pool.
203- Optimize worker alive status check.
204- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
205- Optimize `LESS_USED` worker choice strategy.
206
207### Fixed
208
209- Ensure trimmable characters are checked at pool initialization.
210- Fix message id integer overflow.
211- Fix pool worker removal in worker choice strategy internals.
212- Fix package publication with pnpm.
213
8fe15920
JB
214## [2.4.0-1] - 2023-04-03
215
5b301c28
JB
216### Added
217
218- Add `LESS_BUSY` worker choice strategy.
219
220### Changed
221
222- Optimize worker storage in pool.
223- Optimize worker alive status check.
224- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
225- Optimize `LESS_USED` worker choice strategy.
226
227### Fixed
228
229- Ensure trimmable characters are checked at pool initialization.
230- Fix message id integer overflow.
231- Fix pool worker removal in worker choice strategy internals.
232
2fb9ca9c
JB
233## [2.4.0-0] - 2023-04-03
234
168c526f
JB
235### Added
236
237- Add `LESS_BUSY` worker choice strategy.
238
1d71a908
JB
239### Changed
240
ffcbbad8 241- Optimize worker storage in pool.
1d71a908 242- Optimize worker alive status check.
65a60b3b 243- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
737c6d97 244- Optimize `LESS_USED` worker choice strategy.
1d71a908 245
ffcbbad8
JB
246### Fixed
247
248- Ensure trimmable characters are checked at pool initialization.
b4e75778 249- Fix message id integer overflow.
97a2abc3 250- Fix pool worker removal in worker choice strategy internals.
ffcbbad8 251
08372738
JB
252## [2.3.10] - 2023-03-18
253
710826bc
JB
254### Fixed
255
256- Fix `exports` syntax for ESM and CommonJS.
257
258### Changed
259
260- Permit SemVer pre-release publication.
76e5ac6f 261
e4796ecd
JB
262## [2.3.10-2] - 2023-03-18
263
6abad580
JB
264### Fixed
265
266- Fix `exports` syntax for ESM and CommonJS.
267
a2ee98cc
JB
268## [2.3.10-1] - 2023-03-18
269
7e060cee
JB
270### Changed
271
90483887 272- Permit SemVer pre-release publication.
7e060cee 273
c81bfafb
JB
274## [2.3.10-0] - 2023-03-18
275
fe18768d
JB
276### Fixed
277
278- Fix `exports` syntax for ESM and CommonJS.
279
d7b78217
JB
280## [2.3.9] - 2023-03-18
281
ed6dd37f
JB
282### Changed
283
284- Introduce ESM module support along with CommonJS one.
285
286### Fixed
287
288- Fix brown paper bag bug referencing the same object literal.
289
68e2ad86
JB
290## [2.3.8] - 2023-03-18
291
ca6c7d70
JB
292### Changed
293
294- Switch internal benchmarking code to benny.
fbdedeb9
JB
295- Switch to TypeScript 5.x.x.
296- Switch rollup bundler plugins to core ones.
ed6dd37f 297- Switch to TSDoc syntax.
fbdedeb9 298- Enforce conventional commits.
ca6c7d70 299
d15211d4
JB
300### Fixed
301
302- Fix random integer generator.
fbdedeb9 303- Fix worker choice strategy pool type identification at initialization.
d15211d4 304
995705ea
JB
305## [2.3.7] - 2022-10-23
306
b953022b
JB
307### Changed
308
309- Switch to open collective FOSS project funding platform.
78cea37e
JB
310- Switch to ts-standard linter configuration on TypeScript code.
311
312### Fixed
313
314- Fixed missing async on pool execute method.
315- Fixed typing in TypeScript example.
316- Fixed types in unit tests.
b953022b 317
3b9f6953
JB
318## [2.3.6] - 2022-10-22
319
f80cead4
JB
320### Changed
321
322- Cleanup pool attributes and methods.
323- Refine error types thrown.
324
325### Fixed
326
327- Fix continuous integration build on windows.
328- Fix code coverage reporting by using c8 instead of nyc.
329
efc22107
JB
330## [2.3.5] - 2022-10-21
331
7a6a0a96
JB
332### Changed
333
a05c10de
JB
334- Improve benchmarks: add IO intensive task workload, add task size option, integrate code into linter.
335- Optimize tasks usage lookup implementation.
7a6a0a96 336
b4904890
JB
337### Fixed
338
339- Fix missed pool event emitter type export.
340- Fix typedoc documentation generation.
341
a875f8d1
JB
342## [2.3.4] - 2022-10-17
343
73cda448
JB
344### Added
345
346- Fully automate release process with release-it.
347
45a5a54c
JB
348### Changed
349
73cda448 350- Optimize fair share task scheduling algorithm implementation.
eb4a8a82 351- Update benchmarks versus external pools results with latest version.
45a5a54c 352
90ee1b18 353## [2.3.3] - 2022-10-15
1a76932b
JB
354
355### Added
356
357- Add support for [cluster settings](https://nodejs.org/api/cluster.html#cluster_cluster_settings) in cluster pool options.
358
90ee1b18 359## [2.3.2] - 2022-10-14
11df3590
JB
360
361### Changed
362
363- Optimize fair share worker selection strategy implementation.
364
365### Fixed
366
367- Fix WRR worker selection strategy: ensure the condition triggering the round robin can be fulfilled.
368
90ee1b18 369## [2.3.1] - 2022-10-13
23ff945a
JB
370
371### Added
372
373- Pool worker choice strategies:
374 - `WorkerChoiceStrategies.WEIGHTED_ROUND_ROBIN` strategy based on weighted round robin scheduling algorithm using tasks execution time for now.
375 - `WorkerChoiceStrategies.FAIR_SHARE` strategy based on fair share scheduling algorithm using tasks execution time for now.
376
90ee1b18 377## [2.2.2] - 2022-10-09
cb2b6c69
JB
378
379### Fixed
380
381- Fixed `README.md` file.
382
90ee1b18 383## [2.2.1] - 2022-10-08
bdacc2d2 384
bdaf31cd
JB
385### Added
386
387- Dynamic worker choice strategy change at runtime.
bdacc2d2 388
90ee1b18 389## [2.2.0] - 2022-01-05
7e0d447f
JB
390
391### Breaking Changes
392
393- Support only NodeJS version 16.x.x for cluster pool: upstream cluster API have changed on that version.
394
90ee1b18 395## [2.1.0] - 2021-08-29
35cf1c03
JB
396
397### Added
398
399- Add an optional pool option `messageHandler` to `PoolOptions<Worker>` for registering a message handler callback on each worker.
e088a00c
JB
400
401### Breaking Changes
402
403- `AbstractWorker` class `maxInactiveTime`, `killBehavior` and `async` attributes have been removed in favour of the same ones in the worker options `opts` public attribute.
404- `AbstractWorker` class `lastTask` attribute have been renamed to `lastTaskTimestamp`.
405- `AbstractWorker` class `interval` attribute have been renamed to `aliveInterval`.
c365b2d3 406- `AbstractWorker` class cannot be instantiated without specifying the `mainWorker` argument referencing the main worker.
e088a00c 407
90ee1b18 408## [2.0.2] - 2021-05-12
14916bf9
JB
409
410### Bug fixes
411
412- Fix `busy` event emission on fixed pool type
413
90ee1b18 414## [2.0.1] - 2021-03-16
7f685093
JB
415
416### Bug fixes
417
418- Check if pool options are properly set.
419- `busy` event is emitted on all pool types.
420
90ee1b18 421## [2.0.0] - 2021-03-01
fa0f5b28 422
f3f833ab 423### Bug fixes
d63d3be3 424
ddbeaffd 425- Now a thread/process by default is not deleted when the task submitted take more time than maxInactiveTime configured (issue #70).
d63d3be3 426
fa0f5b28
S
427### Breaking Changes
428
7f685093 429- `FullPool` event is now renamed to `busy`.
1927ee67 430- `maxInactiveTime` on `ThreadWorker` default behavior is now changed, if you want to keep the old behavior set `killBehavior` to `KillBehaviors.HARD`.
1a81f8af 431 _Find more details on our JSDoc._
ddbeaffd 432
1927ee67
APA
433- `maxTasks` option on `FixedThreadPool` and `DynamicThreadPool` is now removed since is no more needed.
434
ddbeaffd 435- We changed some internal structures, but you shouldn't be too affected by them as these are internal changes.
fa0f5b28 436
ec2ccfc8
JB
437### Pool options types declaration merge
438
439`FixedThreadPoolOptions` and `DynamicThreadPoolOptions` type declarations have been merged to `PoolOptions<Worker>`.
440
fa0f5b28
S
441#### New `export` strategy
442
443```js
444// Before
777b7824 445const DynamicThreadPool = require('poolifier/lib/dynamic')
fa0f5b28 446// After
777b7824 447const { DynamicThreadPool } = require('poolifier/lib/dynamic')
fa0f5b28
S
448```
449
450But you should always prefer just using
451
452```js
777b7824 453const { DynamicThreadPool } = require('poolifier')
fa0f5b28
S
454```
455
d3c8a1a8
S
456#### New type definitions for input data and response
457
ec2ccfc8 458For cluster worker and worker-thread pools, you can now only send and receive serializable data.
d3c8a1a8
S
459_This is not a limitation by poolifier but NodeJS._
460
3a4b605f 461#### Public property replacements
5c5a1fb7 462
3a4b605f 463`numWorkers` property is now `numberOfWorkers`
5c5a1fb7 464
280c2a77 465#### Internal (protected) properties and methods renaming
fa0f5b28 466
280c2a77
S
467These properties are not intended for end users
468
469- `id` => `nextMessageId`
470
471These methods are not intended for end users
fa0f5b28
S
472
473- `_chooseWorker` => `chooseWorker`
280c2a77 474- `_newWorker` => `createWorker`
fa0f5b28
S
475- `_execute` => `internalExecute`
476- `_chooseWorker` => `chooseWorker`
477- `_checkAlive` => `checkAlive`
478- `_run` => `run`
479- `_runAsync` => `runAsync`
480
90ee1b18 481## [1.1.0] - 2020-05-21
0312f71a
APA
482
483### Added
484
485- ThreadWorker support async functions as option
cf9aa6c3 486- Various external library patches
0312f71a 487
90ee1b18 488## [1.0.0] - 2020-01-24
522eea03 489
490### Added
491
492- FixedThreadPool implementation
493- DynamicThreadPool implementation
0312f71a 494- WorkerThread implementation to improve developer experience