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