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