chore: v2.6.32
[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
c55c9b5d
JB
10## [2.6.32] - 2023-08-23
11
15b176e0
JB
12### Fixed
13
14- Ensure no task can be executed when the pool is destroyed.
15
20c6f652
JB
16### Added
17
18- Add `queueMaxSize` option to tasks queue options.
574b351d 19- Add O(1) deque implementation implemented with doubly linked list and use it for tasks queueing.
72695f86 20- Add tasks stealing algorithm when a worker node queue is back pressured if tasks queueing is enabled.
20c6f652 21
e560a9f2
JB
22## [2.6.31] - 2023-08-20
23
b1aae695
JB
24### Fixed
25
3e8611a8 26- Fix worker choice strategy retries mechanism in some edge cases.
b1aae695 27
94407def
JB
28### Changed
29
e695d66f 30- Make orthogonal worker choice strategies tasks distribution and created dynamic worker usage.
a71b05bc 31- Remove the experimental status of the `LEAST_ELU` worker choice strategy.
94407def 32
962b9863
JB
33## [2.6.30] - 2023-08-19
34
33e6bb4c
JB
35### Fixed
36
37- Ensure pool event `backPressure` is emitted.
38- Ensure pool event `full` is emitted only once.
8735b4e5 39- Ensure worker node cannot be instantiated without proper arguments.
33e6bb4c 40
8cc4ea81
JB
41## [2.6.29] - 2023-08-18
42
6169563b
JB
43### Fixed
44
45- Fix race condition between ready and task functions worker message handling at startup.
5dd4043c 46- Fix duplicate task function worker usage statistics computation per task function.
db0e38ee 47- Update task function worker usage statistics if and only if there's at least two different task functions.
5bb5be17 48- Fix race condition at task function worker usage executing task computation leading to negative value.
6169563b 49
8990357d
JB
50### Added
51
445264e8 52- Add back pressure detection on the worker node queue. Event `backPressure` is emitted when all worker node queues are full (worker node queue size >= poolMaxSize^2).
8990357d
JB
53- Use back pressure detection in worker choice strategies.
54- Add worker choice strategies retries mechanism if no worker is eligible.
55
21157987
JB
56## [2.6.28] - 2023-08-16
57
f05ed93c
JB
58### Fixed
59
60- Ensure pool workers are properly initialized.
61
12d67776
JB
62### Added
63
64- HTTP server pool examples: express-cluster, express-hybrid.
65
d18fccb1
JB
66### Changed
67
68- Remove now useless branching in worker hot code path.
69
741cdb34
JB
70## [2.6.27] - 2023-08-15
71
50e7f498
JB
72### Fixed
73
74- Add `KillHandler` type definition to exported types.
75
ef3891a3
JB
76### Added
77
78- Add `destroy` event to pool API.
79
e9dc6efa
JB
80## [2.6.26] - 2023-08-15
81
2b099bf7
JB
82### Added
83
84- Add kill handler to worker options allowing to execute custom code when worker is killed.
ef3891a3 85- Add `listTaskFunctions()` method to pool API.
9aef1431 86- SMTP server pool example: nodemailer.
2b099bf7 87
5b726f72
JB
88## [2.6.25] - 2023-08-13
89
72855e92
JB
90### Added
91
3b311539 92- HTTP server pool examples: fastify-cluster, fastify-hybrid.
02999424 93- WebSocket server pool examples: ws-cluster, ws-hybrid.
72855e92 94
7aadd6e5
JB
95## [2.6.24] - 2023-08-12
96
7d91a8cd
JB
97### Added
98
99- Add array of transferable objects to the `execute()` method arguments.
02999424 100- WebSocket server pool examples: ws-worker_threads.
7d91a8cd 101
6b4263b4
JB
102## [2.6.23] - 2023-08-11
103
3d76750a 104### Fixed
8e0af894 105
3d76750a 106- Fix pool busyness semantic when tasks queueing is enabled: the pool is busy when the number of executing tasks on each worker has reached the maximum tasks concurrency per worker.
9606b474 107
3d76750a
JB
108### Added
109
110- HTTP client pool examples: fetch, node-fetch and axios with multiple task functions.
02999424 111- HTTP server pool examples: express-worker_threads, fastify-worker_threads.
3d76750a
JB
112
113## [2.6.22] - 2023-08-10
9606b474 114
3d76750a 115### Fixed
9606b474
JB
116
117- Add missing `types` field to package.json `exports`.
118
3d76750a
JB
119### Changed
120
121- Structure markdown documentation (PR #811).
122
d9647bdd
JB
123## [2.6.21] - 2023-08-03
124
2111ec12
JB
125### Changed
126
127- Improve code documentation.
128- Code refactoring and cleanup for better maintainability and readability.
129
5c30b9d9
JB
130## [2.6.20] - 2023-07-21
131
10ecf8fd
JB
132### Fixed
133
134- Fix queued tasks redistribution on error task execution starvation.
a1763c54 135- Ensure tasks queueing per worker condition is untangled from the pool busyness semantic.
10ecf8fd 136
aa9eede8
JB
137### Changed
138
7c89e6a4 139- Drastically reduce lookups by worker in the worker nodes.
aa9eede8 140
62485908
JB
141## [2.6.19] - 2023-07-20
142
2e2ef9c3
JB
143### Added
144
145- Dedicated internal communication channel for worker_threads pools.
146
8f4c9491
JB
147## [2.6.18] - 2023-07-19
148
8660b972
JB
149### Changed
150
151- Code refactoring and cleanup for better maintainability and readability. Bundle size is a bit smaller.
152
206a3519
JB
153## [2.6.17] - 2023-07-16
154
b4899fae
JB
155### Added
156
1a3e01ba 157- Add `listTaskFunctions()` method to worker API.
b4899fae 158
58a06a6c
JB
159## [2.6.16] - 2023-07-12
160
2a69b8c5
JB
161### Fixed
162
80520ca4 163- Fix pool startup detection.
2a69b8c5
JB
164- Fix worker task functions handling.
165
b5900b02
JB
166## [2.6.15] - 2023-07-11
167
19dbc45b
JB
168### Added
169
170- Take into account worker node readiness in worker choice strategies.
171
4a0db581
JB
172## [2.6.14] - 2023-07-10
173
87e44747
JB
174### Fixed
175
176- Fix task function statistics tracking.
177
0265272f
JB
178## [2.6.13] - 2023-07-10
179
968a2e8c
JB
180### Added
181
182- Add per task function statistics tracking.
782299f8 183- Add public methods to manipulate the worker task functions at runtime.
968a2e8c 184
44c8c00f
JB
185## [2.6.12] - 2023-07-09
186
aa4bf4b2
JB
187### Fixed
188
189- Workaround import issue with `node:os` module in node 16.x.x.
190
b7cfced1
JB
191## [2.6.11] - 2023-07-09
192
d5024c00
JB
193### Fixed
194
195- Fix pool readiness semantic.
196
f313a208
JB
197## [2.6.10] - 2023-07-08
198
2431bdb4
JB
199### Fixed
200
201- Ensure workers are not recreated on error at pool startup.
202
203### Added
204
205- Add `ready` and `strategy` fields to pool information.
206- Add pool event `ready` to notify when the number of workers created in the pool has reached the maximum size expected and are ready.
caadbd41 207- Add dynamic pool sizing checks.
2431bdb4 208
369d0a51
JB
209## [2.6.9] - 2023-07-07
210
2845f2a5
JB
211### Fixed
212
213- Recreate the right worker type on uncaught exception.
214
215### Added
216
217- Add minimum and maximum to internal measurement statistics.
1dcf8b7b 218- Add `runTime` and `waitTime` to pool information.
75d3401a 219- Check worker inactive time only on dynamic worker.
2845f2a5 220
fc97d613
JB
221## [2.6.8] - 2023-07-03
222
92b1feaa
JB
223### Fixed
224
225- Brown paper bag release to fix version handling in pool information.
226
52d54060
JB
227## [2.6.7] - 2023-07-03
228
5bc91f3e
JB
229### Fixed
230
231- Ensure worker queued tasks at error are reassigned to other pool workers.
232
afe0d5bf
JB
233### Added
234
235- Add pool `utilization` ratio to pool information.
23ccf9d7 236- Add `version` to pool information.
e5b3047d 237- Add worker information to worker nodes.
afe0d5bf 238
f42c583f
JB
239## [2.6.6] - 2023-07-01
240
6961ca9a
JB
241### Added
242
d5e3c4ff 243- Add safe helper `availableParallelism()` to help sizing the pool.
6961ca9a 244
3749facb
JB
245### Fixed
246
247- Ensure message handler is only registered in worker.
248
6fed2513
JB
249## [2.6.5] - 2023-06-27
250
c72f6987
JB
251### Known issues
252
70726c28 253- Cluster pools tasks execution are not working by using ESM files extension: https://github.com/poolifier/poolifier/issues/782
c72f6987
JB
254
255### Fixed
256
257- Artificial version bump to 2.6.5 to workaround publication issue.
d5e3c4ff 258- Ensure cluster pool `destroy()` gracefully shutdowns worker's server.
c72f6987
JB
259- Ensure pool event is emitted before task error promise rejection.
260- Fix queued tasks count computation.
261
262### Removed
263
2fbe1783 264- Remove unneeded worker_threads worker `MessageChannel` internal usage for IPC.
c72f6987 265
6426631b
JB
266## [2.6.4] - 2023-06-27
267
941f9a7c
JB
268### Known issues
269
70726c28 270- Cluster pools tasks execution are not working by using ESM files extension: https://github.com/poolifier/poolifier/issues/782
941f9a7c 271
2c039e43
JB
272### Fixed
273
d5e3c4ff 274- Ensure cluster pool `destroy()` gracefully shutdowns worker's server.
2c039e43 275- Ensure pool event is emitted before task error promise rejection.
9c16fb4b 276- Fix queued tasks count computation.
2c039e43 277
941f9a7c
JB
278### Removed
279
2fbe1783 280- Remove unneeded worker_threads worker `MessageChannel` internal usage for IPC.
941f9a7c 281
bc1b0765
JB
282## [2.6.3] - 2023-06-19
283
a6a2dc4c
JB
284### Fixed
285
286- Ensure no tasks are queued when trying to soft kill a dynamic worker.
f0d7f803 287- Update strategies internals after statistics computation.
a6a2dc4c 288
7b56f532
JB
289### Changed
290
291- Optimize O(1) queue implementation.
292
b628596c
JB
293## [2.6.2] - 2023-06-12
294
a9e89d00
JB
295### Fixed
296
297- Fix new worker use after creation in dynamic pool given the current worker choice strategy.
298
4368a898
JB
299## [2.6.1] - 2023-06-10
300
931d43e2
JB
301### Added
302
13ab5b87 303- Add worker choice strategy documentation: [README.md](./docs/worker-choice-strategies.md).
931d43e2 304
f1c06930
JB
305### Fixed
306
307- Fix average statistics computation: ensure failed tasks are not accounted.
308
16671b07
JB
309## [2.6.0] - 2023-06-09
310
a1347286
JB
311### Added
312
5af9c0f7 313- Add `LEAST_ELU` worker choice strategy (experimental).
9adcefab 314- Add tasks ELU instead of runtime support to `FAIR_SHARE` worker choice strategy.
a1347286 315
1c6fe997
JB
316### Changed
317
318- Refactor pool worker node usage internals.
477f48e7 319- Breaking change: refactor worker choice strategy statistics requirements: the syntax of the worker choice strategy options has changed.
f63a9dda 320- Breaking change: pool information `info` property object fields have been renamed.
1c6fe997
JB
321
322### Fixed
323
324- Fix wait time accounting.
325- Ensure worker choice strategy `LEAST_BUSY` accounts also tasks wait time.
326- Ensure worker choice strategy `LEAST_USED` accounts also queued tasks.
327
aa07d6ee
JB
328## [2.5.4] - 2023-06-07
329
b6b32453
JB
330### Added
331
332- Add Event Loop Utilization (ELU) statistics to worker tasks usage.
333
334### Changed
335
336- Compute statistics at the worker level only if needed.
2fbe1783 337- Add `worker_threads` options to thread pool options.
b6b32453 338
272d4d8f
JB
339### Fixed
340
341- Make the `LEAST_BUSY` strategy only relies on task runtime.
342
ed47fb3d
JB
343## [2.5.3] - 2023-06-04
344
89a4abfd
JB
345### Changed
346
347- Refine pool information content.
b4213b7f 348- Limit pool internals public exposure.
89a4abfd 349
8a9febf5
JB
350## [2.5.2] - 2023-06-02
351
91ee39ed
JB
352### Added
353
354- Add `taskError` pool event for task execution error.
6b27d407 355- Add pool information `info` property to pool.
91ee39ed
JB
356- Emit pool information on `busy` and `full` pool events.
357
8babb151
JB
358## [2.5.1] - 2023-06-01
359
0e05c4dc
JB
360### Added
361
1f68cede 362- Add pool option `restartWorkerOnError` to restart worker on uncaught error. Default to `true`.
91ee39ed 363- Add `error` pool event for uncaught worker error.
0e05c4dc 364
a8766181
JB
365## [2.5.0] - 2023-05-31
366
e4543b14
JB
367### Added
368
369- Switch pool event emitter to `EventEmitterAsyncResource`.
6da80d38 370- Add tasks wait time accounting in per worker tasks usage.
5af9c0f7 371- Add interleaved weighted round robin `INTERLEAVED_WEIGHTED_ROUND_ROBIN` worker choice strategy (experimental).
e4543b14
JB
372
373### Changed
374
375- Renamed worker choice strategy `LESS_BUSY` to `LEAST_BUSY` and `LESS_USED` to `LEAST_USED`.
376
570efb11
JB
377## [2.4.14] - 2023-05-09
378
b0f28bad
JB
379### Fixed
380
381- Ensure no undefined task runtime can land in the tasks history.
382- Fix median computation implementation once again.
383
110b6d13
JB
384### Added
385
386- Unit tests for median and queue implementations.
387
72584880
JB
388## [2.4.13] - 2023-05-08
389
b0d6ed8f
JB
390### Fixed
391
e3058615 392- Fix worker choice strategy options validation.
b0d6ed8f
JB
393- Fix fair share worker choice strategy internals update: ensure virtual task end timestamp is computed at task submission.
394
06140c32
JB
395## [2.4.12] - 2023-05-06
396
a86b6df1
JB
397### Added
398
399- Support multiple task functions per worker.
08f3f44c 400- Add custom worker weights support to worker choice strategies options.
a86b6df1 401
29ee7e9a
JB
402### Changed
403
404- Use O(1) queue implementation for tasks queueing.
405
0682ba15
JB
406### Fixed
407
408- Fix median computation implementation.
409- Fix fair share worker choice strategy internals update.
410
936d53ec
JB
411## [2.4.11] - 2023-04-23
412
cb70b19d
JB
413### Changed
414
415- Optimize free worker finding in worker choice strategies.
416
15bb637a
JB
417## [2.4.10] - 2023-04-15
418
ef41a6e6
JB
419### Fixed
420
82ea6492 421- Fix typescript type definition for task function: ensure the input data is optional.
ef41a6e6
JB
422- Fix typescript type definition for pool execute(): ensure the input data is optional.
423
181eb2b4
JB
424## [2.4.9] - 2023-04-15
425
a20f0ba5
JB
426### Added
427
428- Add tasks queue enablement runtime setter to pool.
429- Add tasks queue options runtime setter to pool.
430- Add worker choice strategy options runtime setter to pool.
431
432### Changed
433
434- Remove the tasks queuing experimental status.
435
d4aeae5a
JB
436### Fixed
437
82ea6492 438- Fix task function type definition and validation.
2fc5cae3 439- Fix worker choice strategy options handling.
d4aeae5a 440
1d9e7023
JB
441## [2.4.8] - 2023-04-12
442
f9b4bbf8
JB
443### Fixed
444
445- Fix message between main worker and worker type definition for tasks.
446- Fix code documentation.
447
12ae3210
JB
448## [2.4.7] - 2023-04-11
449
7171d33f
JB
450### Added
451
452- Add worker tasks queue options to pool options.
453
e8bd29ce
JB
454### Fixed
455
456- Fix missing documentation.
457
42c7bc10
JB
458## [2.4.6] - 2023-04-10
459
681196cc
JB
460### Fixed
461
462- Ensure one task at a time is executed per worker with tasks queueing enabled.
1c6fe997 463- Properly count worker executing tasks with tasks queueing enabled.
681196cc 464
54d360e3
JB
465## [2.4.5] - 2023-04-09
466
3fafb1b2
JB
467### Added
468
9e775f96
JB
469- Use monotonic high resolution timer for worker tasks runtime.
470- Add worker tasks median runtime to statistics.
ff733df7 471- Add worker tasks queue (experimental).
3fafb1b2 472
92fa3eb6
JB
473## [2.4.4] - 2023-04-07
474
aee46736
JB
475### Added
476
477- Add `PoolEvents` enumeration and `PoolEvent` type.
478
36b5e78f
JB
479### Fixed
480
ff0c2b3e 481- Destroy worker only on alive check.
36b5e78f 482
9fb0f324
JB
483## [2.4.3] - 2023-04-07
484
28cf3617
JB
485### Fixed
486
487- Fix typedoc generation with inheritance.
488
848f0f27
JB
489## [2.4.2] - 2023-04-06
490
164d950a
JB
491### Added
492
493- Add `full` event to dynamic pool.
32417142 494- Keep worker choice strategy in memory for conditional reuse.
164d950a 495
78ab2555
JB
496### Fixed
497
498- Fix possible negative worker key at worker removal in worker choice strategies.
499
79aafe9f
JB
500## [2.4.1] - 2023-04-05
501
9cd39dd4
JB
502### Changed
503
504- Optimize worker choice strategy for dynamic pool.
505
965415bb
JB
506### Fixed
507
508- Ensure dynamic pool does not alter worker choice strategy expected behavior.
509
d8b60b1c
JB
510## [2.4.0] - 2023-04-04
511
c6bd2650
JB
512### Added
513
514- Add `LESS_BUSY` worker choice strategy.
515
516### Changed
517
518- Optimize worker storage in pool.
519- Optimize worker alive status check.
520- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
521- Optimize `LESS_USED` worker choice strategy.
522- Update benchmarks versus external threads pools.
523- Optimize tasks usage statistics requirements for worker choice strategy.
524
525### Fixed
526
527- Ensure trimmable characters are checked at pool initialization.
528- Fix message id integer overflow.
529- Fix pool worker removal in worker choice strategy internals.
530- Fix package publication with pnpm.
531
d0a3f018
JB
532## [2.4.0-3] - 2023-04-04
533
b2ede285
JB
534### Added
535
536- Add `LESS_BUSY` worker choice strategy.
537
538### Changed
539
540- Optimize worker storage in pool.
541- Optimize worker alive status check.
542- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
543- Optimize `LESS_USED` worker choice strategy.
544- Update benchmarks versus external threads pools.
545
546### Fixed
547
548- Ensure trimmable characters are checked at pool initialization.
549- Fix message id integer overflow.
550- Fix pool worker removal in worker choice strategy internals.
551- Fix package publication with pnpm.
552
a015ea40
JB
553## [2.4.0-2] - 2023-04-03
554
698f4bbc
JB
555### Added
556
557- Add `LESS_BUSY` worker choice strategy.
558
559### Changed
560
561- Optimize worker storage in pool.
562- Optimize worker alive status check.
563- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
564- Optimize `LESS_USED` worker choice strategy.
565
566### Fixed
567
568- Ensure trimmable characters are checked at pool initialization.
569- Fix message id integer overflow.
570- Fix pool worker removal in worker choice strategy internals.
571- Fix package publication with pnpm.
572
8fe15920
JB
573## [2.4.0-1] - 2023-04-03
574
5b301c28
JB
575### Added
576
577- Add `LESS_BUSY` worker choice strategy.
578
579### Changed
580
581- Optimize worker storage in pool.
582- Optimize worker alive status check.
583- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
584- Optimize `LESS_USED` worker choice strategy.
585
586### Fixed
587
588- Ensure trimmable characters are checked at pool initialization.
589- Fix message id integer overflow.
590- Fix pool worker removal in worker choice strategy internals.
591
2fb9ca9c
JB
592## [2.4.0-0] - 2023-04-03
593
168c526f
JB
594### Added
595
596- Add `LESS_BUSY` worker choice strategy.
597
1d71a908
JB
598### Changed
599
ffcbbad8 600- Optimize worker storage in pool.
1d71a908 601- Optimize worker alive status check.
65a60b3b 602- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
737c6d97 603- Optimize `LESS_USED` worker choice strategy.
1d71a908 604
ffcbbad8
JB
605### Fixed
606
607- Ensure trimmable characters are checked at pool initialization.
b4e75778 608- Fix message id integer overflow.
97a2abc3 609- Fix pool worker removal in worker choice strategy internals.
ffcbbad8 610
08372738
JB
611## [2.3.10] - 2023-03-18
612
710826bc
JB
613### Fixed
614
9606b474 615- Fix package.json `exports` syntax for ESM and CommonJS.
710826bc
JB
616
617### Changed
618
619- Permit SemVer pre-release publication.
76e5ac6f 620
e4796ecd
JB
621## [2.3.10-2] - 2023-03-18
622
6abad580
JB
623### Fixed
624
9606b474 625- Fix package.json `exports` syntax for ESM and CommonJS.
6abad580 626
a2ee98cc
JB
627## [2.3.10-1] - 2023-03-18
628
7e060cee
JB
629### Changed
630
90483887 631- Permit SemVer pre-release publication.
7e060cee 632
c81bfafb
JB
633## [2.3.10-0] - 2023-03-18
634
fe18768d
JB
635### Fixed
636
9606b474 637- Fix package.json `exports` syntax for ESM and CommonJS.
fe18768d 638
d7b78217
JB
639## [2.3.9] - 2023-03-18
640
ed6dd37f
JB
641### Changed
642
643- Introduce ESM module support along with CommonJS one.
644
645### Fixed
646
647- Fix brown paper bag bug referencing the same object literal.
648
68e2ad86
JB
649## [2.3.8] - 2023-03-18
650
ca6c7d70
JB
651### Changed
652
653- Switch internal benchmarking code to benny.
fbdedeb9
JB
654- Switch to TypeScript 5.x.x.
655- Switch rollup bundler plugins to core ones.
ed6dd37f 656- Switch to TSDoc syntax.
fbdedeb9 657- Enforce conventional commits.
ca6c7d70 658
d15211d4
JB
659### Fixed
660
661- Fix random integer generator.
fbdedeb9 662- Fix worker choice strategy pool type identification at initialization.
d15211d4 663
995705ea
JB
664## [2.3.7] - 2022-10-23
665
b953022b
JB
666### Changed
667
668- Switch to open collective FOSS project funding platform.
78cea37e
JB
669- Switch to ts-standard linter configuration on TypeScript code.
670
671### Fixed
672
673- Fixed missing async on pool execute method.
674- Fixed typing in TypeScript example.
675- Fixed types in unit tests.
b953022b 676
3b9f6953
JB
677## [2.3.6] - 2022-10-22
678
f80cead4
JB
679### Changed
680
681- Cleanup pool attributes and methods.
682- Refine error types thrown.
683
684### Fixed
685
686- Fix continuous integration build on windows.
687- Fix code coverage reporting by using c8 instead of nyc.
688
efc22107
JB
689## [2.3.5] - 2022-10-21
690
7a6a0a96
JB
691### Changed
692
a05c10de
JB
693- Improve benchmarks: add IO intensive task workload, add task size option, integrate code into linter.
694- Optimize tasks usage lookup implementation.
7a6a0a96 695
b4904890
JB
696### Fixed
697
698- Fix missed pool event emitter type export.
699- Fix typedoc documentation generation.
700
a875f8d1
JB
701## [2.3.4] - 2022-10-17
702
73cda448
JB
703### Added
704
705- Fully automate release process with release-it.
706
45a5a54c
JB
707### Changed
708
73cda448 709- Optimize fair share task scheduling algorithm implementation.
eb4a8a82 710- Update benchmarks versus external pools results with latest version.
45a5a54c 711
90ee1b18 712## [2.3.3] - 2022-10-15
1a76932b
JB
713
714### Added
715
716- Add support for [cluster settings](https://nodejs.org/api/cluster.html#cluster_cluster_settings) in cluster pool options.
717
90ee1b18 718## [2.3.2] - 2022-10-14
11df3590
JB
719
720### Changed
721
722- Optimize fair share worker selection strategy implementation.
723
724### Fixed
725
726- Fix WRR worker selection strategy: ensure the condition triggering the round robin can be fulfilled.
727
90ee1b18 728## [2.3.1] - 2022-10-13
23ff945a
JB
729
730### Added
731
732- Pool worker choice strategies:
733 - `WorkerChoiceStrategies.WEIGHTED_ROUND_ROBIN` strategy based on weighted round robin scheduling algorithm using tasks execution time for now.
734 - `WorkerChoiceStrategies.FAIR_SHARE` strategy based on fair share scheduling algorithm using tasks execution time for now.
735
90ee1b18 736## [2.2.2] - 2022-10-09
cb2b6c69
JB
737
738### Fixed
739
740- Fixed `README.md` file.
741
90ee1b18 742## [2.2.1] - 2022-10-08
bdacc2d2 743
bdaf31cd
JB
744### Added
745
746- Dynamic worker choice strategy change at runtime.
bdacc2d2 747
90ee1b18 748## [2.2.0] - 2022-01-05
7e0d447f
JB
749
750### Breaking Changes
751
9606b474 752- Support only Node.js version 16.x.x for cluster pool: upstream cluster API have changed on that version.
7e0d447f 753
90ee1b18 754## [2.1.0] - 2021-08-29
35cf1c03
JB
755
756### Added
757
758- Add an optional pool option `messageHandler` to `PoolOptions<Worker>` for registering a message handler callback on each worker.
e088a00c
JB
759
760### Breaking Changes
761
762- `AbstractWorker` class `maxInactiveTime`, `killBehavior` and `async` attributes have been removed in favour of the same ones in the worker options `opts` public attribute.
763- `AbstractWorker` class `lastTask` attribute have been renamed to `lastTaskTimestamp`.
764- `AbstractWorker` class `interval` attribute have been renamed to `aliveInterval`.
c365b2d3 765- `AbstractWorker` class cannot be instantiated without specifying the `mainWorker` argument referencing the main worker.
e088a00c 766
90ee1b18 767## [2.0.2] - 2021-05-12
14916bf9
JB
768
769### Bug fixes
770
771- Fix `busy` event emission on fixed pool type
772
90ee1b18 773## [2.0.1] - 2021-03-16
7f685093
JB
774
775### Bug fixes
776
777- Check if pool options are properly set.
778- `busy` event is emitted on all pool types.
779
90ee1b18 780## [2.0.0] - 2021-03-01
fa0f5b28 781
f3f833ab 782### Bug fixes
d63d3be3 783
ddbeaffd 784- Now a thread/process by default is not deleted when the task submitted take more time than maxInactiveTime configured (issue #70).
d63d3be3 785
fa0f5b28
S
786### Breaking Changes
787
7f685093 788- `FullPool` event is now renamed to `busy`.
1927ee67 789- `maxInactiveTime` on `ThreadWorker` default behavior is now changed, if you want to keep the old behavior set `killBehavior` to `KillBehaviors.HARD`.
1a81f8af 790 _Find more details on our JSDoc._
ddbeaffd 791
1927ee67
APA
792- `maxTasks` option on `FixedThreadPool` and `DynamicThreadPool` is now removed since is no more needed.
793
ddbeaffd 794- We changed some internal structures, but you shouldn't be too affected by them as these are internal changes.
fa0f5b28 795
ec2ccfc8
JB
796### Pool options types declaration merge
797
798`FixedThreadPoolOptions` and `DynamicThreadPoolOptions` type declarations have been merged to `PoolOptions<Worker>`.
799
fa0f5b28
S
800#### New `export` strategy
801
802```js
803// Before
0eee77cb 804const DynamicThreadPool = require('poolifier/lib/dynamic')
fa0f5b28 805// After
0eee77cb 806const { DynamicThreadPool } = require('poolifier/lib/dynamic')
fa0f5b28
S
807```
808
809But you should always prefer just using
810
811```js
0eee77cb 812const { DynamicThreadPool } = require('poolifier')
fa0f5b28
S
813```
814
d3c8a1a8
S
815#### New type definitions for input data and response
816
6677a3d3 817For cluster worker and worker-thread pools, you can now only send and receive structured-cloneable data.
9606b474 818_This is not a limitation by poolifier but Node.js._
d3c8a1a8 819
3a4b605f 820#### Public property replacements
5c5a1fb7 821
3a4b605f 822`numWorkers` property is now `numberOfWorkers`
5c5a1fb7 823
280c2a77 824#### Internal (protected) properties and methods renaming
fa0f5b28 825
280c2a77
S
826These properties are not intended for end users
827
828- `id` => `nextMessageId`
829
830These methods are not intended for end users
fa0f5b28
S
831
832- `_chooseWorker` => `chooseWorker`
280c2a77 833- `_newWorker` => `createWorker`
fa0f5b28
S
834- `_execute` => `internalExecute`
835- `_chooseWorker` => `chooseWorker`
836- `_checkAlive` => `checkAlive`
837- `_run` => `run`
838- `_runAsync` => `runAsync`
839
90ee1b18 840## [1.1.0] - 2020-05-21
0312f71a
APA
841
842### Added
843
844- ThreadWorker support async functions as option
cf9aa6c3 845- Various external library patches
0312f71a 846
90ee1b18 847## [1.0.0] - 2020-01-24
522eea03 848
849### Added
850
851- FixedThreadPool implementation
852- DynamicThreadPool implementation
0312f71a 853- WorkerThread implementation to improve developer experience