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