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