refactor: cleanup enums namespace
[poolifier.git] / CHANGELOG.md
... / ...
CommitLineData
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.1.0/),
6and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
8## [Unreleased]
9
10## [2.5.2] - 2023-06-02
11
12### Added
13
14- Add `taskError` pool event for task execution error.
15- Add pool information `info` property to pool.
16- Emit pool information on `busy` and `full` pool events.
17
18## [2.5.1] - 2023-06-01
19
20### Added
21
22- Add pool option `restartWorkerOnError` to restart worker on uncaught error. Default to `true`.
23- Add `error` pool event for uncaught worker error.
24
25## [2.5.0] - 2023-05-31
26
27### Added
28
29- Switch pool event emitter to `EventEmitterAsyncResource`.
30- Add tasks wait time accounting in per worker tasks usage.
31- Add interleaved weighted round robin worker choice strategy (experimental).
32
33### Changed
34
35- Renamed worker choice strategy `LESS_BUSY` to `LEAST_BUSY` and `LESS_USED` to `LEAST_USED`.
36
37## [2.4.14] - 2023-05-09
38
39### Fixed
40
41- Ensure no undefined task runtime can land in the tasks history.
42- Fix median computation implementation once again.
43
44### Added
45
46- Unit tests for median and queue implementations.
47
48## [2.4.13] - 2023-05-08
49
50### Fixed
51
52- Fix worker choice strategy options validation.
53- Fix fair share worker choice strategy internals update: ensure virtual task end timestamp is computed at task submission.
54
55## [2.4.12] - 2023-05-06
56
57### Added
58
59- Support multiple task functions per worker.
60- Add custom worker weights support to worker choice strategies options.
61
62### Changed
63
64- Use O(1) queue implementation for tasks queueing.
65
66### Fixed
67
68- Fix median computation implementation.
69- Fix fair share worker choice strategy internals update.
70
71## [2.4.11] - 2023-04-23
72
73### Changed
74
75- Optimize free worker finding in worker choice strategies.
76
77## [2.4.10] - 2023-04-15
78
79### Fixed
80
81- Fix typescript type definition for worker function: ensure the input data is optional.
82- Fix typescript type definition for pool execute(): ensure the input data is optional.
83
84## [2.4.9] - 2023-04-15
85
86### Added
87
88- Add tasks queue enablement runtime setter to pool.
89- Add tasks queue options runtime setter to pool.
90- Add worker choice strategy options runtime setter to pool.
91
92### Changed
93
94- Remove the tasks queuing experimental status.
95
96### Fixed
97
98- Fix worker function type definition and validation.
99- Fix worker choice strategy options handling.
100
101## [2.4.8] - 2023-04-12
102
103### Fixed
104
105- Fix message between main worker and worker type definition for tasks.
106- Fix code documentation.
107
108## [2.4.7] - 2023-04-11
109
110### Added
111
112- Add worker tasks queue options to pool options.
113
114### Fixed
115
116- Fix missing documentation.
117
118## [2.4.6] - 2023-04-10
119
120### Fixed
121
122- Ensure one task at a time is executed per worker with tasks queueing enabled.
123- Properly count worker running tasks with tasks queueing enabled.
124
125## [2.4.5] - 2023-04-09
126
127### Added
128
129- Use monotonic high resolution timer for worker tasks runtime.
130- Add worker tasks median runtime to statistics.
131- Add worker tasks queue (experimental).
132
133## [2.4.4] - 2023-04-07
134
135### Added
136
137- Add `PoolEvents` enumeration and `PoolEvent` type.
138
139### Fixed
140
141- Destroy worker only on alive check.
142
143## [2.4.3] - 2023-04-07
144
145### Fixed
146
147- Fix typedoc generation with inheritance.
148
149## [2.4.2] - 2023-04-06
150
151### Added
152
153- Add `full` event to dynamic pool.
154- Keep worker choice strategy in memory for conditional reuse.
155
156### Fixed
157
158- Fix possible negative worker key at worker removal in worker choice strategies.
159
160## [2.4.1] - 2023-04-05
161
162### Changed
163
164- Optimize worker choice strategy for dynamic pool.
165
166### Fixed
167
168- Ensure dynamic pool does not alter worker choice strategy expected behavior.
169
170## [2.4.0] - 2023-04-04
171
172### Added
173
174- Add `LESS_BUSY` worker choice strategy.
175
176### Changed
177
178- Optimize worker storage in pool.
179- Optimize worker alive status check.
180- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
181- Optimize `LESS_USED` worker choice strategy.
182- Update benchmarks versus external threads pools.
183- Optimize tasks usage statistics requirements for worker choice strategy.
184
185### Fixed
186
187- Ensure trimmable characters are checked at pool initialization.
188- Fix message id integer overflow.
189- Fix pool worker removal in worker choice strategy internals.
190- Fix package publication with pnpm.
191
192## [2.4.0-3] - 2023-04-04
193
194### Added
195
196- Add `LESS_BUSY` worker choice strategy.
197
198### Changed
199
200- Optimize worker storage in pool.
201- Optimize worker alive status check.
202- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
203- Optimize `LESS_USED` worker choice strategy.
204- Update benchmarks versus external threads pools.
205
206### Fixed
207
208- Ensure trimmable characters are checked at pool initialization.
209- Fix message id integer overflow.
210- Fix pool worker removal in worker choice strategy internals.
211- Fix package publication with pnpm.
212
213## [2.4.0-2] - 2023-04-03
214
215### Added
216
217- Add `LESS_BUSY` worker choice strategy.
218
219### Changed
220
221- Optimize worker storage in pool.
222- Optimize worker alive status check.
223- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
224- Optimize `LESS_USED` worker choice strategy.
225
226### Fixed
227
228- Ensure trimmable characters are checked at pool initialization.
229- Fix message id integer overflow.
230- Fix pool worker removal in worker choice strategy internals.
231- Fix package publication with pnpm.
232
233## [2.4.0-1] - 2023-04-03
234
235### Added
236
237- Add `LESS_BUSY` worker choice strategy.
238
239### Changed
240
241- Optimize worker storage in pool.
242- Optimize worker alive status check.
243- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
244- Optimize `LESS_USED` worker choice strategy.
245
246### Fixed
247
248- Ensure trimmable characters are checked at pool initialization.
249- Fix message id integer overflow.
250- Fix pool worker removal in worker choice strategy internals.
251
252## [2.4.0-0] - 2023-04-03
253
254### Added
255
256- Add `LESS_BUSY` worker choice strategy.
257
258### Changed
259
260- Optimize worker storage in pool.
261- Optimize worker alive status check.
262- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
263- Optimize `LESS_USED` worker choice strategy.
264
265### Fixed
266
267- Ensure trimmable characters are checked at pool initialization.
268- Fix message id integer overflow.
269- Fix pool worker removal in worker choice strategy internals.
270
271## [2.3.10] - 2023-03-18
272
273### Fixed
274
275- Fix `exports` syntax for ESM and CommonJS.
276
277### Changed
278
279- Permit SemVer pre-release publication.
280
281## [2.3.10-2] - 2023-03-18
282
283### Fixed
284
285- Fix `exports` syntax for ESM and CommonJS.
286
287## [2.3.10-1] - 2023-03-18
288
289### Changed
290
291- Permit SemVer pre-release publication.
292
293## [2.3.10-0] - 2023-03-18
294
295### Fixed
296
297- Fix `exports` syntax for ESM and CommonJS.
298
299## [2.3.9] - 2023-03-18
300
301### Changed
302
303- Introduce ESM module support along with CommonJS one.
304
305### Fixed
306
307- Fix brown paper bag bug referencing the same object literal.
308
309## [2.3.8] - 2023-03-18
310
311### Changed
312
313- Switch internal benchmarking code to benny.
314- Switch to TypeScript 5.x.x.
315- Switch rollup bundler plugins to core ones.
316- Switch to TSDoc syntax.
317- Enforce conventional commits.
318
319### Fixed
320
321- Fix random integer generator.
322- Fix worker choice strategy pool type identification at initialization.
323
324## [2.3.7] - 2022-10-23
325
326### Changed
327
328- Switch to open collective FOSS project funding platform.
329- Switch to ts-standard linter configuration on TypeScript code.
330
331### Fixed
332
333- Fixed missing async on pool execute method.
334- Fixed typing in TypeScript example.
335- Fixed types in unit tests.
336
337## [2.3.6] - 2022-10-22
338
339### Changed
340
341- Cleanup pool attributes and methods.
342- Refine error types thrown.
343
344### Fixed
345
346- Fix continuous integration build on windows.
347- Fix code coverage reporting by using c8 instead of nyc.
348
349## [2.3.5] - 2022-10-21
350
351### Changed
352
353- Improve benchmarks: add IO intensive task workload, add task size option, integrate code into linter.
354- Optimize tasks usage lookup implementation.
355
356### Fixed
357
358- Fix missed pool event emitter type export.
359- Fix typedoc documentation generation.
360
361## [2.3.4] - 2022-10-17
362
363### Added
364
365- Fully automate release process with release-it.
366
367### Changed
368
369- Optimize fair share task scheduling algorithm implementation.
370- Update benchmarks versus external pools results with latest version.
371
372## [2.3.3] - 2022-10-15
373
374### Added
375
376- Add support for [cluster settings](https://nodejs.org/api/cluster.html#cluster_cluster_settings) in cluster pool options.
377
378## [2.3.2] - 2022-10-14
379
380### Changed
381
382- Optimize fair share worker selection strategy implementation.
383
384### Fixed
385
386- Fix WRR worker selection strategy: ensure the condition triggering the round robin can be fulfilled.
387
388## [2.3.1] - 2022-10-13
389
390### Added
391
392- Pool worker choice strategies:
393 - `WorkerChoiceStrategies.WEIGHTED_ROUND_ROBIN` strategy based on weighted round robin scheduling algorithm using tasks execution time for now.
394 - `WorkerChoiceStrategies.FAIR_SHARE` strategy based on fair share scheduling algorithm using tasks execution time for now.
395
396## [2.2.2] - 2022-10-09
397
398### Fixed
399
400- Fixed `README.md` file.
401
402## [2.2.1] - 2022-10-08
403
404### Added
405
406- Dynamic worker choice strategy change at runtime.
407
408## [2.2.0] - 2022-01-05
409
410### Breaking Changes
411
412- Support only NodeJS version 16.x.x for cluster pool: upstream cluster API have changed on that version.
413
414## [2.1.0] - 2021-08-29
415
416### Added
417
418- Add an optional pool option `messageHandler` to `PoolOptions<Worker>` for registering a message handler callback on each worker.
419
420### Breaking Changes
421
422- `AbstractWorker` class `maxInactiveTime`, `killBehavior` and `async` attributes have been removed in favour of the same ones in the worker options `opts` public attribute.
423- `AbstractWorker` class `lastTask` attribute have been renamed to `lastTaskTimestamp`.
424- `AbstractWorker` class `interval` attribute have been renamed to `aliveInterval`.
425- `AbstractWorker` class cannot be instantiated without specifying the `mainWorker` argument referencing the main worker.
426
427## [2.0.2] - 2021-05-12
428
429### Bug fixes
430
431- Fix `busy` event emission on fixed pool type
432
433## [2.0.1] - 2021-03-16
434
435### Bug fixes
436
437- Check if pool options are properly set.
438- `busy` event is emitted on all pool types.
439
440## [2.0.0] - 2021-03-01
441
442### Bug fixes
443
444- Now a thread/process by default is not deleted when the task submitted take more time than maxInactiveTime configured (issue #70).
445
446### Breaking Changes
447
448- `FullPool` event is now renamed to `busy`.
449- `maxInactiveTime` on `ThreadWorker` default behavior is now changed, if you want to keep the old behavior set `killBehavior` to `KillBehaviors.HARD`.
450 _Find more details on our JSDoc._
451
452- `maxTasks` option on `FixedThreadPool` and `DynamicThreadPool` is now removed since is no more needed.
453
454- We changed some internal structures, but you shouldn't be too affected by them as these are internal changes.
455
456### Pool options types declaration merge
457
458`FixedThreadPoolOptions` and `DynamicThreadPoolOptions` type declarations have been merged to `PoolOptions<Worker>`.
459
460#### New `export` strategy
461
462```js
463// Before
464const DynamicThreadPool = require('poolifier/lib/dynamic')
465// After
466const { DynamicThreadPool } = require('poolifier/lib/dynamic')
467```
468
469But you should always prefer just using
470
471```js
472const { DynamicThreadPool } = require('poolifier')
473```
474
475#### New type definitions for input data and response
476
477For cluster worker and worker-thread pools, you can now only send and receive serializable data.
478_This is not a limitation by poolifier but NodeJS._
479
480#### Public property replacements
481
482`numWorkers` property is now `numberOfWorkers`
483
484#### Internal (protected) properties and methods renaming
485
486These properties are not intended for end users
487
488- `id` => `nextMessageId`
489
490These methods are not intended for end users
491
492- `_chooseWorker` => `chooseWorker`
493- `_newWorker` => `createWorker`
494- `_execute` => `internalExecute`
495- `_chooseWorker` => `chooseWorker`
496- `_checkAlive` => `checkAlive`
497- `_run` => `run`
498- `_runAsync` => `runAsync`
499
500## [1.1.0] - 2020-05-21
501
502### Added
503
504- ThreadWorker support async functions as option
505- Various external library patches
506
507## [1.0.0] - 2020-01-24
508
509### Added
510
511- FixedThreadPool implementation
512- DynamicThreadPool implementation
513- WorkerThread implementation to improve developer experience