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