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