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