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