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