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