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