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