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