chore: v3.1.30
[poolifier.git] / CHANGELOG.md
1 # Changelog
2
3 All notable changes to this project will be documented in this file.
4
5 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
8 ## [Unreleased]
9
10 ## [3.1.30] - 2024-04-22
11
12 ### Fixed:
13
14 - Fix `transferList` argument type definition.
15
16 ## [3.1.29] - 2024-04-02
17
18 ### Fixed
19
20 - Fix possible race condition at worker node recreation on worker `error` and `exit` events.
21
22 ## [3.1.28] - 2024-04-01
23
24 ### Fixed
25
26 - Ensure the minimum number of workers on a started pool is guaranteed.
27
28 ## [3.1.27] - 2024-03-27
29
30 ### Fixed
31
32 - Fix publishing on JSR, take 4.
33
34 ## [3.1.26] - 2024-03-27
35
36 ### Fixed
37
38 - Fix publishing on JSR, take 3.
39
40 ## [3.1.25] - 2024-03-27
41
42 ### Fixed
43
44 - Fix publishing on JSR, take 2.
45
46 ## [3.1.24] - 2024-03-27
47
48 ### Fixed
49
50 - Fix publishing on JSR.
51
52 ## [3.1.23] - 2024-03-27
53
54 ### Changed
55
56 - Publish on JSR.
57
58 ## [3.1.22] - 2024-03-15
59
60 ### Fixed
61
62 - Fix pool event emitter registered callbacks removal at `destroy()`.
63
64 ## [3.1.21] - 2024-02-22
65
66 ### Fixed
67
68 - Fix null exception regression: [#1496](https://github.com/poolifier/poolifier/issues/1496).
69
70 ## [3.1.20] - 2024-02-11
71
72 ### Fixed
73
74 - Ensure `worker_threads` workers are unreferenced at termination.
75
76 ## [3.1.19] - 2024-01-16
77
78 ### Fixed
79
80 - Fix possible null exception at task finishing handling.
81
82 ### Changed
83
84 - Optimize Deque implementation to improve tasks queueing performance.
85
86 ## [3.1.18] - 2024-01-06
87
88 ### Fixed
89
90 - Fix dynamic pool with minimum number of workers set to zero: [#1748](https://github.com/poolifier/poolifier/issues/1748).
91
92 ## [3.1.17] - 2024-01-05
93
94 ### Changed
95
96 - Improve performance by clean up unneeded condition checks on hot code paths.
97
98 ## [3.1.16] - 2024-01-03
99
100 ### Fixed
101
102 - Add missing type to TS type definitions.
103
104 ## [3.1.15] - 2024-01-02
105
106 ### Fixed
107
108 - Fix CommonJS support with TypeScript: [#1821](https://github.com/poolifier/poolifier/issues/1821).
109
110 ## [3.1.15-0] - 2024-01-02
111
112 ### Fixed
113
114 - Fix CommonJS support with TypeScript: [#1821](https://github.com/poolifier/poolifier/issues/1821).
115
116 ## [3.1.14] - 2024-01-01
117
118 ### Fixed
119
120 - Properly handle dynamic pool with zero minimum size.
121
122 ## [3.1.13] - 2023-12-30
123
124 ### Changed
125
126 - Reduce branching in several hot code paths.
127 - Use faster object cloning implementation.
128
129 ## [3.1.12] - 2023-12-27
130
131 ### Fixed
132
133 - Fix tasks redistribution triggers at pool destroying.
134
135 ### Changed
136
137 - Switch TypeScript module resolution to Node16.
138
139 ## [3.1.12-0] - 2023-12-27
140
141 ### Fixed
142
143 - Fix tasks redistribution triggers at pool destroying.
144
145 ## [3.1.11] - 2023-12-24
146
147 ### Fixed
148
149 - Avoid worker node cross tasks stealing.
150 - Ensure only half the pool worker nodes can steal tasks.
151
152 ## [3.1.10] - 2023-12-23
153
154 ### Changed
155
156 - Avoid useless branching on pool type.
157
158 ## [3.1.9] - 2023-12-22
159
160 ### Changed
161
162 - Readd ThreadPoolOptions and ClusterPoolOptions TS type aliases to PoolOptions.
163
164 ## [3.1.8] - 2023-12-21
165
166 ### Fixed
167
168 - Fix default worker weight computation.
169 - Fix possible null exception at pool destroying.
170
171 ## [3.1.7] - 2023-12-20
172
173 ### Fixed
174
175 - Ensure worker choice strategies implementation wait for worker node readiness: [#1748](https://github.com/poolifier/poolifier/issues/1748).
176
177 ## [3.1.6] - 2023-12-18
178
179 ### Fixed
180
181 - Fix pool destroying with tasks queuing enabled.
182
183 ## [3.1.5] - 2023-12-18
184
185 ### Added
186
187 - Add queued tasks end timeout support to worker node termination.
188
189 ## [3.1.4] - 2023-12-18
190
191 ### Fixed
192
193 - Make more robust the fix for possible null exception at handling task execution response.
194
195 ## [3.1.3] - 2023-12-17
196
197 ### Fixed
198
199 - Fix possible null exception at handling task execution response.
200
201 ## [3.1.2] - 2023-12-17
202
203 ### Fixed
204
205 - Wait for queued tasks to end at worker node termination.
206
207 ## [3.1.1] - 2023-12-16
208
209 ### Fixed
210
211 - Fix pool options TS type definition.
212
213 ## [3.1.0] - 2023-12-16
214
215 ### Changed
216
217 - TypeScript breaking change: merge ThreadPoolOptions and ClusterPoolOptions types into PoolOptions type.
218
219 ## [3.0.14] - 2023-12-13
220
221 ### Fixed
222
223 - Fix possible null exception with worker_threads pools.
224
225 ## [3.0.13] - 2023-12-12
226
227 ### Fixed
228
229 - Ensure worker choice strategy wait for worker nodes readiness.
230
231 ### Changed
232
233 - Remove infinite retries support in worker choice strategy to avoid configuration leading to possible infinite recursion or loop.
234
235 ## [3.0.12] - 2023-12-12
236
237 ### Changed
238
239 - Add infinite retries support in worker choice strategy.
240
241 ## [3.0.11] - 2023-12-11
242
243 ### Fixed
244
245 - Ensure pool asynchronous resource properly track tasks execution.
246
247 ## [3.0.10] - 2023-12-08
248
249 ### Changed
250
251 - Add a fastpath when tasks stealing or redistribution is impossible.
252
253 ## [3.0.9] - 2023-11-26
254
255 ### Fixed
256
257 - Remove all pool events listener at pool destroying.
258 - Remove all worker node events listener at worker node destroying.
259 - Fix worker node event emitter listeners handling memory leak at pool options runtime change.
260
261 ## [3.0.8] - 2023-11-25
262
263 ### Fixed
264
265 - Ensure continuous tasks stealing on idle start at worker node idling.
266
267 ## [3.0.7] - 2023-11-24
268
269 ### Changed
270
271 - Make continuous tasks stealing start at worker node idling.
272
273 ## [3.0.6] - 2023-11-24
274
275 ### Fixed
276
277 - Ensure pool statuses are checked at initialization, `start()` or `destroy()`.
278 - Ensure pool `ready` event can be emitted after several `start()/destroy()` cycles.
279
280 ## [3.0.5] - 2023-10-27
281
282 ### Fixed
283
284 - Ensure pool `ready` event can be emitted only once.
285
286 ## [3.0.4] - 2023-10-20
287
288 ### Changed
289
290 - Switch to Bencher for benchmarking: [https://bencher.dev/perf/poolifier](https://bencher.dev/perf/poolifier).
291 - Use builtin retry mechanism in worker choice strategies instead of custom one.
292
293 ## [3.0.3] - 2023-10-19
294
295 ### Fixed
296
297 - Avoid null exception at sending message to worker.
298 - Avoid null exception at checking worker node readiness.
299
300 ## [3.0.2] - 2023-10-17
301
302 ### Fixed
303
304 - Fix race condition at dynamic worker node task assignment and scheduled removal. See issue [#1468](https://github.com/poolifier/poolifier/issues/1468) and [#1496](https://github.com/poolifier/poolifier/issues/1496).
305
306 ## [3.0.1] - 2023-10-16
307
308 ### Fixed
309
310 - Workaround possible race condition at work nodes array element removal and querying. See issue [#1468](https://github.com/poolifier/poolifier/issues/1468).
311
312 ### Changed
313
314 - Switch the worker node eventing code to `EventTarget` API.
315
316 ## [3.0.0] - 2023-10-08
317
318 ### Changed
319
320 - Remove Node.js 16.x.x (EOL) support.
321
322 ## [2.7.5] - 2023-10-03
323
324 ### Changed
325
326 - Use `EventEmitterAsyncResource` type from `@types/node` for pool event emitter. TypeScript users will need to update to latest `@types/node` version.
327
328 ## [2.7.4] - 2023-09-25
329
330 ### Fixed
331
332 - Fix source maps (bundler issue).
333
334 ## [2.7.3] - 2023-09-24
335
336 ### Changed
337
338 - Convert pool event emitter to event emitter async resource.
339
340 ## [2.7.2] - 2023-09-23
341
342 ### Changed
343
344 - Add source maps to npm package to ease debugging.
345
346 ### Added
347
348 - Continuous benchmarking versus other worker pools: [https://poolifier.github.io/benchmark](https://poolifier.github.io/benchmark).
349
350 ## [2.7.1] - 2023-09-20
351
352 ### Fixed
353
354 - Ensure worker message listener used one time are removed after usage.
355
356 ## [2.7.0] - 2023-09-19
357
358 ### Fixed
359
360 - Fix task stealing related tasks queue options handling at runtime.
361
362 ### Changed
363
364 - Rename `listTaskFunctions()` to `listTaskFunctionNames()` in pool and worker API.
365
366 ### Added
367
368 - Add `hasTaskFunction()`, `addTaskFunction()`, `removeTaskFunction()`, `setDefaultTaskFunction()` methods to pool API: [PR #1148](https://github.com/poolifier/poolifier/pull/1148).
369 - Stricter worker constructor arguments validation.
370
371 ## [2.6.45] - 2023-09-17
372
373 ### Changed
374
375 - Disable publication on GitHub packages registry on release until authentication issue is fixed.
376
377 ### Added
378
379 - Add `startWorkers` to pool options to whether start the minimum number of workers at pool initialization or not.
380 - Add `start()` method to pool API to start the minimum number of workers.
381 - Add `taskStealing` and `tasksStealingOnPressure` to tasks queue options to whether enable task stealing or not and whether enable tasks stealing under back pressure or not.
382 - Continuous internal benchmarking: [https://poolifier.github.io/benchmark-results/dev/bench](https://poolifier.github.io/benchmark-results/dev/bench).
383
384 ## [2.6.44] - 2023-09-08
385
386 ### Fixed
387
388 - Use a dedicated PAT to publish on GitHub packages registry.
389
390 ### Added
391
392 - Publish on GitHub packages registry on release.
393
394 ### Changed
395
396 - Switch from rome to biome: [PR #1128](https://github.com/poolifier/poolifier/pull/1128).
397
398 ## [2.6.43] - 2023-09-08
399
400 ### Added
401
402 - Publish on GitHub packages registry on release.
403
404 ### Changed
405
406 - Switch from rome to biome: [PR #1128](https://github.com/poolifier/poolifier/pull/1128).
407
408 ## [2.6.42] - 2023-09-06
409
410 ### Changed
411
412 - Optimize hot code paths implementation: avoid unnecessary branching, add and use optimized helpers (min, max), use reduce() array helper, ...
413
414 ## [2.6.41] - 2023-09-03
415
416 ### Changed
417
418 - Optimize worker choice strategies implementation.
419
420 ## [2.6.40] - 2023-09-01
421
422 ### Fixed
423
424 - Do not pre-choose in WRR worker choice strategy to avoid bias.
425 - Avoid array out of bound in worker choice strategies after worker node removal.
426
427 ## [2.6.39] - 2023-08-30
428
429 ### Fixed
430
431 - Fix race condition in worker choice strategies at worker node info querying while not yet initialized.
432
433 ## [2.6.38] - 2023-08-30
434
435 ### Added
436
437 - Bundle typescript types declaration into one file.
438
439 ### Changed
440
441 - Improve interleaved weighted round robin worker choice strategy implementation.
442
443 ## [2.6.37] - 2023-08-28
444
445 ### Fixed
446
447 - Ensure unused worker usage statistics are deleted at runtime.
448
449 ### Changed
450
451 - Rename worker choice strategy options `choiceRetries` to `retries`.
452 - Avoid unnecessary branching in worker choice strategies.
453
454 ## [2.6.36] - 2023-08-27
455
456 ### Fixed
457
458 - Fix pool `execute()` arguments check.
459
460 ### Changed
461
462 - Make continuous tasks stealing algorithm less aggressive.
463 - Fine tune tasks stealing algorithm under back pressure.
464
465 ## [2.6.35] - 2023-08-25
466
467 ### Fixed
468
469 - Don't account worker usage statistics for tasks that have failed.
470 - Fix pool information runtime and wait time median computation.
471
472 ### Changed
473
474 - Update simple moving average implementation to use a circular buffer.
475 - Update simple moving median implementation to use a circular buffer.
476 - Account for stolen tasks in worker usage statistics and pool information.
477
478 ### Added
479
480 - Continuous tasks stealing algorithm.
481
482 ## [2.6.34] - 2023-08-24
483
484 ### Fixes
485
486 - Avoid cascading tasks stealing under back pressure.
487
488 ### Changed
489
490 - Add fastpath to queued tasks rescheduling.
491
492 ## [2.6.33] - 2023-08-24
493
494 ### Fixed
495
496 - Fix queued tasks rescheduling.
497
498 ### Changed
499
500 - Rename tasks queue options `queueMaxSize` to `size`.
501
502 ### Added
503
504 - Task stealing scheduling algorithm if tasks queueing is enabled.
505
506 ## [2.6.32] - 2023-08-23
507
508 ### Fixed
509
510 - Ensure no task can be executed when the pool is destroyed.
511
512 ### Added
513
514 - Add `queueMaxSize` option to tasks queue options.
515 - Add O(1) deque implementation implemented with doubly linked list and use it for tasks queueing.
516 - Add tasks stealing algorithm when a worker node queue is back pressured if tasks queueing is enabled.
517
518 ## [2.6.31] - 2023-08-20
519
520 ### Fixed
521
522 - Fix worker choice strategy retries mechanism in some edge cases.
523
524 ### Changed
525
526 - Make orthogonal worker choice strategies tasks distribution and created dynamic worker usage.
527 - Remove the experimental status of the `LEAST_ELU` worker choice strategy.
528
529 ## [2.6.30] - 2023-08-19
530
531 ### Fixed
532
533 - Ensure pool event `backPressure` is emitted.
534 - Ensure pool event `full` is emitted only once.
535 - Ensure worker node cannot be instantiated without proper arguments.
536
537 ## [2.6.29] - 2023-08-18
538
539 ### Fixed
540
541 - Fix race condition between readiness and task functions worker message handling at startup.
542 - Fix duplicate task function worker usage statistics computation per task function.
543 - Update task function worker usage statistics if and only if there's at least two different task functions.
544 - Fix race condition at task function worker usage executing task computation leading to negative value.
545
546 ### Added
547
548 - 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).
549 - Use back pressure detection in worker choice strategies.
550 - Add worker choice strategies retries mechanism if no worker is eligible.
551
552 ## [2.6.28] - 2023-08-16
553
554 ### Fixed
555
556 - Ensure pool workers are properly initialized.
557
558 ### Added
559
560 - HTTP server pool examples: express-cluster, express-hybrid.
561
562 ### Changed
563
564 - Remove now useless branching in worker hot code path.
565
566 ## [2.6.27] - 2023-08-15
567
568 ### Fixed
569
570 - Add `KillHandler` type definition to exported types.
571
572 ### Added
573
574 - Add `destroy` event to pool API.
575
576 ## [2.6.26] - 2023-08-15
577
578 ### Added
579
580 - Add kill handler to worker options allowing to execute custom code when worker is killed.
581 - Add `listTaskFunctions()` method to pool API.
582 - SMTP client pool example: nodemailer.
583
584 ## [2.6.25] - 2023-08-13
585
586 ### Added
587
588 - HTTP server pool examples: fastify-cluster, fastify-hybrid.
589 - WebSocket server pool examples: ws-cluster, ws-hybrid.
590
591 ## [2.6.24] - 2023-08-12
592
593 ### Added
594
595 - Add array of transferable objects to the `execute()` method arguments.
596 - WebSocket server pool examples: ws-worker_threads.
597
598 ## [2.6.23] - 2023-08-11
599
600 ### Fixed
601
602 - 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.
603
604 ### Added
605
606 - HTTP client pool examples: fetch, node-fetch and axios with multiple task functions.
607 - HTTP server pool examples: express-worker_threads, fastify-worker_threads.
608
609 ## [2.6.22] - 2023-08-10
610
611 ### Fixed
612
613 - Add missing `types` field to package.json `exports`.
614
615 ### Changed
616
617 - Structure markdown documentation (PR #811).
618
619 ## [2.6.21] - 2023-08-03
620
621 ### Changed
622
623 - Improve code documentation.
624 - Code refactoring and cleanup for better maintainability and readability.
625
626 ## [2.6.20] - 2023-07-21
627
628 ### Fixed
629
630 - Fix queued tasks redistribution on error task execution starvation.
631 - Ensure tasks queueing per worker condition is untangled from the pool busyness semantic.
632
633 ### Changed
634
635 - Drastically reduce lookups by worker in the worker nodes.
636
637 ## [2.6.19] - 2023-07-20
638
639 ### Added
640
641 - Dedicated internal communication channel for worker_threads pools.
642
643 ## [2.6.18] - 2023-07-19
644
645 ### Changed
646
647 - Code refactoring and cleanup for better maintainability and readability. Bundle size is a bit smaller.
648
649 ## [2.6.17] - 2023-07-16
650
651 ### Added
652
653 - Add `listTaskFunctions()` method to worker API.
654
655 ## [2.6.16] - 2023-07-12
656
657 ### Fixed
658
659 - Fix pool startup detection.
660 - Fix worker task functions handling.
661
662 ## [2.6.15] - 2023-07-11
663
664 ### Added
665
666 - Take into account worker node readiness in worker choice strategies.
667
668 ## [2.6.14] - 2023-07-10
669
670 ### Fixed
671
672 - Fix task function statistics tracking.
673
674 ## [2.6.13] - 2023-07-10
675
676 ### Added
677
678 - Add per task function statistics tracking.
679 - Add public methods to manipulate the worker task functions at runtime.
680
681 ## [2.6.12] - 2023-07-09
682
683 ### Fixed
684
685 - Workaround import issue with `node:os` module in node 16.x.x.
686
687 ## [2.6.11] - 2023-07-09
688
689 ### Fixed
690
691 - Fix pool readiness semantic.
692
693 ## [2.6.10] - 2023-07-08
694
695 ### Fixed
696
697 - Ensure workers are not recreated on error at pool startup.
698
699 ### Added
700
701 - Add `ready` and `strategy` fields to pool information.
702 - Add pool event `ready` to notify when the number of workers created in the pool has reached the maximum size expected and are ready.
703 - Add dynamic pool sizing checks.
704
705 ## [2.6.9] - 2023-07-07
706
707 ### Fixed
708
709 - Recreate the right worker type on uncaught exception.
710
711 ### Added
712
713 - Add minimum and maximum to internal measurement statistics.
714 - Add `runTime` and `waitTime` to pool information.
715 - Check worker inactive time only on dynamic worker.
716
717 ## [2.6.8] - 2023-07-03
718
719 ### Fixed
720
721 - Brown paper bag release to fix version handling in pool information.
722
723 ## [2.6.7] - 2023-07-03
724
725 ### Fixed
726
727 - Ensure worker queued tasks at error are reassigned to other pool workers.
728
729 ### Added
730
731 - Add pool `utilization` ratio to pool information.
732 - Add `version` to pool information.
733 - Add worker information to worker nodes.
734
735 ## [2.6.6] - 2023-07-01
736
737 ### Added
738
739 - Add safe helper `availableParallelism()` to help sizing the pool.
740
741 ### Fixed
742
743 - Ensure message handler is only registered in worker.
744
745 ## [2.6.5] - 2023-06-27
746
747 ### Known issues
748
749 - Cluster pools tasks execution are not working by using ESM files extension: https://github.com/poolifier/poolifier/issues/782
750
751 ### Fixed
752
753 - Artificial version bump to 2.6.5 to workaround publication issue.
754 - Ensure cluster pool `destroy()` gracefully shutdowns worker's server.
755 - Ensure pool event is emitted before task error promise rejection.
756 - Fix queued tasks count computation.
757
758 ### Removed
759
760 - Remove unneeded worker_threads worker `MessageChannel` internal usage for IPC.
761
762 ## [2.6.4] - 2023-06-27
763
764 ### Known issues
765
766 - Cluster pools tasks execution are not working by using ESM files extension: https://github.com/poolifier/poolifier/issues/782
767
768 ### Fixed
769
770 - Ensure cluster pool `destroy()` gracefully shutdowns worker's server.
771 - Ensure pool event is emitted before task error promise rejection.
772 - Fix queued tasks count computation.
773
774 ### Removed
775
776 - Remove unneeded worker_threads worker `MessageChannel` internal usage for IPC.
777
778 ## [2.6.3] - 2023-06-19
779
780 ### Fixed
781
782 - Ensure no tasks are queued when trying to soft kill a dynamic worker.
783 - Update strategies internals after statistics computation.
784
785 ### Changed
786
787 - Optimize O(1) queue implementation.
788
789 ## [2.6.2] - 2023-06-12
790
791 ### Fixed
792
793 - Fix new worker use after creation in dynamic pool given the current worker choice strategy.
794
795 ## [2.6.1] - 2023-06-10
796
797 ### Added
798
799 - Add worker choice strategy documentation: [README.md](./docs/worker-choice-strategies.md).
800
801 ### Fixed
802
803 - Fix average statistics computation: ensure failed tasks are not accounted.
804
805 ## [2.6.0] - 2023-06-09
806
807 ### Added
808
809 - Add `LEAST_ELU` worker choice strategy (experimental).
810 - Add tasks ELU instead of runtime support to `FAIR_SHARE` worker choice strategy.
811
812 ### Changed
813
814 - Refactor pool worker node usage internals.
815 - Breaking change: refactor worker choice strategy statistics requirements: the syntax of the worker choice strategy options has changed.
816 - Breaking change: pool information `info` property object fields have been renamed.
817
818 ### Fixed
819
820 - Fix wait time accounting.
821 - Ensure worker choice strategy `LEAST_BUSY` accounts also tasks wait time.
822 - Ensure worker choice strategy `LEAST_USED` accounts also queued tasks.
823
824 ## [2.5.4] - 2023-06-07
825
826 ### Added
827
828 - Add Event Loop Utilization (ELU) statistics to worker tasks usage.
829
830 ### Changed
831
832 - Compute statistics at the worker level only if needed.
833 - Add `worker_threads` options to thread pool options.
834
835 ### Fixed
836
837 - Make the `LEAST_BUSY` strategy only relies on task runtime.
838
839 ## [2.5.3] - 2023-06-04
840
841 ### Changed
842
843 - Refine pool information content.
844 - Limit pool internals public exposure.
845
846 ## [2.5.2] - 2023-06-02
847
848 ### Added
849
850 - Add `taskError` pool event for task execution error.
851 - Add pool information `info` property to pool.
852 - Emit pool information on `busy` and `full` pool events.
853
854 ## [2.5.1] - 2023-06-01
855
856 ### Added
857
858 - Add pool option `restartWorkerOnError` to restart worker on uncaught error. Default to `true`.
859 - Add `error` pool event for uncaught worker error.
860
861 ## [2.5.0] - 2023-05-31
862
863 ### Added
864
865 - Switch pool event emitter to `EventEmitterAsyncResource`.
866 - Add tasks wait time accounting in per worker tasks usage.
867 - Add interleaved weighted round robin `INTERLEAVED_WEIGHTED_ROUND_ROBIN` worker choice strategy (experimental).
868
869 ### Changed
870
871 - Renamed worker choice strategy `LESS_BUSY` to `LEAST_BUSY` and `LESS_USED` to `LEAST_USED`.
872
873 ## [2.4.14] - 2023-05-09
874
875 ### Fixed
876
877 - Ensure no undefined task runtime can land in the tasks history.
878 - Fix median computation implementation once again.
879
880 ### Added
881
882 - Unit tests for median and queue implementations.
883
884 ## [2.4.13] - 2023-05-08
885
886 ### Fixed
887
888 - Fix worker choice strategy options validation.
889 - Fix fair share worker choice strategy internals update: ensure virtual task end timestamp is computed at task submission.
890
891 ## [2.4.12] - 2023-05-06
892
893 ### Added
894
895 - Support multiple task functions per worker.
896 - Add custom worker weights support to worker choice strategies options.
897
898 ### Changed
899
900 - Use O(1) queue implementation for tasks queueing.
901
902 ### Fixed
903
904 - Fix median computation implementation.
905 - Fix fair share worker choice strategy internals update.
906
907 ## [2.4.11] - 2023-04-23
908
909 ### Changed
910
911 - Optimize free worker finding in worker choice strategies.
912
913 ## [2.4.10] - 2023-04-15
914
915 ### Fixed
916
917 - Fix typescript type definition for task function: ensure the input data is optional.
918 - Fix typescript type definition for pool execute(): ensure the input data is optional.
919
920 ## [2.4.9] - 2023-04-15
921
922 ### Added
923
924 - Add tasks queue enablement runtime setter to pool.
925 - Add tasks queue options runtime setter to pool.
926 - Add worker choice strategy options runtime setter to pool.
927
928 ### Changed
929
930 - Remove the tasks queuing experimental status.
931
932 ### Fixed
933
934 - Fix task function type definition and validation.
935 - Fix worker choice strategy options handling.
936
937 ## [2.4.8] - 2023-04-12
938
939 ### Fixed
940
941 - Fix message between main worker and worker type definition for tasks.
942 - Fix code documentation.
943
944 ## [2.4.7] - 2023-04-11
945
946 ### Added
947
948 - Add worker tasks queue options to pool options.
949
950 ### Fixed
951
952 - Fix missing documentation.
953
954 ## [2.4.6] - 2023-04-10
955
956 ### Fixed
957
958 - Ensure one task at a time is executed per worker with tasks queueing enabled.
959 - Properly count worker executing tasks with tasks queueing enabled.
960
961 ## [2.4.5] - 2023-04-09
962
963 ### Added
964
965 - Use monotonic high resolution timer for worker tasks runtime.
966 - Add worker tasks median runtime to statistics.
967 - Add worker tasks queue (experimental).
968
969 ## [2.4.4] - 2023-04-07
970
971 ### Added
972
973 - Add `PoolEvents` enumeration and `PoolEvent` type.
974
975 ### Fixed
976
977 - Destroy worker only on alive check.
978
979 ## [2.4.3] - 2023-04-07
980
981 ### Fixed
982
983 - Fix typedoc generation with inheritance.
984
985 ## [2.4.2] - 2023-04-06
986
987 ### Added
988
989 - Add `full` event to dynamic pool.
990 - Keep worker choice strategy in memory for conditional reuse.
991
992 ### Fixed
993
994 - Fix possible negative worker key at worker removal in worker choice strategies.
995
996 ## [2.4.1] - 2023-04-05
997
998 ### Changed
999
1000 - Optimize worker choice strategy for dynamic pool.
1001
1002 ### Fixed
1003
1004 - Ensure dynamic pool does not alter worker choice strategy expected behavior.
1005
1006 ## [2.4.0] - 2023-04-04
1007
1008 ### Added
1009
1010 - Add `LESS_BUSY` worker choice strategy.
1011
1012 ### Changed
1013
1014 - Optimize worker storage in pool.
1015 - Optimize worker alive status check.
1016 - BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
1017 - Optimize `LESS_USED` worker choice strategy.
1018 - Update benchmark versus external threads pools.
1019 - Optimize tasks usage statistics requirements for worker choice strategy.
1020
1021 ### Fixed
1022
1023 - Ensure trimmable characters are checked at pool initialization.
1024 - Fix message id integer overflow.
1025 - Fix pool worker removal in worker choice strategy internals.
1026 - Fix package publication with pnpm.
1027
1028 ## [2.4.0-3] - 2023-04-04
1029
1030 ### Added
1031
1032 - Add `LESS_BUSY` worker choice strategy.
1033
1034 ### Changed
1035
1036 - Optimize worker storage in pool.
1037 - Optimize worker alive status check.
1038 - BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
1039 - Optimize `LESS_USED` worker choice strategy.
1040 - Update benchmark versus external threads pools.
1041
1042 ### Fixed
1043
1044 - Ensure trimmable characters are checked at pool initialization.
1045 - Fix message id integer overflow.
1046 - Fix pool worker removal in worker choice strategy internals.
1047 - Fix package publication with pnpm.
1048
1049 ## [2.4.0-2] - 2023-04-03
1050
1051 ### Added
1052
1053 - Add `LESS_BUSY` worker choice strategy.
1054
1055 ### Changed
1056
1057 - Optimize worker storage in pool.
1058 - Optimize worker alive status check.
1059 - BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
1060 - Optimize `LESS_USED` worker choice strategy.
1061
1062 ### Fixed
1063
1064 - Ensure trimmable characters are checked at pool initialization.
1065 - Fix message id integer overflow.
1066 - Fix pool worker removal in worker choice strategy internals.
1067 - Fix package publication with pnpm.
1068
1069 ## [2.4.0-1] - 2023-04-03
1070
1071 ### Added
1072
1073 - Add `LESS_BUSY` worker choice strategy.
1074
1075 ### Changed
1076
1077 - Optimize worker storage in pool.
1078 - Optimize worker alive status check.
1079 - BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
1080 - Optimize `LESS_USED` worker choice strategy.
1081
1082 ### Fixed
1083
1084 - Ensure trimmable characters are checked at pool initialization.
1085 - Fix message id integer overflow.
1086 - Fix pool worker removal in worker choice strategy internals.
1087
1088 ## [2.4.0-0] - 2023-04-03
1089
1090 ### Added
1091
1092 - Add `LESS_BUSY` worker choice strategy.
1093
1094 ### Changed
1095
1096 - Optimize worker storage in pool.
1097 - Optimize worker alive status check.
1098 - BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
1099 - Optimize `LESS_USED` worker choice strategy.
1100
1101 ### Fixed
1102
1103 - Ensure trimmable characters are checked at pool initialization.
1104 - Fix message id integer overflow.
1105 - Fix pool worker removal in worker choice strategy internals.
1106
1107 ## [2.3.10] - 2023-03-18
1108
1109 ### Fixed
1110
1111 - Fix package.json `exports` syntax for ESM and CommonJS.
1112
1113 ### Changed
1114
1115 - Permit SemVer pre-release publication.
1116
1117 ## [2.3.10-2] - 2023-03-18
1118
1119 ### Fixed
1120
1121 - Fix package.json `exports` syntax for ESM and CommonJS.
1122
1123 ## [2.3.10-1] - 2023-03-18
1124
1125 ### Changed
1126
1127 - Permit SemVer pre-release publication.
1128
1129 ## [2.3.10-0] - 2023-03-18
1130
1131 ### Fixed
1132
1133 - Fix package.json `exports` syntax for ESM and CommonJS.
1134
1135 ## [2.3.9] - 2023-03-18
1136
1137 ### Changed
1138
1139 - Introduce ESM module support along with CommonJS one.
1140
1141 ### Fixed
1142
1143 - Fix brown paper bag bug referencing the same object literal.
1144
1145 ## [2.3.8] - 2023-03-18
1146
1147 ### Changed
1148
1149 - Switch internal benchmarking code to benny.
1150 - Switch to TypeScript 5.x.x.
1151 - Switch rollup bundler plugins to core ones.
1152 - Switch to TSDoc syntax.
1153 - Enforce conventional commits.
1154
1155 ### Fixed
1156
1157 - Fix random integer generator.
1158 - Fix worker choice strategy pool type identification at initialization.
1159
1160 ## [2.3.7] - 2022-10-23
1161
1162 ### Changed
1163
1164 - Switch to open collective FOSS project funding platform.
1165 - Switch to ts-standard linter configuration on TypeScript code.
1166
1167 ### Fixed
1168
1169 - Fixed missing async on pool execute method.
1170 - Fixed typing in TypeScript example.
1171 - Fixed types in unit tests.
1172
1173 ## [2.3.6] - 2022-10-22
1174
1175 ### Changed
1176
1177 - Cleanup pool attributes and methods.
1178 - Refine error types thrown.
1179
1180 ### Fixed
1181
1182 - Fix continuous integration build on windows.
1183 - Fix code coverage reporting by using c8 instead of nyc.
1184
1185 ## [2.3.5] - 2022-10-21
1186
1187 ### Changed
1188
1189 - Improve benchmarks: add IO intensive task workload, add task size option, integrate code into linter.
1190 - Optimize tasks usage lookup implementation.
1191
1192 ### Fixed
1193
1194 - Fix missed pool event emitter type export.
1195 - Fix typedoc documentation generation.
1196
1197 ## [2.3.4] - 2022-10-17
1198
1199 ### Added
1200
1201 - Fully automate release process with release-it.
1202
1203 ### Changed
1204
1205 - Optimize fair share task scheduling algorithm implementation.
1206 - Update benchmark versus external pools results with latest version.
1207
1208 ## [2.3.3] - 2022-10-15
1209
1210 ### Added
1211
1212 - Add support for [cluster settings](https://nodejs.org/api/cluster.html#cluster_cluster_settings) in cluster pool options.
1213
1214 ## [2.3.2] - 2022-10-14
1215
1216 ### Changed
1217
1218 - Optimize fair share worker selection strategy implementation.
1219
1220 ### Fixed
1221
1222 - Fix WRR worker selection strategy: ensure the condition triggering the round robin can be fulfilled.
1223
1224 ## [2.3.1] - 2022-10-13
1225
1226 ### Added
1227
1228 - Pool worker choice strategies:
1229 - `WorkerChoiceStrategies.WEIGHTED_ROUND_ROBIN` strategy based on weighted round robin scheduling algorithm using tasks execution time for now.
1230 - `WorkerChoiceStrategies.FAIR_SHARE` strategy based on fair share scheduling algorithm using tasks execution time for now.
1231
1232 ## [2.2.2] - 2022-10-09
1233
1234 ### Fixed
1235
1236 - Fixed `README.md` file.
1237
1238 ## [2.2.1] - 2022-10-08
1239
1240 ### Added
1241
1242 - Dynamic worker choice strategy change at runtime.
1243
1244 ## [2.2.0] - 2022-01-05
1245
1246 ### Breaking Changes
1247
1248 - Support only Node.js version 16.x.x for cluster pool: upstream cluster API have changed on that version.
1249
1250 ## [2.1.0] - 2021-08-29
1251
1252 ### Added
1253
1254 - Add an optional pool option `messageHandler` to `PoolOptions<Worker>` for registering a message handler callback on each worker.
1255
1256 ### Breaking Changes
1257
1258 - `AbstractWorker` class `maxInactiveTime`, `killBehavior` and `async` attributes have been removed in favour of the same ones in the worker options `opts` public attribute.
1259 - `AbstractWorker` class `lastTask` attribute have been renamed to `lastTaskTimestamp`.
1260 - `AbstractWorker` class `interval` attribute have been renamed to `aliveInterval`.
1261 - `AbstractWorker` class cannot be instantiated without specifying the `mainWorker` argument referencing the main worker.
1262
1263 ## [2.0.2] - 2021-05-12
1264
1265 ### Bug fixes
1266
1267 - Fix `busy` event emission on fixed pool type
1268
1269 ## [2.0.1] - 2021-03-16
1270
1271 ### Bug fixes
1272
1273 - Check if pool options are properly set.
1274 - `busy` event is emitted on all pool types.
1275
1276 ## [2.0.0] - 2021-03-01
1277
1278 ### Bug fixes
1279
1280 - Now a thread/process by default is not deleted when the task submitted take more time than maxInactiveTime configured (issue #70).
1281
1282 ### Breaking Changes
1283
1284 - `FullPool` event is now renamed to `busy`.
1285 - `maxInactiveTime` on `ThreadWorker` default behavior is now changed, if you want to keep the old behavior set `killBehavior` to `KillBehaviors.HARD`.
1286 _Find more details on our JSDoc._
1287
1288 - `maxTasks` option on `FixedThreadPool` and `DynamicThreadPool` is now removed since is no more needed.
1289
1290 - We changed some internal structures, but you shouldn't be too affected by them as these are internal changes.
1291
1292 ### Pool options types declaration merge
1293
1294 `FixedThreadPoolOptions` and `DynamicThreadPoolOptions` type declarations have been merged to `PoolOptions<Worker>`.
1295
1296 #### New `export` strategy
1297
1298 ```js
1299 // Before
1300 const DynamicThreadPool = require('poolifier/lib/dynamic')
1301 // After
1302 const { DynamicThreadPool } = require('poolifier/lib/dynamic')
1303 ```
1304
1305 But you should always prefer just using
1306
1307 ```js
1308 const { DynamicThreadPool } = require('poolifier')
1309 ```
1310
1311 #### New type definitions for input data and response
1312
1313 For cluster worker and worker-thread pools, you can now only send and receive structured-cloneable data.
1314 _This is not a limitation by poolifier but Node.js._
1315
1316 #### Public property replacements
1317
1318 `numWorkers` property is now `numberOfWorkers`
1319
1320 #### Internal (protected) properties and methods renaming
1321
1322 These properties are not intended for end users
1323
1324 - `id` => `nextMessageId`
1325
1326 These methods are not intended for end users
1327
1328 - `_chooseWorker` => `chooseWorker`
1329 - `_newWorker` => `createWorker`
1330 - `_execute` => `internalExecute`
1331 - `_chooseWorker` => `chooseWorker`
1332 - `_checkAlive` => `checkAlive`
1333 - `_run` => `run`
1334 - `_runAsync` => `runAsync`
1335
1336 ## [1.1.0] - 2020-05-21
1337
1338 ### Added
1339
1340 - ThreadWorker support async functions as option
1341 - Various external library patches
1342
1343 ## [1.0.0] - 2020-01-24
1344
1345 ### Added
1346
1347 - FixedThreadPool implementation
1348 - DynamicThreadPool implementation
1349 - WorkerThread implementation to improve developer experience