Merge branch 'master' of github.com:poolifier/poolifier
[poolifier.git] / CHANGELOG.md
1 # Changelog
2
3 All notable changes to this project will be documented in this file.
4
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).
7
8 ## [2.2.1] - 2022-05-01
9
10 ### Added
11
12 - Dynamic worker choice strategy change at runtime.
13
14 ## [2.2.0] - 2022-05-01
15
16 ### Breaking Changes
17
18 - Support only NodeJS version 16.x.x for cluster pool: upstream cluster API have changed on that version.
19
20 ## [2.1.0] - 2021-29-08
21
22 ### Added
23
24 - Add an optional pool option `messageHandler` to `PoolOptions<Worker>` for registering a message handler callback on each worker.
25
26 ### Breaking Changes
27
28 - `AbstractWorker` class `maxInactiveTime`, `killBehavior` and `async` attributes have been removed in favour of the same ones in the worker options `opts` public attribute.
29 - `AbstractWorker` class `lastTask` attribute have been renamed to `lastTaskTimestamp`.
30 - `AbstractWorker` class `interval` attribute have been renamed to `aliveInterval`.
31 - `AbstractWorker` class cannot be instantiated without specifying the `mainWorker` argument referencing the main worker.
32
33 ## [2.0.2] - 2021-12-05
34
35 ### Bug fixes
36
37 - Fix `busy` event emission on fixed pool type
38
39 ## [2.0.1] - 2021-16-03
40
41 ### Bug fixes
42
43 - Check if pool options are properly set.
44 - `busy` event is emitted on all pool types.
45
46 ## [2.0.0] - 2021-01-03
47
48 ### Bug fixes
49
50 - Now a thread/process by default is not deleted when the task submitted take more time than maxInactiveTime configured (issue #70).
51
52 ### Breaking Changes
53
54 - `FullPool` event is now renamed to `busy`.
55 - `maxInactiveTime` on `ThreadWorker` default behavior is now changed, if you want to keep the old behavior set `killBehavior` to `KillBehaviors.HARD`.
56 _Find more details on our JSDoc._
57
58 - `maxTasks` option on `FixedThreadPool` and `DynamicThreadPool` is now removed since is no more needed.
59
60 - We changed some internal structures, but you shouldn't be too affected by them as these are internal changes.
61
62 ### Pool options types declaration merge
63
64 `FixedThreadPoolOptions` and `DynamicThreadPoolOptions` type declarations have been merged to `PoolOptions<Worker>`.
65
66 #### New `export` strategy
67
68 ```js
69 // Before
70 const DynamicThreadPool = require('poolifier/lib/dynamic')
71 // After
72 const { DynamicThreadPool } = require('poolifier/lib/dynamic')
73 ```
74
75 But you should always prefer just using
76
77 ```js
78 const { DynamicThreadPool } = require('poolifier')
79 ```
80
81 #### New type definitions for input data and response
82
83 For cluster worker and worker-thread pools, you can now only send and receive serializable data.
84 _This is not a limitation by poolifier but NodeJS._
85
86 #### Public property replacements
87
88 `numWorkers` property is now `numberOfWorkers`
89
90 #### Internal (protected) properties and methods renaming
91
92 These properties are not intended for end users
93
94 - `id` => `nextMessageId`
95
96 These methods are not intended for end users
97
98 - `_chooseWorker` => `chooseWorker`
99 - `_newWorker` => `createWorker`
100 - `_execute` => `internalExecute`
101 - `_chooseWorker` => `chooseWorker`
102 - `_checkAlive` => `checkAlive`
103 - `_run` => `run`
104 - `_runAsync` => `runAsync`
105
106 ## [1.1.0] - 2020-21-05
107
108 ### Added
109
110 - ThreadWorker support async functions as option
111 - Various external library patches
112
113 ## [1.0.0] - 2020-24-01
114
115 ### Added
116
117 - FixedThreadPool implementation
118 - DynamicThreadPool implementation
119 - WorkerThread implementation to improve developer experience