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