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