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