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