docs: refine README.md
[poolifier.git] / CHANGELOG.md
... / ...
CommitLineData
1# Changelog
2
3All notable changes to this project will be documented in this file.
4
5The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
8## [Unreleased]
9
10## [2.7.2] - 2023-09-23
11
12### Changed
13
14- Add source maps to npm package to ease debugging.
15
16### Added
17
18- Continuous benchmarking versus other worker pools: [https://poolifier.github.io/benchmark](https://poolifier.github.io/benchmark).
19
20## [2.7.1] - 2023-09-20
21
22### Fixed
23
24- Ensure worker message listener used one time are removed after usage.
25
26## [2.7.0] - 2023-09-19
27
28### Fixed
29
30- Fix task stealing related tasks queue options handling at runtime.
31
32### Changed
33
34- Rename `listTaskFunctions()` to `listTaskFunctionNames()` in pool and worker API.
35
36### Added
37
38- Add `hasTaskFunction()`, `addTaskFunction()`, `removeTaskFunction()`, `setDefaultTaskFunction()` methods to pool API: [PR #1148](https://github.com/poolifier/poolifier/pull/1148).
39- Stricter worker constructor arguments validation.
40
41## [2.6.45] - 2023-09-17
42
43### Changed
44
45- Disable publication on GitHub packages registry on release until authentication issue is fixed.
46
47### Added
48
49- Add `startWorkers` to pool options to whether start the minimum number of workers at pool initialization or not.
50- Add `start()` method to pool API to start the minimum number of workers.
51- Add `taskStealing` and `tasksStealingOnPressure` to tasks queue options to whether enable task stealing or not and whether enable tasks stealing on back pressure or not.
52- Continuous internal benchmarking: [https://poolifier.github.io/benchmark-results/dev/bench](https://poolifier.github.io/benchmark-results/dev/bench).
53
54## [2.6.44] - 2023-09-08
55
56### Fixed
57
58- Use a dedicated PAT to publish on GitHub packages registry.
59
60### Added
61
62- Publish on GitHub packages registry on release.
63
64### Changed
65
66- Switch from rome to biome: [PR #1128](https://github.com/poolifier/poolifier/pull/1128).
67
68## [2.6.43] - 2023-09-08
69
70### Added
71
72- Publish on GitHub packages registry on release.
73
74### Changed
75
76- Switch from rome to biome: [PR #1128](https://github.com/poolifier/poolifier/pull/1128).
77
78## [2.6.42] - 2023-09-06
79
80### Changed
81
82- Optimize hot code paths implementation: avoid unnecessary branching, add and use optimized helpers (min, max), use reduce() array helper, ...
83
84## [2.6.41] - 2023-09-03
85
86### Changed
87
88- Optimize worker choice strategies implementation.
89
90## [2.6.40] - 2023-09-01
91
92### Fixed
93
94- Do not pre-choose in WRR worker choice strategy to avoid bias.
95- Avoid array out of bound in worker choice strategies after worker node removal.
96
97## [2.6.39] - 2023-08-30
98
99### Fixed
100
101- Fix race condition in worker choice strategies at worker node info querying while not yet initialized.
102
103## [2.6.38] - 2023-08-30
104
105### Added
106
107- Bundle typescript types declaration into one file.
108
109### Changed
110
111- Improve interleaved weighted round robin worker choice strategy implementation.
112
113## [2.6.37] - 2023-08-28
114
115### Fixed
116
117- Ensure unused worker usage statistics are deleted at runtime.
118
119### Changed
120
121- Rename worker choice strategy options `choiceRetries` to `retries`.
122- Avoid unnecessary branching in worker choice strategies.
123
124## [2.6.36] - 2023-08-27
125
126### Fixed
127
128- Fix pool `execute()` arguments check.
129
130### Changed
131
132- Make continuous tasks stealing algorithm less aggressive.
133- Fine tune tasks stealing algorithm under back pressure.
134
135## [2.6.35] - 2023-08-25
136
137### Fixed
138
139- Don't account worker usage statistics for tasks that have failed.
140- Fix pool information runtime and wait time median computation.
141
142### Changed
143
144- Update simple moving average implementation to use a circular buffer.
145- Update simple moving median implementation to use a circular buffer.
146- Account for stolen tasks in worker usage statistics and pool information.
147
148### Added
149
150- Continuous tasks stealing algorithm.
151
152## [2.6.34] - 2023-08-24
153
154### Fixes
155
156- Avoid cascading tasks stealing under back pressure.
157
158### Changed
159
160- Add fastpath to queued tasks rescheduling.
161
162## [2.6.33] - 2023-08-24
163
164### Fixed
165
166- Fix queued tasks rescheduling.
167
168### Changed
169
170- Rename tasks queue options `queueMaxSize` to `size`.
171
172### Added
173
174- Task stealing scheduling algorithm if tasks queueing is enabled.
175
176## [2.6.32] - 2023-08-23
177
178### Fixed
179
180- Ensure no task can be executed when the pool is destroyed.
181
182### Added
183
184- Add `queueMaxSize` option to tasks queue options.
185- Add O(1) deque implementation implemented with doubly linked list and use it for tasks queueing.
186- Add tasks stealing algorithm when a worker node queue is back pressured if tasks queueing is enabled.
187
188## [2.6.31] - 2023-08-20
189
190### Fixed
191
192- Fix worker choice strategy retries mechanism in some edge cases.
193
194### Changed
195
196- Make orthogonal worker choice strategies tasks distribution and created dynamic worker usage.
197- Remove the experimental status of the `LEAST_ELU` worker choice strategy.
198
199## [2.6.30] - 2023-08-19
200
201### Fixed
202
203- Ensure pool event `backPressure` is emitted.
204- Ensure pool event `full` is emitted only once.
205- Ensure worker node cannot be instantiated without proper arguments.
206
207## [2.6.29] - 2023-08-18
208
209### Fixed
210
211- Fix race condition between ready and task functions worker message handling at startup.
212- Fix duplicate task function worker usage statistics computation per task function.
213- Update task function worker usage statistics if and only if there's at least two different task functions.
214- Fix race condition at task function worker usage executing task computation leading to negative value.
215
216### Added
217
218- 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).
219- Use back pressure detection in worker choice strategies.
220- Add worker choice strategies retries mechanism if no worker is eligible.
221
222## [2.6.28] - 2023-08-16
223
224### Fixed
225
226- Ensure pool workers are properly initialized.
227
228### Added
229
230- HTTP server pool examples: express-cluster, express-hybrid.
231
232### Changed
233
234- Remove now useless branching in worker hot code path.
235
236## [2.6.27] - 2023-08-15
237
238### Fixed
239
240- Add `KillHandler` type definition to exported types.
241
242### Added
243
244- Add `destroy` event to pool API.
245
246## [2.6.26] - 2023-08-15
247
248### Added
249
250- Add kill handler to worker options allowing to execute custom code when worker is killed.
251- Add `listTaskFunctions()` method to pool API.
252- SMTP client pool example: nodemailer.
253
254## [2.6.25] - 2023-08-13
255
256### Added
257
258- HTTP server pool examples: fastify-cluster, fastify-hybrid.
259- WebSocket server pool examples: ws-cluster, ws-hybrid.
260
261## [2.6.24] - 2023-08-12
262
263### Added
264
265- Add array of transferable objects to the `execute()` method arguments.
266- WebSocket server pool examples: ws-worker_threads.
267
268## [2.6.23] - 2023-08-11
269
270### Fixed
271
272- 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.
273
274### Added
275
276- HTTP client pool examples: fetch, node-fetch and axios with multiple task functions.
277- HTTP server pool examples: express-worker_threads, fastify-worker_threads.
278
279## [2.6.22] - 2023-08-10
280
281### Fixed
282
283- Add missing `types` field to package.json `exports`.
284
285### Changed
286
287- Structure markdown documentation (PR #811).
288
289## [2.6.21] - 2023-08-03
290
291### Changed
292
293- Improve code documentation.
294- Code refactoring and cleanup for better maintainability and readability.
295
296## [2.6.20] - 2023-07-21
297
298### Fixed
299
300- Fix queued tasks redistribution on error task execution starvation.
301- Ensure tasks queueing per worker condition is untangled from the pool busyness semantic.
302
303### Changed
304
305- Drastically reduce lookups by worker in the worker nodes.
306
307## [2.6.19] - 2023-07-20
308
309### Added
310
311- Dedicated internal communication channel for worker_threads pools.
312
313## [2.6.18] - 2023-07-19
314
315### Changed
316
317- Code refactoring and cleanup for better maintainability and readability. Bundle size is a bit smaller.
318
319## [2.6.17] - 2023-07-16
320
321### Added
322
323- Add `listTaskFunctions()` method to worker API.
324
325## [2.6.16] - 2023-07-12
326
327### Fixed
328
329- Fix pool startup detection.
330- Fix worker task functions handling.
331
332## [2.6.15] - 2023-07-11
333
334### Added
335
336- Take into account worker node readiness in worker choice strategies.
337
338## [2.6.14] - 2023-07-10
339
340### Fixed
341
342- Fix task function statistics tracking.
343
344## [2.6.13] - 2023-07-10
345
346### Added
347
348- Add per task function statistics tracking.
349- Add public methods to manipulate the worker task functions at runtime.
350
351## [2.6.12] - 2023-07-09
352
353### Fixed
354
355- Workaround import issue with `node:os` module in node 16.x.x.
356
357## [2.6.11] - 2023-07-09
358
359### Fixed
360
361- Fix pool readiness semantic.
362
363## [2.6.10] - 2023-07-08
364
365### Fixed
366
367- Ensure workers are not recreated on error at pool startup.
368
369### Added
370
371- Add `ready` and `strategy` fields to pool information.
372- Add pool event `ready` to notify when the number of workers created in the pool has reached the maximum size expected and are ready.
373- Add dynamic pool sizing checks.
374
375## [2.6.9] - 2023-07-07
376
377### Fixed
378
379- Recreate the right worker type on uncaught exception.
380
381### Added
382
383- Add minimum and maximum to internal measurement statistics.
384- Add `runTime` and `waitTime` to pool information.
385- Check worker inactive time only on dynamic worker.
386
387## [2.6.8] - 2023-07-03
388
389### Fixed
390
391- Brown paper bag release to fix version handling in pool information.
392
393## [2.6.7] - 2023-07-03
394
395### Fixed
396
397- Ensure worker queued tasks at error are reassigned to other pool workers.
398
399### Added
400
401- Add pool `utilization` ratio to pool information.
402- Add `version` to pool information.
403- Add worker information to worker nodes.
404
405## [2.6.6] - 2023-07-01
406
407### Added
408
409- Add safe helper `availableParallelism()` to help sizing the pool.
410
411### Fixed
412
413- Ensure message handler is only registered in worker.
414
415## [2.6.5] - 2023-06-27
416
417### Known issues
418
419- Cluster pools tasks execution are not working by using ESM files extension: https://github.com/poolifier/poolifier/issues/782
420
421### Fixed
422
423- Artificial version bump to 2.6.5 to workaround publication issue.
424- Ensure cluster pool `destroy()` gracefully shutdowns worker's server.
425- Ensure pool event is emitted before task error promise rejection.
426- Fix queued tasks count computation.
427
428### Removed
429
430- Remove unneeded worker_threads worker `MessageChannel` internal usage for IPC.
431
432## [2.6.4] - 2023-06-27
433
434### Known issues
435
436- Cluster pools tasks execution are not working by using ESM files extension: https://github.com/poolifier/poolifier/issues/782
437
438### Fixed
439
440- Ensure cluster pool `destroy()` gracefully shutdowns worker's server.
441- Ensure pool event is emitted before task error promise rejection.
442- Fix queued tasks count computation.
443
444### Removed
445
446- Remove unneeded worker_threads worker `MessageChannel` internal usage for IPC.
447
448## [2.6.3] - 2023-06-19
449
450### Fixed
451
452- Ensure no tasks are queued when trying to soft kill a dynamic worker.
453- Update strategies internals after statistics computation.
454
455### Changed
456
457- Optimize O(1) queue implementation.
458
459## [2.6.2] - 2023-06-12
460
461### Fixed
462
463- Fix new worker use after creation in dynamic pool given the current worker choice strategy.
464
465## [2.6.1] - 2023-06-10
466
467### Added
468
469- Add worker choice strategy documentation: [README.md](./docs/worker-choice-strategies.md).
470
471### Fixed
472
473- Fix average statistics computation: ensure failed tasks are not accounted.
474
475## [2.6.0] - 2023-06-09
476
477### Added
478
479- Add `LEAST_ELU` worker choice strategy (experimental).
480- Add tasks ELU instead of runtime support to `FAIR_SHARE` worker choice strategy.
481
482### Changed
483
484- Refactor pool worker node usage internals.
485- Breaking change: refactor worker choice strategy statistics requirements: the syntax of the worker choice strategy options has changed.
486- Breaking change: pool information `info` property object fields have been renamed.
487
488### Fixed
489
490- Fix wait time accounting.
491- Ensure worker choice strategy `LEAST_BUSY` accounts also tasks wait time.
492- Ensure worker choice strategy `LEAST_USED` accounts also queued tasks.
493
494## [2.5.4] - 2023-06-07
495
496### Added
497
498- Add Event Loop Utilization (ELU) statistics to worker tasks usage.
499
500### Changed
501
502- Compute statistics at the worker level only if needed.
503- Add `worker_threads` options to thread pool options.
504
505### Fixed
506
507- Make the `LEAST_BUSY` strategy only relies on task runtime.
508
509## [2.5.3] - 2023-06-04
510
511### Changed
512
513- Refine pool information content.
514- Limit pool internals public exposure.
515
516## [2.5.2] - 2023-06-02
517
518### Added
519
520- Add `taskError` pool event for task execution error.
521- Add pool information `info` property to pool.
522- Emit pool information on `busy` and `full` pool events.
523
524## [2.5.1] - 2023-06-01
525
526### Added
527
528- Add pool option `restartWorkerOnError` to restart worker on uncaught error. Default to `true`.
529- Add `error` pool event for uncaught worker error.
530
531## [2.5.0] - 2023-05-31
532
533### Added
534
535- Switch pool event emitter to `EventEmitterAsyncResource`.
536- Add tasks wait time accounting in per worker tasks usage.
537- Add interleaved weighted round robin `INTERLEAVED_WEIGHTED_ROUND_ROBIN` worker choice strategy (experimental).
538
539### Changed
540
541- Renamed worker choice strategy `LESS_BUSY` to `LEAST_BUSY` and `LESS_USED` to `LEAST_USED`.
542
543## [2.4.14] - 2023-05-09
544
545### Fixed
546
547- Ensure no undefined task runtime can land in the tasks history.
548- Fix median computation implementation once again.
549
550### Added
551
552- Unit tests for median and queue implementations.
553
554## [2.4.13] - 2023-05-08
555
556### Fixed
557
558- Fix worker choice strategy options validation.
559- Fix fair share worker choice strategy internals update: ensure virtual task end timestamp is computed at task submission.
560
561## [2.4.12] - 2023-05-06
562
563### Added
564
565- Support multiple task functions per worker.
566- Add custom worker weights support to worker choice strategies options.
567
568### Changed
569
570- Use O(1) queue implementation for tasks queueing.
571
572### Fixed
573
574- Fix median computation implementation.
575- Fix fair share worker choice strategy internals update.
576
577## [2.4.11] - 2023-04-23
578
579### Changed
580
581- Optimize free worker finding in worker choice strategies.
582
583## [2.4.10] - 2023-04-15
584
585### Fixed
586
587- Fix typescript type definition for task function: ensure the input data is optional.
588- Fix typescript type definition for pool execute(): ensure the input data is optional.
589
590## [2.4.9] - 2023-04-15
591
592### Added
593
594- Add tasks queue enablement runtime setter to pool.
595- Add tasks queue options runtime setter to pool.
596- Add worker choice strategy options runtime setter to pool.
597
598### Changed
599
600- Remove the tasks queuing experimental status.
601
602### Fixed
603
604- Fix task function type definition and validation.
605- Fix worker choice strategy options handling.
606
607## [2.4.8] - 2023-04-12
608
609### Fixed
610
611- Fix message between main worker and worker type definition for tasks.
612- Fix code documentation.
613
614## [2.4.7] - 2023-04-11
615
616### Added
617
618- Add worker tasks queue options to pool options.
619
620### Fixed
621
622- Fix missing documentation.
623
624## [2.4.6] - 2023-04-10
625
626### Fixed
627
628- Ensure one task at a time is executed per worker with tasks queueing enabled.
629- Properly count worker executing tasks with tasks queueing enabled.
630
631## [2.4.5] - 2023-04-09
632
633### Added
634
635- Use monotonic high resolution timer for worker tasks runtime.
636- Add worker tasks median runtime to statistics.
637- Add worker tasks queue (experimental).
638
639## [2.4.4] - 2023-04-07
640
641### Added
642
643- Add `PoolEvents` enumeration and `PoolEvent` type.
644
645### Fixed
646
647- Destroy worker only on alive check.
648
649## [2.4.3] - 2023-04-07
650
651### Fixed
652
653- Fix typedoc generation with inheritance.
654
655## [2.4.2] - 2023-04-06
656
657### Added
658
659- Add `full` event to dynamic pool.
660- Keep worker choice strategy in memory for conditional reuse.
661
662### Fixed
663
664- Fix possible negative worker key at worker removal in worker choice strategies.
665
666## [2.4.1] - 2023-04-05
667
668### Changed
669
670- Optimize worker choice strategy for dynamic pool.
671
672### Fixed
673
674- Ensure dynamic pool does not alter worker choice strategy expected behavior.
675
676## [2.4.0] - 2023-04-04
677
678### Added
679
680- Add `LESS_BUSY` worker choice strategy.
681
682### Changed
683
684- Optimize worker storage in pool.
685- Optimize worker alive status check.
686- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
687- Optimize `LESS_USED` worker choice strategy.
688- Update benchmark versus external threads pools.
689- Optimize tasks usage statistics requirements for worker choice strategy.
690
691### Fixed
692
693- Ensure trimmable characters are checked at pool initialization.
694- Fix message id integer overflow.
695- Fix pool worker removal in worker choice strategy internals.
696- Fix package publication with pnpm.
697
698## [2.4.0-3] - 2023-04-04
699
700### Added
701
702- Add `LESS_BUSY` worker choice strategy.
703
704### Changed
705
706- Optimize worker storage in pool.
707- Optimize worker alive status check.
708- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
709- Optimize `LESS_USED` worker choice strategy.
710- Update benchmark versus external threads pools.
711
712### Fixed
713
714- Ensure trimmable characters are checked at pool initialization.
715- Fix message id integer overflow.
716- Fix pool worker removal in worker choice strategy internals.
717- Fix package publication with pnpm.
718
719## [2.4.0-2] - 2023-04-03
720
721### Added
722
723- Add `LESS_BUSY` worker choice strategy.
724
725### Changed
726
727- Optimize worker storage in pool.
728- Optimize worker alive status check.
729- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
730- Optimize `LESS_USED` worker choice strategy.
731
732### Fixed
733
734- Ensure trimmable characters are checked at pool initialization.
735- Fix message id integer overflow.
736- Fix pool worker removal in worker choice strategy internals.
737- Fix package publication with pnpm.
738
739## [2.4.0-1] - 2023-04-03
740
741### Added
742
743- Add `LESS_BUSY` worker choice strategy.
744
745### Changed
746
747- Optimize worker storage in pool.
748- Optimize worker alive status check.
749- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
750- Optimize `LESS_USED` worker choice strategy.
751
752### Fixed
753
754- Ensure trimmable characters are checked at pool initialization.
755- Fix message id integer overflow.
756- Fix pool worker removal in worker choice strategy internals.
757
758## [2.4.0-0] - 2023-04-03
759
760### Added
761
762- Add `LESS_BUSY` worker choice strategy.
763
764### Changed
765
766- Optimize worker storage in pool.
767- Optimize worker alive status check.
768- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
769- Optimize `LESS_USED` worker choice strategy.
770
771### Fixed
772
773- Ensure trimmable characters are checked at pool initialization.
774- Fix message id integer overflow.
775- Fix pool worker removal in worker choice strategy internals.
776
777## [2.3.10] - 2023-03-18
778
779### Fixed
780
781- Fix package.json `exports` syntax for ESM and CommonJS.
782
783### Changed
784
785- Permit SemVer pre-release publication.
786
787## [2.3.10-2] - 2023-03-18
788
789### Fixed
790
791- Fix package.json `exports` syntax for ESM and CommonJS.
792
793## [2.3.10-1] - 2023-03-18
794
795### Changed
796
797- Permit SemVer pre-release publication.
798
799## [2.3.10-0] - 2023-03-18
800
801### Fixed
802
803- Fix package.json `exports` syntax for ESM and CommonJS.
804
805## [2.3.9] - 2023-03-18
806
807### Changed
808
809- Introduce ESM module support along with CommonJS one.
810
811### Fixed
812
813- Fix brown paper bag bug referencing the same object literal.
814
815## [2.3.8] - 2023-03-18
816
817### Changed
818
819- Switch internal benchmarking code to benny.
820- Switch to TypeScript 5.x.x.
821- Switch rollup bundler plugins to core ones.
822- Switch to TSDoc syntax.
823- Enforce conventional commits.
824
825### Fixed
826
827- Fix random integer generator.
828- Fix worker choice strategy pool type identification at initialization.
829
830## [2.3.7] - 2022-10-23
831
832### Changed
833
834- Switch to open collective FOSS project funding platform.
835- Switch to ts-standard linter configuration on TypeScript code.
836
837### Fixed
838
839- Fixed missing async on pool execute method.
840- Fixed typing in TypeScript example.
841- Fixed types in unit tests.
842
843## [2.3.6] - 2022-10-22
844
845### Changed
846
847- Cleanup pool attributes and methods.
848- Refine error types thrown.
849
850### Fixed
851
852- Fix continuous integration build on windows.
853- Fix code coverage reporting by using c8 instead of nyc.
854
855## [2.3.5] - 2022-10-21
856
857### Changed
858
859- Improve benchmarks: add IO intensive task workload, add task size option, integrate code into linter.
860- Optimize tasks usage lookup implementation.
861
862### Fixed
863
864- Fix missed pool event emitter type export.
865- Fix typedoc documentation generation.
866
867## [2.3.4] - 2022-10-17
868
869### Added
870
871- Fully automate release process with release-it.
872
873### Changed
874
875- Optimize fair share task scheduling algorithm implementation.
876- Update benchmark versus external pools results with latest version.
877
878## [2.3.3] - 2022-10-15
879
880### Added
881
882- Add support for [cluster settings](https://nodejs.org/api/cluster.html#cluster_cluster_settings) in cluster pool options.
883
884## [2.3.2] - 2022-10-14
885
886### Changed
887
888- Optimize fair share worker selection strategy implementation.
889
890### Fixed
891
892- Fix WRR worker selection strategy: ensure the condition triggering the round robin can be fulfilled.
893
894## [2.3.1] - 2022-10-13
895
896### Added
897
898- Pool worker choice strategies:
899 - `WorkerChoiceStrategies.WEIGHTED_ROUND_ROBIN` strategy based on weighted round robin scheduling algorithm using tasks execution time for now.
900 - `WorkerChoiceStrategies.FAIR_SHARE` strategy based on fair share scheduling algorithm using tasks execution time for now.
901
902## [2.2.2] - 2022-10-09
903
904### Fixed
905
906- Fixed `README.md` file.
907
908## [2.2.1] - 2022-10-08
909
910### Added
911
912- Dynamic worker choice strategy change at runtime.
913
914## [2.2.0] - 2022-01-05
915
916### Breaking Changes
917
918- Support only Node.js version 16.x.x for cluster pool: upstream cluster API have changed on that version.
919
920## [2.1.0] - 2021-08-29
921
922### Added
923
924- Add an optional pool option `messageHandler` to `PoolOptions<Worker>` for registering a message handler callback on each worker.
925
926### Breaking Changes
927
928- `AbstractWorker` class `maxInactiveTime`, `killBehavior` and `async` attributes have been removed in favour of the same ones in the worker options `opts` public attribute.
929- `AbstractWorker` class `lastTask` attribute have been renamed to `lastTaskTimestamp`.
930- `AbstractWorker` class `interval` attribute have been renamed to `aliveInterval`.
931- `AbstractWorker` class cannot be instantiated without specifying the `mainWorker` argument referencing the main worker.
932
933## [2.0.2] - 2021-05-12
934
935### Bug fixes
936
937- Fix `busy` event emission on fixed pool type
938
939## [2.0.1] - 2021-03-16
940
941### Bug fixes
942
943- Check if pool options are properly set.
944- `busy` event is emitted on all pool types.
945
946## [2.0.0] - 2021-03-01
947
948### Bug fixes
949
950- Now a thread/process by default is not deleted when the task submitted take more time than maxInactiveTime configured (issue #70).
951
952### Breaking Changes
953
954- `FullPool` event is now renamed to `busy`.
955- `maxInactiveTime` on `ThreadWorker` default behavior is now changed, if you want to keep the old behavior set `killBehavior` to `KillBehaviors.HARD`.
956 _Find more details on our JSDoc._
957
958- `maxTasks` option on `FixedThreadPool` and `DynamicThreadPool` is now removed since is no more needed.
959
960- We changed some internal structures, but you shouldn't be too affected by them as these are internal changes.
961
962### Pool options types declaration merge
963
964`FixedThreadPoolOptions` and `DynamicThreadPoolOptions` type declarations have been merged to `PoolOptions<Worker>`.
965
966#### New `export` strategy
967
968```js
969// Before
970const DynamicThreadPool = require('poolifier/lib/dynamic')
971// After
972const { DynamicThreadPool } = require('poolifier/lib/dynamic')
973```
974
975But you should always prefer just using
976
977```js
978const { DynamicThreadPool } = require('poolifier')
979```
980
981#### New type definitions for input data and response
982
983For cluster worker and worker-thread pools, you can now only send and receive structured-cloneable data.
984_This is not a limitation by poolifier but Node.js._
985
986#### Public property replacements
987
988`numWorkers` property is now `numberOfWorkers`
989
990#### Internal (protected) properties and methods renaming
991
992These properties are not intended for end users
993
994- `id` => `nextMessageId`
995
996These methods are not intended for end users
997
998- `_chooseWorker` => `chooseWorker`
999- `_newWorker` => `createWorker`
1000- `_execute` => `internalExecute`
1001- `_chooseWorker` => `chooseWorker`
1002- `_checkAlive` => `checkAlive`
1003- `_run` => `run`
1004- `_runAsync` => `runAsync`
1005
1006## [1.1.0] - 2020-05-21
1007
1008### Added
1009
1010- ThreadWorker support async functions as option
1011- Various external library patches
1012
1013## [1.0.0] - 2020-01-24
1014
1015### Added
1016
1017- FixedThreadPool implementation
1018- DynamicThreadPool implementation
1019- WorkerThread implementation to improve developer experience