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.0.0/),
6 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
8 ## [2.2.0] - 2022-05-01
12 - Support only NodeJS version 16.x.x for cluster pool: upstream cluster API have changed on that version.
14 ## [2.1.0] - 2021-29-08
18 - Add an optional pool option `messageHandler` to `PoolOptions<Worker>` for registering a message handler callback on each worker.
22 - `AbstractWorker` class `maxInactiveTime`, `killBehavior` and `async` attributes have been removed in favour of the same ones in the worker options `opts` public attribute.
23 - `AbstractWorker` class `lastTask` attribute have been renamed to `lastTaskTimestamp`.
24 - `AbstractWorker` class `interval` attribute have been renamed to `aliveInterval`.
25 - `AbstractWorker` class cannot be instantiated without specifying the `mainWorker` argument referencing the main worker.
27 ## [2.0.2] - 2021-12-05
31 - Fix `busy` event emission on fixed pool type
33 ## [2.0.1] - 2021-16-03
37 - Check if pool options are properly set.
38 - `busy` event is emitted on all pool types.
40 ## [2.0.0] - 2021-01-03
44 - Now a thread/process by default is not deleted when the task submitted take more time than maxInactiveTime configured (issue #70).
48 - `FullPool` event is now renamed to `busy`.
49 - `maxInactiveTime` on `ThreadWorker` default behavior is now changed, if you want to keep the old behavior set `killBehavior` to `KillBehaviors.HARD`.
50 _Find more details on our JSDoc._
52 - `maxTasks` option on `FixedThreadPool` and `DynamicThreadPool` is now removed since is no more needed.
54 - We changed some internal structures, but you shouldn't be too affected by them as these are internal changes.
56 ### Pool options types declaration merge
58 `FixedThreadPoolOptions` and `DynamicThreadPoolOptions` type declarations have been merged to `PoolOptions<Worker>`.
60 #### New `export` strategy
64 const DynamicThreadPool = require('poolifier/lib/dynamic')
66 const { DynamicThreadPool } = require('poolifier/lib/dynamic')
69 But you should always prefer just using
72 const { DynamicThreadPool } = require('poolifier')
75 #### New type definitions for input data and response
77 For cluster worker and worker-thread pools, you can now only send and receive serializable data.
78 _This is not a limitation by poolifier but NodeJS._
80 #### Public property replacements
82 `numWorkers` property is now `numberOfWorkers`
84 #### Internal (protected) properties and methods renaming
86 These properties are not intended for end users
88 - `id` => `nextMessageId`
90 These methods are not intended for end users
92 - `_chooseWorker` => `chooseWorker`
93 - `_newWorker` => `createWorker`
94 - `_execute` => `internalExecute`
95 - `_chooseWorker` => `chooseWorker`
96 - `_checkAlive` => `checkAlive`
98 - `_runAsync` => `runAsync`
100 ## [1.1.0] - 2020-21-05
104 - ThreadWorker support async functions as option
105 - Various external library patches
107 ## [1.0.0] - 2020-24-01
111 - FixedThreadPool implementation
112 - DynamicThreadPool implementation
113 - WorkerThread implementation to improve developer experience