README.md: fix badge link
[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 ## [Unreleased]
9
10 ## [2.3.6] - 2022-10-22
11
12 ### Changed
13
14 - Cleanup pool attributes and methods.
15 - Refine error types thrown.
16
17 ### Fixed
18
19 - Fix continuous integration build on windows.
20 - Fix code coverage reporting by using c8 instead of nyc.
21
22 ## [2.3.5] - 2022-10-21
23
24 ### Changed
25
26 - Improve benchmarks: add IO intensive task workload, add task size option, integrate code into linter.
27 - Optimize tasks usage lookup implementation.
28
29 ### Fixed
30
31 - Fix missed pool event emitter type export.
32 - Fix typedoc documentation generation.
33
34 ## [2.3.4] - 2022-10-17
35
36 ### Added
37
38 - Fully automate release process with release-it.
39
40 ### Changed
41
42 - Optimize fair share task scheduling algorithm implementation.
43 - Update benchmarks versus external pools results with latest version.
44
45 ## [2.3.3] - 2022-10-15
46
47 ### Added
48
49 - Add support for [cluster settings](https://nodejs.org/api/cluster.html#cluster_cluster_settings) in cluster pool options.
50
51 ## [2.3.2] - 2022-10-14
52
53 ### Changed
54
55 - Optimize fair share worker selection strategy implementation.
56
57 ### Fixed
58
59 - Fix WRR worker selection strategy: ensure the condition triggering the round robin can be fulfilled.
60
61 ## [2.3.1] - 2022-10-13
62
63 ### Added
64
65 - Pool worker choice strategies:
66 - `WorkerChoiceStrategies.WEIGHTED_ROUND_ROBIN` strategy based on weighted round robin scheduling algorithm using tasks execution time for now.
67 - `WorkerChoiceStrategies.FAIR_SHARE` strategy based on fair share scheduling algorithm using tasks execution time for now.
68
69 ## [2.2.2] - 2022-10-09
70
71 ### Fixed
72
73 - Fixed `README.md` file.
74
75 ## [2.2.1] - 2022-10-08
76
77 ### Added
78
79 - Dynamic worker choice strategy change at runtime.
80
81 ## [2.2.0] - 2022-01-05
82
83 ### Breaking Changes
84
85 - Support only NodeJS version 16.x.x for cluster pool: upstream cluster API have changed on that version.
86
87 ## [2.1.0] - 2021-08-29
88
89 ### Added
90
91 - Add an optional pool option `messageHandler` to `PoolOptions<Worker>` for registering a message handler callback on each worker.
92
93 ### Breaking Changes
94
95 - `AbstractWorker` class `maxInactiveTime`, `killBehavior` and `async` attributes have been removed in favour of the same ones in the worker options `opts` public attribute.
96 - `AbstractWorker` class `lastTask` attribute have been renamed to `lastTaskTimestamp`.
97 - `AbstractWorker` class `interval` attribute have been renamed to `aliveInterval`.
98 - `AbstractWorker` class cannot be instantiated without specifying the `mainWorker` argument referencing the main worker.
99
100 ## [2.0.2] - 2021-05-12
101
102 ### Bug fixes
103
104 - Fix `busy` event emission on fixed pool type
105
106 ## [2.0.1] - 2021-03-16
107
108 ### Bug fixes
109
110 - Check if pool options are properly set.
111 - `busy` event is emitted on all pool types.
112
113 ## [2.0.0] - 2021-03-01
114
115 ### Bug fixes
116
117 - Now a thread/process by default is not deleted when the task submitted take more time than maxInactiveTime configured (issue #70).
118
119 ### Breaking Changes
120
121 - `FullPool` event is now renamed to `busy`.
122 - `maxInactiveTime` on `ThreadWorker` default behavior is now changed, if you want to keep the old behavior set `killBehavior` to `KillBehaviors.HARD`.
123 _Find more details on our JSDoc._
124
125 - `maxTasks` option on `FixedThreadPool` and `DynamicThreadPool` is now removed since is no more needed.
126
127 - We changed some internal structures, but you shouldn't be too affected by them as these are internal changes.
128
129 ### Pool options types declaration merge
130
131 `FixedThreadPoolOptions` and `DynamicThreadPoolOptions` type declarations have been merged to `PoolOptions<Worker>`.
132
133 #### New `export` strategy
134
135 ```js
136 // Before
137 const DynamicThreadPool = require('poolifier/lib/dynamic')
138 // After
139 const { DynamicThreadPool } = require('poolifier/lib/dynamic')
140 ```
141
142 But you should always prefer just using
143
144 ```js
145 const { DynamicThreadPool } = require('poolifier')
146 ```
147
148 #### New type definitions for input data and response
149
150 For cluster worker and worker-thread pools, you can now only send and receive serializable data.
151 _This is not a limitation by poolifier but NodeJS._
152
153 #### Public property replacements
154
155 `numWorkers` property is now `numberOfWorkers`
156
157 #### Internal (protected) properties and methods renaming
158
159 These properties are not intended for end users
160
161 - `id` => `nextMessageId`
162
163 These methods are not intended for end users
164
165 - `_chooseWorker` => `chooseWorker`
166 - `_newWorker` => `createWorker`
167 - `_execute` => `internalExecute`
168 - `_chooseWorker` => `chooseWorker`
169 - `_checkAlive` => `checkAlive`
170 - `_run` => `run`
171 - `_runAsync` => `runAsync`
172
173 ## [1.1.0] - 2020-05-21
174
175 ### Added
176
177 - ThreadWorker support async functions as option
178 - Various external library patches
179
180 ## [1.0.0] - 2020-01-24
181
182 ### Added
183
184 - FixedThreadPool implementation
185 - DynamicThreadPool implementation
186 - WorkerThread implementation to improve developer experience