3 All notable changes to this project will be documented in this file.
5 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
10 ## [3.1.1] - 2023-12-16
14 - Fix pool options TS type definition.
16 ## [3.1.0] - 2023-12-16
20 - TypeScript breaking change: merge ThreadPoolOptions and ClusterPoolOptions types into PoolOptions type.
22 ## [3.0.14] - 2023-12-13
26 - Fix possible null exception with worker_threads pools.
28 ## [3.0.13] - 2023-12-12
32 - Ensure worker choice strategy wait for worker nodes readiness.
36 - Remove infinite retries support in worker choice strategy to avoid configuration leading to possible infinite recursion or loop.
38 ## [3.0.12] - 2023-12-12
42 - Add infinite retries support in worker choice strategy.
44 ## [3.0.11] - 2023-12-11
48 - Ensure pool asynchronous resource properly track tasks execution.
50 ## [3.0.10] - 2023-12-08
54 - Add a fastpath when tasks stealing or redistribution is impossible.
56 ## [3.0.9] - 2023-11-26
60 - Remove all pool events listener at pool destroying.
61 - Remove all worker node events listener at worker node destroying.
62 - Fix worker node event emitter listeners handling memory leak at pool options runtime change.
64 ## [3.0.8] - 2023-11-25
68 - Ensure continuous tasks stealing on idle start at worker node idling.
70 ## [3.0.7] - 2023-11-24
74 - Make continuous tasks stealing start at worker node idling.
76 ## [3.0.6] - 2023-11-24
80 - Ensure pool statuses are checked at initialization, `start()` or `destroy()`.
81 - Ensure pool `ready` event can be emitted after several `start()/destroy()` cycles.
83 ## [3.0.5] - 2023-10-27
87 - Ensure pool `ready` event can be emitted only once.
89 ## [3.0.4] - 2023-10-20
93 - Switch to Bencher for benchmarking: [https://bencher.dev/perf/poolifier](https://bencher.dev/perf/poolifier).
94 - Use builtin retry mechanism in worker choice strategies instead of custom one.
96 ## [3.0.3] - 2023-10-19
100 - Avoid null exception at sending message to worker.
101 - Avoid null exception at checking worker node readiness.
103 ## [3.0.2] - 2023-10-17
107 - Fix race condition at dynamic worker node task assignment and scheduled removal. See issue [#1468](https://github.com/poolifier/poolifier/issues/1468) and [#1496](https://github.com/poolifier/poolifier/issues/1496).
109 ## [3.0.1] - 2023-10-16
113 - Workaround possible race condition at work nodes array element removal and querying. See issue [#1468](https://github.com/poolifier/poolifier/issues/1468).
117 - Switch the worker node eventing code to `EventTarget` API.
119 ## [3.0.0] - 2023-10-08
123 - Remove Node.js 16.x.x (EOL) support.
125 ## [2.7.5] - 2023-10-03
129 - Use `EventEmitterAsyncResource` type from `@types/node` for pool event emitter. TypeScript users will need to update to latest `@types/node` version.
131 ## [2.7.4] - 2023-09-25
135 - Fix source maps (bundler issue).
137 ## [2.7.3] - 2023-09-24
141 - Convert pool event emitter to event emitter async resource.
143 ## [2.7.2] - 2023-09-23
147 - Add source maps to npm package to ease debugging.
151 - Continuous benchmarking versus other worker pools: [https://poolifier.github.io/benchmark](https://poolifier.github.io/benchmark).
153 ## [2.7.1] - 2023-09-20
157 - Ensure worker message listener used one time are removed after usage.
159 ## [2.7.0] - 2023-09-19
163 - Fix task stealing related tasks queue options handling at runtime.
167 - Rename `listTaskFunctions()` to `listTaskFunctionNames()` in pool and worker API.
171 - Add `hasTaskFunction()`, `addTaskFunction()`, `removeTaskFunction()`, `setDefaultTaskFunction()` methods to pool API: [PR #1148](https://github.com/poolifier/poolifier/pull/1148).
172 - Stricter worker constructor arguments validation.
174 ## [2.6.45] - 2023-09-17
178 - Disable publication on GitHub packages registry on release until authentication issue is fixed.
182 - Add `startWorkers` to pool options to whether start the minimum number of workers at pool initialization or not.
183 - Add `start()` method to pool API to start the minimum number of workers.
184 - Add `taskStealing` and `tasksStealingOnPressure` to tasks queue options to whether enable task stealing or not and whether enable tasks stealing under back pressure or not.
185 - Continuous internal benchmarking: [https://poolifier.github.io/benchmark-results/dev/bench](https://poolifier.github.io/benchmark-results/dev/bench).
187 ## [2.6.44] - 2023-09-08
191 - Use a dedicated PAT to publish on GitHub packages registry.
195 - Publish on GitHub packages registry on release.
199 - Switch from rome to biome: [PR #1128](https://github.com/poolifier/poolifier/pull/1128).
201 ## [2.6.43] - 2023-09-08
205 - Publish on GitHub packages registry on release.
209 - Switch from rome to biome: [PR #1128](https://github.com/poolifier/poolifier/pull/1128).
211 ## [2.6.42] - 2023-09-06
215 - Optimize hot code paths implementation: avoid unnecessary branching, add and use optimized helpers (min, max), use reduce() array helper, ...
217 ## [2.6.41] - 2023-09-03
221 - Optimize worker choice strategies implementation.
223 ## [2.6.40] - 2023-09-01
227 - Do not pre-choose in WRR worker choice strategy to avoid bias.
228 - Avoid array out of bound in worker choice strategies after worker node removal.
230 ## [2.6.39] - 2023-08-30
234 - Fix race condition in worker choice strategies at worker node info querying while not yet initialized.
236 ## [2.6.38] - 2023-08-30
240 - Bundle typescript types declaration into one file.
244 - Improve interleaved weighted round robin worker choice strategy implementation.
246 ## [2.6.37] - 2023-08-28
250 - Ensure unused worker usage statistics are deleted at runtime.
254 - Rename worker choice strategy options `choiceRetries` to `retries`.
255 - Avoid unnecessary branching in worker choice strategies.
257 ## [2.6.36] - 2023-08-27
261 - Fix pool `execute()` arguments check.
265 - Make continuous tasks stealing algorithm less aggressive.
266 - Fine tune tasks stealing algorithm under back pressure.
268 ## [2.6.35] - 2023-08-25
272 - Don't account worker usage statistics for tasks that have failed.
273 - Fix pool information runtime and wait time median computation.
277 - Update simple moving average implementation to use a circular buffer.
278 - Update simple moving median implementation to use a circular buffer.
279 - Account for stolen tasks in worker usage statistics and pool information.
283 - Continuous tasks stealing algorithm.
285 ## [2.6.34] - 2023-08-24
289 - Avoid cascading tasks stealing under back pressure.
293 - Add fastpath to queued tasks rescheduling.
295 ## [2.6.33] - 2023-08-24
299 - Fix queued tasks rescheduling.
303 - Rename tasks queue options `queueMaxSize` to `size`.
307 - Task stealing scheduling algorithm if tasks queueing is enabled.
309 ## [2.6.32] - 2023-08-23
313 - Ensure no task can be executed when the pool is destroyed.
317 - Add `queueMaxSize` option to tasks queue options.
318 - Add O(1) deque implementation implemented with doubly linked list and use it for tasks queueing.
319 - Add tasks stealing algorithm when a worker node queue is back pressured if tasks queueing is enabled.
321 ## [2.6.31] - 2023-08-20
325 - Fix worker choice strategy retries mechanism in some edge cases.
329 - Make orthogonal worker choice strategies tasks distribution and created dynamic worker usage.
330 - Remove the experimental status of the `LEAST_ELU` worker choice strategy.
332 ## [2.6.30] - 2023-08-19
336 - Ensure pool event `backPressure` is emitted.
337 - Ensure pool event `full` is emitted only once.
338 - Ensure worker node cannot be instantiated without proper arguments.
340 ## [2.6.29] - 2023-08-18
344 - Fix race condition between readiness and task functions worker message handling at startup.
345 - Fix duplicate task function worker usage statistics computation per task function.
346 - Update task function worker usage statistics if and only if there's at least two different task functions.
347 - Fix race condition at task function worker usage executing task computation leading to negative value.
351 - 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).
352 - Use back pressure detection in worker choice strategies.
353 - Add worker choice strategies retries mechanism if no worker is eligible.
355 ## [2.6.28] - 2023-08-16
359 - Ensure pool workers are properly initialized.
363 - HTTP server pool examples: express-cluster, express-hybrid.
367 - Remove now useless branching in worker hot code path.
369 ## [2.6.27] - 2023-08-15
373 - Add `KillHandler` type definition to exported types.
377 - Add `destroy` event to pool API.
379 ## [2.6.26] - 2023-08-15
383 - Add kill handler to worker options allowing to execute custom code when worker is killed.
384 - Add `listTaskFunctions()` method to pool API.
385 - SMTP client pool example: nodemailer.
387 ## [2.6.25] - 2023-08-13
391 - HTTP server pool examples: fastify-cluster, fastify-hybrid.
392 - WebSocket server pool examples: ws-cluster, ws-hybrid.
394 ## [2.6.24] - 2023-08-12
398 - Add array of transferable objects to the `execute()` method arguments.
399 - WebSocket server pool examples: ws-worker_threads.
401 ## [2.6.23] - 2023-08-11
405 - 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.
409 - HTTP client pool examples: fetch, node-fetch and axios with multiple task functions.
410 - HTTP server pool examples: express-worker_threads, fastify-worker_threads.
412 ## [2.6.22] - 2023-08-10
416 - Add missing `types` field to package.json `exports`.
420 - Structure markdown documentation (PR #811).
422 ## [2.6.21] - 2023-08-03
426 - Improve code documentation.
427 - Code refactoring and cleanup for better maintainability and readability.
429 ## [2.6.20] - 2023-07-21
433 - Fix queued tasks redistribution on error task execution starvation.
434 - Ensure tasks queueing per worker condition is untangled from the pool busyness semantic.
438 - Drastically reduce lookups by worker in the worker nodes.
440 ## [2.6.19] - 2023-07-20
444 - Dedicated internal communication channel for worker_threads pools.
446 ## [2.6.18] - 2023-07-19
450 - Code refactoring and cleanup for better maintainability and readability. Bundle size is a bit smaller.
452 ## [2.6.17] - 2023-07-16
456 - Add `listTaskFunctions()` method to worker API.
458 ## [2.6.16] - 2023-07-12
462 - Fix pool startup detection.
463 - Fix worker task functions handling.
465 ## [2.6.15] - 2023-07-11
469 - Take into account worker node readiness in worker choice strategies.
471 ## [2.6.14] - 2023-07-10
475 - Fix task function statistics tracking.
477 ## [2.6.13] - 2023-07-10
481 - Add per task function statistics tracking.
482 - Add public methods to manipulate the worker task functions at runtime.
484 ## [2.6.12] - 2023-07-09
488 - Workaround import issue with `node:os` module in node 16.x.x.
490 ## [2.6.11] - 2023-07-09
494 - Fix pool readiness semantic.
496 ## [2.6.10] - 2023-07-08
500 - Ensure workers are not recreated on error at pool startup.
504 - Add `ready` and `strategy` fields to pool information.
505 - Add pool event `ready` to notify when the number of workers created in the pool has reached the maximum size expected and are ready.
506 - Add dynamic pool sizing checks.
508 ## [2.6.9] - 2023-07-07
512 - Recreate the right worker type on uncaught exception.
516 - Add minimum and maximum to internal measurement statistics.
517 - Add `runTime` and `waitTime` to pool information.
518 - Check worker inactive time only on dynamic worker.
520 ## [2.6.8] - 2023-07-03
524 - Brown paper bag release to fix version handling in pool information.
526 ## [2.6.7] - 2023-07-03
530 - Ensure worker queued tasks at error are reassigned to other pool workers.
534 - Add pool `utilization` ratio to pool information.
535 - Add `version` to pool information.
536 - Add worker information to worker nodes.
538 ## [2.6.6] - 2023-07-01
542 - Add safe helper `availableParallelism()` to help sizing the pool.
546 - Ensure message handler is only registered in worker.
548 ## [2.6.5] - 2023-06-27
552 - Cluster pools tasks execution are not working by using ESM files extension: https://github.com/poolifier/poolifier/issues/782
556 - Artificial version bump to 2.6.5 to workaround publication issue.
557 - Ensure cluster pool `destroy()` gracefully shutdowns worker's server.
558 - Ensure pool event is emitted before task error promise rejection.
559 - Fix queued tasks count computation.
563 - Remove unneeded worker_threads worker `MessageChannel` internal usage for IPC.
565 ## [2.6.4] - 2023-06-27
569 - Cluster pools tasks execution are not working by using ESM files extension: https://github.com/poolifier/poolifier/issues/782
573 - Ensure cluster pool `destroy()` gracefully shutdowns worker's server.
574 - Ensure pool event is emitted before task error promise rejection.
575 - Fix queued tasks count computation.
579 - Remove unneeded worker_threads worker `MessageChannel` internal usage for IPC.
581 ## [2.6.3] - 2023-06-19
585 - Ensure no tasks are queued when trying to soft kill a dynamic worker.
586 - Update strategies internals after statistics computation.
590 - Optimize O(1) queue implementation.
592 ## [2.6.2] - 2023-06-12
596 - Fix new worker use after creation in dynamic pool given the current worker choice strategy.
598 ## [2.6.1] - 2023-06-10
602 - Add worker choice strategy documentation: [README.md](./docs/worker-choice-strategies.md).
606 - Fix average statistics computation: ensure failed tasks are not accounted.
608 ## [2.6.0] - 2023-06-09
612 - Add `LEAST_ELU` worker choice strategy (experimental).
613 - Add tasks ELU instead of runtime support to `FAIR_SHARE` worker choice strategy.
617 - Refactor pool worker node usage internals.
618 - Breaking change: refactor worker choice strategy statistics requirements: the syntax of the worker choice strategy options has changed.
619 - Breaking change: pool information `info` property object fields have been renamed.
623 - Fix wait time accounting.
624 - Ensure worker choice strategy `LEAST_BUSY` accounts also tasks wait time.
625 - Ensure worker choice strategy `LEAST_USED` accounts also queued tasks.
627 ## [2.5.4] - 2023-06-07
631 - Add Event Loop Utilization (ELU) statistics to worker tasks usage.
635 - Compute statistics at the worker level only if needed.
636 - Add `worker_threads` options to thread pool options.
640 - Make the `LEAST_BUSY` strategy only relies on task runtime.
642 ## [2.5.3] - 2023-06-04
646 - Refine pool information content.
647 - Limit pool internals public exposure.
649 ## [2.5.2] - 2023-06-02
653 - Add `taskError` pool event for task execution error.
654 - Add pool information `info` property to pool.
655 - Emit pool information on `busy` and `full` pool events.
657 ## [2.5.1] - 2023-06-01
661 - Add pool option `restartWorkerOnError` to restart worker on uncaught error. Default to `true`.
662 - Add `error` pool event for uncaught worker error.
664 ## [2.5.0] - 2023-05-31
668 - Switch pool event emitter to `EventEmitterAsyncResource`.
669 - Add tasks wait time accounting in per worker tasks usage.
670 - Add interleaved weighted round robin `INTERLEAVED_WEIGHTED_ROUND_ROBIN` worker choice strategy (experimental).
674 - Renamed worker choice strategy `LESS_BUSY` to `LEAST_BUSY` and `LESS_USED` to `LEAST_USED`.
676 ## [2.4.14] - 2023-05-09
680 - Ensure no undefined task runtime can land in the tasks history.
681 - Fix median computation implementation once again.
685 - Unit tests for median and queue implementations.
687 ## [2.4.13] - 2023-05-08
691 - Fix worker choice strategy options validation.
692 - Fix fair share worker choice strategy internals update: ensure virtual task end timestamp is computed at task submission.
694 ## [2.4.12] - 2023-05-06
698 - Support multiple task functions per worker.
699 - Add custom worker weights support to worker choice strategies options.
703 - Use O(1) queue implementation for tasks queueing.
707 - Fix median computation implementation.
708 - Fix fair share worker choice strategy internals update.
710 ## [2.4.11] - 2023-04-23
714 - Optimize free worker finding in worker choice strategies.
716 ## [2.4.10] - 2023-04-15
720 - Fix typescript type definition for task function: ensure the input data is optional.
721 - Fix typescript type definition for pool execute(): ensure the input data is optional.
723 ## [2.4.9] - 2023-04-15
727 - Add tasks queue enablement runtime setter to pool.
728 - Add tasks queue options runtime setter to pool.
729 - Add worker choice strategy options runtime setter to pool.
733 - Remove the tasks queuing experimental status.
737 - Fix task function type definition and validation.
738 - Fix worker choice strategy options handling.
740 ## [2.4.8] - 2023-04-12
744 - Fix message between main worker and worker type definition for tasks.
745 - Fix code documentation.
747 ## [2.4.7] - 2023-04-11
751 - Add worker tasks queue options to pool options.
755 - Fix missing documentation.
757 ## [2.4.6] - 2023-04-10
761 - Ensure one task at a time is executed per worker with tasks queueing enabled.
762 - Properly count worker executing tasks with tasks queueing enabled.
764 ## [2.4.5] - 2023-04-09
768 - Use monotonic high resolution timer for worker tasks runtime.
769 - Add worker tasks median runtime to statistics.
770 - Add worker tasks queue (experimental).
772 ## [2.4.4] - 2023-04-07
776 - Add `PoolEvents` enumeration and `PoolEvent` type.
780 - Destroy worker only on alive check.
782 ## [2.4.3] - 2023-04-07
786 - Fix typedoc generation with inheritance.
788 ## [2.4.2] - 2023-04-06
792 - Add `full` event to dynamic pool.
793 - Keep worker choice strategy in memory for conditional reuse.
797 - Fix possible negative worker key at worker removal in worker choice strategies.
799 ## [2.4.1] - 2023-04-05
803 - Optimize worker choice strategy for dynamic pool.
807 - Ensure dynamic pool does not alter worker choice strategy expected behavior.
809 ## [2.4.0] - 2023-04-04
813 - Add `LESS_BUSY` worker choice strategy.
817 - Optimize worker storage in pool.
818 - Optimize worker alive status check.
819 - BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
820 - Optimize `LESS_USED` worker choice strategy.
821 - Update benchmark versus external threads pools.
822 - Optimize tasks usage statistics requirements for worker choice strategy.
826 - Ensure trimmable characters are checked at pool initialization.
827 - Fix message id integer overflow.
828 - Fix pool worker removal in worker choice strategy internals.
829 - Fix package publication with pnpm.
831 ## [2.4.0-3] - 2023-04-04
835 - Add `LESS_BUSY` worker choice strategy.
839 - Optimize worker storage in pool.
840 - Optimize worker alive status check.
841 - BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
842 - Optimize `LESS_USED` worker choice strategy.
843 - Update benchmark versus external threads pools.
847 - Ensure trimmable characters are checked at pool initialization.
848 - Fix message id integer overflow.
849 - Fix pool worker removal in worker choice strategy internals.
850 - Fix package publication with pnpm.
852 ## [2.4.0-2] - 2023-04-03
856 - Add `LESS_BUSY` worker choice strategy.
860 - Optimize worker storage in pool.
861 - Optimize worker alive status check.
862 - BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
863 - Optimize `LESS_USED` worker choice strategy.
867 - Ensure trimmable characters are checked at pool initialization.
868 - Fix message id integer overflow.
869 - Fix pool worker removal in worker choice strategy internals.
870 - Fix package publication with pnpm.
872 ## [2.4.0-1] - 2023-04-03
876 - Add `LESS_BUSY` worker choice strategy.
880 - Optimize worker storage in pool.
881 - Optimize worker alive status check.
882 - BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
883 - Optimize `LESS_USED` worker choice strategy.
887 - Ensure trimmable characters are checked at pool initialization.
888 - Fix message id integer overflow.
889 - Fix pool worker removal in worker choice strategy internals.
891 ## [2.4.0-0] - 2023-04-03
895 - Add `LESS_BUSY` worker choice strategy.
899 - Optimize worker storage in pool.
900 - Optimize worker alive status check.
901 - BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
902 - Optimize `LESS_USED` worker choice strategy.
906 - Ensure trimmable characters are checked at pool initialization.
907 - Fix message id integer overflow.
908 - Fix pool worker removal in worker choice strategy internals.
910 ## [2.3.10] - 2023-03-18
914 - Fix package.json `exports` syntax for ESM and CommonJS.
918 - Permit SemVer pre-release publication.
920 ## [2.3.10-2] - 2023-03-18
924 - Fix package.json `exports` syntax for ESM and CommonJS.
926 ## [2.3.10-1] - 2023-03-18
930 - Permit SemVer pre-release publication.
932 ## [2.3.10-0] - 2023-03-18
936 - Fix package.json `exports` syntax for ESM and CommonJS.
938 ## [2.3.9] - 2023-03-18
942 - Introduce ESM module support along with CommonJS one.
946 - Fix brown paper bag bug referencing the same object literal.
948 ## [2.3.8] - 2023-03-18
952 - Switch internal benchmarking code to benny.
953 - Switch to TypeScript 5.x.x.
954 - Switch rollup bundler plugins to core ones.
955 - Switch to TSDoc syntax.
956 - Enforce conventional commits.
960 - Fix random integer generator.
961 - Fix worker choice strategy pool type identification at initialization.
963 ## [2.3.7] - 2022-10-23
967 - Switch to open collective FOSS project funding platform.
968 - Switch to ts-standard linter configuration on TypeScript code.
972 - Fixed missing async on pool execute method.
973 - Fixed typing in TypeScript example.
974 - Fixed types in unit tests.
976 ## [2.3.6] - 2022-10-22
980 - Cleanup pool attributes and methods.
981 - Refine error types thrown.
985 - Fix continuous integration build on windows.
986 - Fix code coverage reporting by using c8 instead of nyc.
988 ## [2.3.5] - 2022-10-21
992 - Improve benchmarks: add IO intensive task workload, add task size option, integrate code into linter.
993 - Optimize tasks usage lookup implementation.
997 - Fix missed pool event emitter type export.
998 - Fix typedoc documentation generation.
1000 ## [2.3.4] - 2022-10-17
1004 - Fully automate release process with release-it.
1008 - Optimize fair share task scheduling algorithm implementation.
1009 - Update benchmark versus external pools results with latest version.
1011 ## [2.3.3] - 2022-10-15
1015 - Add support for [cluster settings](https://nodejs.org/api/cluster.html#cluster_cluster_settings) in cluster pool options.
1017 ## [2.3.2] - 2022-10-14
1021 - Optimize fair share worker selection strategy implementation.
1025 - Fix WRR worker selection strategy: ensure the condition triggering the round robin can be fulfilled.
1027 ## [2.3.1] - 2022-10-13
1031 - Pool worker choice strategies:
1032 - `WorkerChoiceStrategies.WEIGHTED_ROUND_ROBIN` strategy based on weighted round robin scheduling algorithm using tasks execution time for now.
1033 - `WorkerChoiceStrategies.FAIR_SHARE` strategy based on fair share scheduling algorithm using tasks execution time for now.
1035 ## [2.2.2] - 2022-10-09
1039 - Fixed `README.md` file.
1041 ## [2.2.1] - 2022-10-08
1045 - Dynamic worker choice strategy change at runtime.
1047 ## [2.2.0] - 2022-01-05
1049 ### Breaking Changes
1051 - Support only Node.js version 16.x.x for cluster pool: upstream cluster API have changed on that version.
1053 ## [2.1.0] - 2021-08-29
1057 - Add an optional pool option `messageHandler` to `PoolOptions<Worker>` for registering a message handler callback on each worker.
1059 ### Breaking Changes
1061 - `AbstractWorker` class `maxInactiveTime`, `killBehavior` and `async` attributes have been removed in favour of the same ones in the worker options `opts` public attribute.
1062 - `AbstractWorker` class `lastTask` attribute have been renamed to `lastTaskTimestamp`.
1063 - `AbstractWorker` class `interval` attribute have been renamed to `aliveInterval`.
1064 - `AbstractWorker` class cannot be instantiated without specifying the `mainWorker` argument referencing the main worker.
1066 ## [2.0.2] - 2021-05-12
1070 - Fix `busy` event emission on fixed pool type
1072 ## [2.0.1] - 2021-03-16
1076 - Check if pool options are properly set.
1077 - `busy` event is emitted on all pool types.
1079 ## [2.0.0] - 2021-03-01
1083 - Now a thread/process by default is not deleted when the task submitted take more time than maxInactiveTime configured (issue #70).
1085 ### Breaking Changes
1087 - `FullPool` event is now renamed to `busy`.
1088 - `maxInactiveTime` on `ThreadWorker` default behavior is now changed, if you want to keep the old behavior set `killBehavior` to `KillBehaviors.HARD`.
1089 _Find more details on our JSDoc._
1091 - `maxTasks` option on `FixedThreadPool` and `DynamicThreadPool` is now removed since is no more needed.
1093 - We changed some internal structures, but you shouldn't be too affected by them as these are internal changes.
1095 ### Pool options types declaration merge
1097 `FixedThreadPoolOptions` and `DynamicThreadPoolOptions` type declarations have been merged to `PoolOptions<Worker>`.
1099 #### New `export` strategy
1103 const DynamicThreadPool = require('poolifier/lib/dynamic')
1105 const { DynamicThreadPool } = require('poolifier/lib/dynamic')
1108 But you should always prefer just using
1111 const { DynamicThreadPool } = require('poolifier')
1114 #### New type definitions for input data and response
1116 For cluster worker and worker-thread pools, you can now only send and receive structured-cloneable data.
1117 _This is not a limitation by poolifier but Node.js._
1119 #### Public property replacements
1121 `numWorkers` property is now `numberOfWorkers`
1123 #### Internal (protected) properties and methods renaming
1125 These properties are not intended for end users
1127 - `id` => `nextMessageId`
1129 These methods are not intended for end users
1131 - `_chooseWorker` => `chooseWorker`
1132 - `_newWorker` => `createWorker`
1133 - `_execute` => `internalExecute`
1134 - `_chooseWorker` => `chooseWorker`
1135 - `_checkAlive` => `checkAlive`
1137 - `_runAsync` => `runAsync`
1139 ## [1.1.0] - 2020-05-21
1143 - ThreadWorker support async functions as option
1144 - Various external library patches
1146 ## [1.0.0] - 2020-01-24
1150 - FixedThreadPool implementation
1151 - DynamicThreadPool implementation
1152 - WorkerThread implementation to improve developer experience