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