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