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