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