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