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