Merge branch 'master' of github.com:jerome-benoit/poolifier
[poolifier.git] / CHANGELOG.md
CommitLineData
522eea03 1# Changelog
2
3All notable changes to this project will be documented in this file.
4
d4abc60a 5The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
522eea03 6and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
45a5a54c
JB
8## [Unreleased]
9
a015ea40
JB
10## [2.4.0-2] - 2023-04-03
11
698f4bbc
JB
12### Added
13
14- Add `LESS_BUSY` worker choice strategy.
15
16### Changed
17
18- Optimize worker storage in pool.
19- Optimize worker alive status check.
20- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
21- Optimize `LESS_USED` worker choice strategy.
22
23### Fixed
24
25- Ensure trimmable characters are checked at pool initialization.
26- Fix message id integer overflow.
27- Fix pool worker removal in worker choice strategy internals.
28- Fix package publication with pnpm.
29
8fe15920
JB
30## [2.4.0-1] - 2023-04-03
31
5b301c28
JB
32### Added
33
34- Add `LESS_BUSY` worker choice strategy.
35
36### Changed
37
38- Optimize worker storage in pool.
39- Optimize worker alive status check.
40- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
41- Optimize `LESS_USED` worker choice strategy.
42
43### Fixed
44
45- Ensure trimmable characters are checked at pool initialization.
46- Fix message id integer overflow.
47- Fix pool worker removal in worker choice strategy internals.
48
2fb9ca9c
JB
49## [2.4.0-0] - 2023-04-03
50
168c526f
JB
51### Added
52
53- Add `LESS_BUSY` worker choice strategy.
54
1d71a908
JB
55### Changed
56
ffcbbad8 57- Optimize worker storage in pool.
1d71a908 58- Optimize worker alive status check.
65a60b3b 59- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
737c6d97 60- Optimize `LESS_USED` worker choice strategy.
1d71a908 61
ffcbbad8
JB
62### Fixed
63
64- Ensure trimmable characters are checked at pool initialization.
b4e75778 65- Fix message id integer overflow.
97a2abc3 66- Fix pool worker removal in worker choice strategy internals.
ffcbbad8 67
08372738
JB
68## [2.3.10] - 2023-03-18
69
710826bc
JB
70### Fixed
71
72- Fix `exports` syntax for ESM and CommonJS.
73
74### Changed
75
76- Permit SemVer pre-release publication.
76e5ac6f 77
e4796ecd
JB
78## [2.3.10-2] - 2023-03-18
79
6abad580
JB
80### Fixed
81
82- Fix `exports` syntax for ESM and CommonJS.
83
a2ee98cc
JB
84## [2.3.10-1] - 2023-03-18
85
7e060cee
JB
86### Changed
87
90483887 88- Permit SemVer pre-release publication.
7e060cee 89
c81bfafb
JB
90## [2.3.10-0] - 2023-03-18
91
fe18768d
JB
92### Fixed
93
94- Fix `exports` syntax for ESM and CommonJS.
95
d7b78217
JB
96## [2.3.9] - 2023-03-18
97
ed6dd37f
JB
98### Changed
99
100- Introduce ESM module support along with CommonJS one.
101
102### Fixed
103
104- Fix brown paper bag bug referencing the same object literal.
105
68e2ad86
JB
106## [2.3.8] - 2023-03-18
107
ca6c7d70
JB
108### Changed
109
110- Switch internal benchmarking code to benny.
fbdedeb9
JB
111- Switch to TypeScript 5.x.x.
112- Switch rollup bundler plugins to core ones.
ed6dd37f 113- Switch to TSDoc syntax.
fbdedeb9 114- Enforce conventional commits.
ca6c7d70 115
d15211d4
JB
116### Fixed
117
118- Fix random integer generator.
fbdedeb9 119- Fix worker choice strategy pool type identification at initialization.
d15211d4 120
995705ea
JB
121## [2.3.7] - 2022-10-23
122
b953022b
JB
123### Changed
124
125- Switch to open collective FOSS project funding platform.
78cea37e
JB
126- Switch to ts-standard linter configuration on TypeScript code.
127
128### Fixed
129
130- Fixed missing async on pool execute method.
131- Fixed typing in TypeScript example.
132- Fixed types in unit tests.
b953022b 133
3b9f6953
JB
134## [2.3.6] - 2022-10-22
135
f80cead4
JB
136### Changed
137
138- Cleanup pool attributes and methods.
139- Refine error types thrown.
140
141### Fixed
142
143- Fix continuous integration build on windows.
144- Fix code coverage reporting by using c8 instead of nyc.
145
efc22107
JB
146## [2.3.5] - 2022-10-21
147
7a6a0a96
JB
148### Changed
149
a05c10de
JB
150- Improve benchmarks: add IO intensive task workload, add task size option, integrate code into linter.
151- Optimize tasks usage lookup implementation.
7a6a0a96 152
b4904890
JB
153### Fixed
154
155- Fix missed pool event emitter type export.
156- Fix typedoc documentation generation.
157
a875f8d1
JB
158## [2.3.4] - 2022-10-17
159
73cda448
JB
160### Added
161
162- Fully automate release process with release-it.
163
45a5a54c
JB
164### Changed
165
73cda448 166- Optimize fair share task scheduling algorithm implementation.
eb4a8a82 167- Update benchmarks versus external pools results with latest version.
45a5a54c 168
90ee1b18 169## [2.3.3] - 2022-10-15
1a76932b
JB
170
171### Added
172
173- Add support for [cluster settings](https://nodejs.org/api/cluster.html#cluster_cluster_settings) in cluster pool options.
174
90ee1b18 175## [2.3.2] - 2022-10-14
11df3590
JB
176
177### Changed
178
179- Optimize fair share worker selection strategy implementation.
180
181### Fixed
182
183- Fix WRR worker selection strategy: ensure the condition triggering the round robin can be fulfilled.
184
90ee1b18 185## [2.3.1] - 2022-10-13
23ff945a
JB
186
187### Added
188
189- Pool worker choice strategies:
190 - `WorkerChoiceStrategies.WEIGHTED_ROUND_ROBIN` strategy based on weighted round robin scheduling algorithm using tasks execution time for now.
191 - `WorkerChoiceStrategies.FAIR_SHARE` strategy based on fair share scheduling algorithm using tasks execution time for now.
192
90ee1b18 193## [2.2.2] - 2022-10-09
cb2b6c69
JB
194
195### Fixed
196
197- Fixed `README.md` file.
198
90ee1b18 199## [2.2.1] - 2022-10-08
bdacc2d2 200
bdaf31cd
JB
201### Added
202
203- Dynamic worker choice strategy change at runtime.
bdacc2d2 204
90ee1b18 205## [2.2.0] - 2022-01-05
7e0d447f
JB
206
207### Breaking Changes
208
209- Support only NodeJS version 16.x.x for cluster pool: upstream cluster API have changed on that version.
210
90ee1b18 211## [2.1.0] - 2021-08-29
35cf1c03
JB
212
213### Added
214
215- Add an optional pool option `messageHandler` to `PoolOptions<Worker>` for registering a message handler callback on each worker.
e088a00c
JB
216
217### Breaking Changes
218
219- `AbstractWorker` class `maxInactiveTime`, `killBehavior` and `async` attributes have been removed in favour of the same ones in the worker options `opts` public attribute.
220- `AbstractWorker` class `lastTask` attribute have been renamed to `lastTaskTimestamp`.
221- `AbstractWorker` class `interval` attribute have been renamed to `aliveInterval`.
c365b2d3 222- `AbstractWorker` class cannot be instantiated without specifying the `mainWorker` argument referencing the main worker.
e088a00c 223
90ee1b18 224## [2.0.2] - 2021-05-12
14916bf9
JB
225
226### Bug fixes
227
228- Fix `busy` event emission on fixed pool type
229
90ee1b18 230## [2.0.1] - 2021-03-16
7f685093
JB
231
232### Bug fixes
233
234- Check if pool options are properly set.
235- `busy` event is emitted on all pool types.
236
90ee1b18 237## [2.0.0] - 2021-03-01
fa0f5b28 238
f3f833ab 239### Bug fixes
d63d3be3 240
ddbeaffd 241- Now a thread/process by default is not deleted when the task submitted take more time than maxInactiveTime configured (issue #70).
d63d3be3 242
fa0f5b28
S
243### Breaking Changes
244
7f685093 245- `FullPool` event is now renamed to `busy`.
1927ee67 246- `maxInactiveTime` on `ThreadWorker` default behavior is now changed, if you want to keep the old behavior set `killBehavior` to `KillBehaviors.HARD`.
1a81f8af 247 _Find more details on our JSDoc._
ddbeaffd 248
1927ee67
APA
249- `maxTasks` option on `FixedThreadPool` and `DynamicThreadPool` is now removed since is no more needed.
250
ddbeaffd 251- We changed some internal structures, but you shouldn't be too affected by them as these are internal changes.
fa0f5b28 252
ec2ccfc8
JB
253### Pool options types declaration merge
254
255`FixedThreadPoolOptions` and `DynamicThreadPoolOptions` type declarations have been merged to `PoolOptions<Worker>`.
256
fa0f5b28
S
257#### New `export` strategy
258
259```js
260// Before
777b7824 261const DynamicThreadPool = require('poolifier/lib/dynamic')
fa0f5b28 262// After
777b7824 263const { DynamicThreadPool } = require('poolifier/lib/dynamic')
fa0f5b28
S
264```
265
266But you should always prefer just using
267
268```js
777b7824 269const { DynamicThreadPool } = require('poolifier')
fa0f5b28
S
270```
271
d3c8a1a8
S
272#### New type definitions for input data and response
273
ec2ccfc8 274For cluster worker and worker-thread pools, you can now only send and receive serializable data.
d3c8a1a8
S
275_This is not a limitation by poolifier but NodeJS._
276
3a4b605f 277#### Public property replacements
5c5a1fb7 278
3a4b605f 279`numWorkers` property is now `numberOfWorkers`
5c5a1fb7 280
280c2a77 281#### Internal (protected) properties and methods renaming
fa0f5b28 282
280c2a77
S
283These properties are not intended for end users
284
285- `id` => `nextMessageId`
286
287These methods are not intended for end users
fa0f5b28
S
288
289- `_chooseWorker` => `chooseWorker`
280c2a77 290- `_newWorker` => `createWorker`
fa0f5b28
S
291- `_execute` => `internalExecute`
292- `_chooseWorker` => `chooseWorker`
293- `_checkAlive` => `checkAlive`
294- `_run` => `run`
295- `_runAsync` => `runAsync`
296
90ee1b18 297## [1.1.0] - 2020-05-21
0312f71a
APA
298
299### Added
300
301- ThreadWorker support async functions as option
cf9aa6c3 302- Various external library patches
0312f71a 303
90ee1b18 304## [1.0.0] - 2020-01-24
522eea03 305
306### Added
307
308- FixedThreadPool implementation
309- DynamicThreadPool implementation
0312f71a 310- WorkerThread implementation to improve developer experience