build: disable esModuleInterop from TS configuration
[poolifier.git] / CHANGELOG.md
CommitLineData
522eea03 1# Changelog
2
3All notable changes to this project will be documented in this file.
4
d4abc60a 5The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
522eea03 6and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
45a5a54c
JB
8## [Unreleased]
9
2845f2a5
JB
10### Fixed
11
12- Recreate the right worker type on uncaught exception.
13
14### Added
15
16- Add minimum and maximum to internal measurement statistics.
17
fc97d613
JB
18## [2.6.8] - 2023-07-03
19
92b1feaa
JB
20### Fixed
21
22- Brown paper bag release to fix version handling in pool information.
23
52d54060
JB
24## [2.6.7] - 2023-07-03
25
5bc91f3e
JB
26### Fixed
27
28- Ensure worker queued tasks at error are reassigned to other pool workers.
29
afe0d5bf
JB
30### Added
31
32- Add pool `utilization` ratio to pool information.
23ccf9d7 33- Add `version` to pool information.
e5b3047d 34- Add worker information to worker nodes.
afe0d5bf 35
f42c583f
JB
36## [2.6.6] - 2023-07-01
37
6961ca9a
JB
38### Added
39
40- Add safe helper `availableParallelism` to help sizing the pool.
41
3749facb
JB
42### Fixed
43
44- Ensure message handler is only registered in worker.
45
6fed2513
JB
46## [2.6.5] - 2023-06-27
47
c72f6987
JB
48### Known issues
49
70726c28 50- Cluster pools tasks execution are not working by using ESM files extension: https://github.com/poolifier/poolifier/issues/782
c72f6987
JB
51
52### Fixed
53
54- Artificial version bump to 2.6.5 to workaround publication issue.
55- Ensure cluster pool destroy() gracefully shutdowns worker's server.
56- Ensure pool event is emitted before task error promise rejection.
57- Fix queued tasks count computation.
58
59### Removed
60
61- Remove unneeded worker-threads worker `MessageChannel` internal usage for IPC.
62
6426631b
JB
63## [2.6.4] - 2023-06-27
64
941f9a7c
JB
65### Known issues
66
70726c28 67- Cluster pools tasks execution are not working by using ESM files extension: https://github.com/poolifier/poolifier/issues/782
941f9a7c 68
2c039e43
JB
69### Fixed
70
71- Ensure cluster pool destroy() gracefully shutdowns worker's server.
72- Ensure pool event is emitted before task error promise rejection.
9c16fb4b 73- Fix queued tasks count computation.
2c039e43 74
941f9a7c
JB
75### Removed
76
77- Remove unneeded worker-threads worker `MessageChannel` internal usage for IPC.
78
bc1b0765
JB
79## [2.6.3] - 2023-06-19
80
a6a2dc4c
JB
81### Fixed
82
83- Ensure no tasks are queued when trying to soft kill a dynamic worker.
f0d7f803 84- Update strategies internals after statistics computation.
a6a2dc4c 85
7b56f532
JB
86### Changed
87
88- Optimize O(1) queue implementation.
89
b628596c
JB
90## [2.6.2] - 2023-06-12
91
a9e89d00
JB
92### Fixed
93
94- Fix new worker use after creation in dynamic pool given the current worker choice strategy.
95
4368a898
JB
96## [2.6.1] - 2023-06-10
97
931d43e2
JB
98### Added
99
100- Add worker choice strategy documentation: [README.md](./src/pools/selection-strategies/README.md).
101
f1c06930
JB
102### Fixed
103
104- Fix average statistics computation: ensure failed tasks are not accounted.
105
16671b07
JB
106## [2.6.0] - 2023-06-09
107
a1347286
JB
108### Added
109
5af9c0f7 110- Add `LEAST_ELU` worker choice strategy (experimental).
9adcefab 111- Add tasks ELU instead of runtime support to `FAIR_SHARE` worker choice strategy.
a1347286 112
1c6fe997
JB
113### Changed
114
115- Refactor pool worker node usage internals.
477f48e7 116- Breaking change: refactor worker choice strategy statistics requirements: the syntax of the worker choice strategy options has changed.
f63a9dda 117- Breaking change: pool information `info` property object fields have been renamed.
1c6fe997
JB
118
119### Fixed
120
121- Fix wait time accounting.
122- Ensure worker choice strategy `LEAST_BUSY` accounts also tasks wait time.
123- Ensure worker choice strategy `LEAST_USED` accounts also queued tasks.
124
aa07d6ee
JB
125## [2.5.4] - 2023-06-07
126
b6b32453
JB
127### Added
128
129- Add Event Loop Utilization (ELU) statistics to worker tasks usage.
130
131### Changed
132
133- Compute statistics at the worker level only if needed.
90082c8c 134- Add `worker-threads` options to thread pool options.
b6b32453 135
272d4d8f
JB
136### Fixed
137
138- Make the `LEAST_BUSY` strategy only relies on task runtime.
139
ed47fb3d
JB
140## [2.5.3] - 2023-06-04
141
89a4abfd
JB
142### Changed
143
144- Refine pool information content.
b4213b7f 145- Limit pool internals public exposure.
89a4abfd 146
8a9febf5
JB
147## [2.5.2] - 2023-06-02
148
91ee39ed
JB
149### Added
150
151- Add `taskError` pool event for task execution error.
6b27d407 152- Add pool information `info` property to pool.
91ee39ed
JB
153- Emit pool information on `busy` and `full` pool events.
154
8babb151
JB
155## [2.5.1] - 2023-06-01
156
0e05c4dc
JB
157### Added
158
1f68cede 159- Add pool option `restartWorkerOnError` to restart worker on uncaught error. Default to `true`.
91ee39ed 160- Add `error` pool event for uncaught worker error.
0e05c4dc 161
a8766181
JB
162## [2.5.0] - 2023-05-31
163
e4543b14
JB
164### Added
165
166- Switch pool event emitter to `EventEmitterAsyncResource`.
6da80d38 167- Add tasks wait time accounting in per worker tasks usage.
5af9c0f7 168- Add interleaved weighted round robin `INTERLEAVED_WEIGHTED_ROUND_ROBIN` worker choice strategy (experimental).
e4543b14
JB
169
170### Changed
171
172- Renamed worker choice strategy `LESS_BUSY` to `LEAST_BUSY` and `LESS_USED` to `LEAST_USED`.
173
570efb11
JB
174## [2.4.14] - 2023-05-09
175
b0f28bad
JB
176### Fixed
177
178- Ensure no undefined task runtime can land in the tasks history.
179- Fix median computation implementation once again.
180
110b6d13
JB
181### Added
182
183- Unit tests for median and queue implementations.
184
72584880
JB
185## [2.4.13] - 2023-05-08
186
b0d6ed8f
JB
187### Fixed
188
e3058615 189- Fix worker choice strategy options validation.
b0d6ed8f
JB
190- Fix fair share worker choice strategy internals update: ensure virtual task end timestamp is computed at task submission.
191
06140c32
JB
192## [2.4.12] - 2023-05-06
193
a86b6df1
JB
194### Added
195
196- Support multiple task functions per worker.
08f3f44c 197- Add custom worker weights support to worker choice strategies options.
a86b6df1 198
29ee7e9a
JB
199### Changed
200
201- Use O(1) queue implementation for tasks queueing.
202
0682ba15
JB
203### Fixed
204
205- Fix median computation implementation.
206- Fix fair share worker choice strategy internals update.
207
936d53ec
JB
208## [2.4.11] - 2023-04-23
209
cb70b19d
JB
210### Changed
211
212- Optimize free worker finding in worker choice strategies.
213
15bb637a
JB
214## [2.4.10] - 2023-04-15
215
ef41a6e6
JB
216### Fixed
217
218- Fix typescript type definition for worker function: ensure the input data is optional.
219- Fix typescript type definition for pool execute(): ensure the input data is optional.
220
181eb2b4
JB
221## [2.4.9] - 2023-04-15
222
a20f0ba5
JB
223### Added
224
225- Add tasks queue enablement runtime setter to pool.
226- Add tasks queue options runtime setter to pool.
227- Add worker choice strategy options runtime setter to pool.
228
229### Changed
230
231- Remove the tasks queuing experimental status.
232
d4aeae5a
JB
233### Fixed
234
235- Fix worker function type definition and validation.
2fc5cae3 236- Fix worker choice strategy options handling.
d4aeae5a 237
1d9e7023
JB
238## [2.4.8] - 2023-04-12
239
f9b4bbf8
JB
240### Fixed
241
242- Fix message between main worker and worker type definition for tasks.
243- Fix code documentation.
244
12ae3210
JB
245## [2.4.7] - 2023-04-11
246
7171d33f
JB
247### Added
248
249- Add worker tasks queue options to pool options.
250
e8bd29ce
JB
251### Fixed
252
253- Fix missing documentation.
254
42c7bc10
JB
255## [2.4.6] - 2023-04-10
256
681196cc
JB
257### Fixed
258
259- Ensure one task at a time is executed per worker with tasks queueing enabled.
1c6fe997 260- Properly count worker executing tasks with tasks queueing enabled.
681196cc 261
54d360e3
JB
262## [2.4.5] - 2023-04-09
263
3fafb1b2
JB
264### Added
265
9e775f96
JB
266- Use monotonic high resolution timer for worker tasks runtime.
267- Add worker tasks median runtime to statistics.
ff733df7 268- Add worker tasks queue (experimental).
3fafb1b2 269
92fa3eb6
JB
270## [2.4.4] - 2023-04-07
271
aee46736
JB
272### Added
273
274- Add `PoolEvents` enumeration and `PoolEvent` type.
275
36b5e78f
JB
276### Fixed
277
ff0c2b3e 278- Destroy worker only on alive check.
36b5e78f 279
9fb0f324
JB
280## [2.4.3] - 2023-04-07
281
28cf3617
JB
282### Fixed
283
284- Fix typedoc generation with inheritance.
285
848f0f27
JB
286## [2.4.2] - 2023-04-06
287
164d950a
JB
288### Added
289
290- Add `full` event to dynamic pool.
32417142 291- Keep worker choice strategy in memory for conditional reuse.
164d950a 292
78ab2555
JB
293### Fixed
294
295- Fix possible negative worker key at worker removal in worker choice strategies.
296
79aafe9f
JB
297## [2.4.1] - 2023-04-05
298
9cd39dd4
JB
299### Changed
300
301- Optimize worker choice strategy for dynamic pool.
302
965415bb
JB
303### Fixed
304
305- Ensure dynamic pool does not alter worker choice strategy expected behavior.
306
d8b60b1c
JB
307## [2.4.0] - 2023-04-04
308
c6bd2650
JB
309### Added
310
311- Add `LESS_BUSY` worker choice strategy.
312
313### Changed
314
315- Optimize worker storage in pool.
316- Optimize worker alive status check.
317- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
318- Optimize `LESS_USED` worker choice strategy.
319- Update benchmarks versus external threads pools.
320- Optimize tasks usage statistics requirements for worker choice strategy.
321
322### Fixed
323
324- Ensure trimmable characters are checked at pool initialization.
325- Fix message id integer overflow.
326- Fix pool worker removal in worker choice strategy internals.
327- Fix package publication with pnpm.
328
d0a3f018
JB
329## [2.4.0-3] - 2023-04-04
330
b2ede285
JB
331### Added
332
333- Add `LESS_BUSY` worker choice strategy.
334
335### Changed
336
337- Optimize worker storage in pool.
338- Optimize worker alive status check.
339- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
340- Optimize `LESS_USED` worker choice strategy.
341- Update benchmarks versus external threads pools.
342
343### Fixed
344
345- Ensure trimmable characters are checked at pool initialization.
346- Fix message id integer overflow.
347- Fix pool worker removal in worker choice strategy internals.
348- Fix package publication with pnpm.
349
a015ea40
JB
350## [2.4.0-2] - 2023-04-03
351
698f4bbc
JB
352### Added
353
354- Add `LESS_BUSY` worker choice strategy.
355
356### Changed
357
358- Optimize worker storage in pool.
359- Optimize worker alive status check.
360- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
361- Optimize `LESS_USED` worker choice strategy.
362
363### Fixed
364
365- Ensure trimmable characters are checked at pool initialization.
366- Fix message id integer overflow.
367- Fix pool worker removal in worker choice strategy internals.
368- Fix package publication with pnpm.
369
8fe15920
JB
370## [2.4.0-1] - 2023-04-03
371
5b301c28
JB
372### Added
373
374- Add `LESS_BUSY` worker choice strategy.
375
376### Changed
377
378- Optimize worker storage in pool.
379- Optimize worker alive status check.
380- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
381- Optimize `LESS_USED` worker choice strategy.
382
383### Fixed
384
385- Ensure trimmable characters are checked at pool initialization.
386- Fix message id integer overflow.
387- Fix pool worker removal in worker choice strategy internals.
388
2fb9ca9c
JB
389## [2.4.0-0] - 2023-04-03
390
168c526f
JB
391### Added
392
393- Add `LESS_BUSY` worker choice strategy.
394
1d71a908
JB
395### Changed
396
ffcbbad8 397- Optimize worker storage in pool.
1d71a908 398- Optimize worker alive status check.
65a60b3b 399- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
737c6d97 400- Optimize `LESS_USED` worker choice strategy.
1d71a908 401
ffcbbad8
JB
402### Fixed
403
404- Ensure trimmable characters are checked at pool initialization.
b4e75778 405- Fix message id integer overflow.
97a2abc3 406- Fix pool worker removal in worker choice strategy internals.
ffcbbad8 407
08372738
JB
408## [2.3.10] - 2023-03-18
409
710826bc
JB
410### Fixed
411
412- Fix `exports` syntax for ESM and CommonJS.
413
414### Changed
415
416- Permit SemVer pre-release publication.
76e5ac6f 417
e4796ecd
JB
418## [2.3.10-2] - 2023-03-18
419
6abad580
JB
420### Fixed
421
422- Fix `exports` syntax for ESM and CommonJS.
423
a2ee98cc
JB
424## [2.3.10-1] - 2023-03-18
425
7e060cee
JB
426### Changed
427
90483887 428- Permit SemVer pre-release publication.
7e060cee 429
c81bfafb
JB
430## [2.3.10-0] - 2023-03-18
431
fe18768d
JB
432### Fixed
433
434- Fix `exports` syntax for ESM and CommonJS.
435
d7b78217
JB
436## [2.3.9] - 2023-03-18
437
ed6dd37f
JB
438### Changed
439
440- Introduce ESM module support along with CommonJS one.
441
442### Fixed
443
444- Fix brown paper bag bug referencing the same object literal.
445
68e2ad86
JB
446## [2.3.8] - 2023-03-18
447
ca6c7d70
JB
448### Changed
449
450- Switch internal benchmarking code to benny.
fbdedeb9
JB
451- Switch to TypeScript 5.x.x.
452- Switch rollup bundler plugins to core ones.
ed6dd37f 453- Switch to TSDoc syntax.
fbdedeb9 454- Enforce conventional commits.
ca6c7d70 455
d15211d4
JB
456### Fixed
457
458- Fix random integer generator.
fbdedeb9 459- Fix worker choice strategy pool type identification at initialization.
d15211d4 460
995705ea
JB
461## [2.3.7] - 2022-10-23
462
b953022b
JB
463### Changed
464
465- Switch to open collective FOSS project funding platform.
78cea37e
JB
466- Switch to ts-standard linter configuration on TypeScript code.
467
468### Fixed
469
470- Fixed missing async on pool execute method.
471- Fixed typing in TypeScript example.
472- Fixed types in unit tests.
b953022b 473
3b9f6953
JB
474## [2.3.6] - 2022-10-22
475
f80cead4
JB
476### Changed
477
478- Cleanup pool attributes and methods.
479- Refine error types thrown.
480
481### Fixed
482
483- Fix continuous integration build on windows.
484- Fix code coverage reporting by using c8 instead of nyc.
485
efc22107
JB
486## [2.3.5] - 2022-10-21
487
7a6a0a96
JB
488### Changed
489
a05c10de
JB
490- Improve benchmarks: add IO intensive task workload, add task size option, integrate code into linter.
491- Optimize tasks usage lookup implementation.
7a6a0a96 492
b4904890
JB
493### Fixed
494
495- Fix missed pool event emitter type export.
496- Fix typedoc documentation generation.
497
a875f8d1
JB
498## [2.3.4] - 2022-10-17
499
73cda448
JB
500### Added
501
502- Fully automate release process with release-it.
503
45a5a54c
JB
504### Changed
505
73cda448 506- Optimize fair share task scheduling algorithm implementation.
eb4a8a82 507- Update benchmarks versus external pools results with latest version.
45a5a54c 508
90ee1b18 509## [2.3.3] - 2022-10-15
1a76932b
JB
510
511### Added
512
513- Add support for [cluster settings](https://nodejs.org/api/cluster.html#cluster_cluster_settings) in cluster pool options.
514
90ee1b18 515## [2.3.2] - 2022-10-14
11df3590
JB
516
517### Changed
518
519- Optimize fair share worker selection strategy implementation.
520
521### Fixed
522
523- Fix WRR worker selection strategy: ensure the condition triggering the round robin can be fulfilled.
524
90ee1b18 525## [2.3.1] - 2022-10-13
23ff945a
JB
526
527### Added
528
529- Pool worker choice strategies:
530 - `WorkerChoiceStrategies.WEIGHTED_ROUND_ROBIN` strategy based on weighted round robin scheduling algorithm using tasks execution time for now.
531 - `WorkerChoiceStrategies.FAIR_SHARE` strategy based on fair share scheduling algorithm using tasks execution time for now.
532
90ee1b18 533## [2.2.2] - 2022-10-09
cb2b6c69
JB
534
535### Fixed
536
537- Fixed `README.md` file.
538
90ee1b18 539## [2.2.1] - 2022-10-08
bdacc2d2 540
bdaf31cd
JB
541### Added
542
543- Dynamic worker choice strategy change at runtime.
bdacc2d2 544
90ee1b18 545## [2.2.0] - 2022-01-05
7e0d447f
JB
546
547### Breaking Changes
548
549- Support only NodeJS version 16.x.x for cluster pool: upstream cluster API have changed on that version.
550
90ee1b18 551## [2.1.0] - 2021-08-29
35cf1c03
JB
552
553### Added
554
555- Add an optional pool option `messageHandler` to `PoolOptions<Worker>` for registering a message handler callback on each worker.
e088a00c
JB
556
557### Breaking Changes
558
559- `AbstractWorker` class `maxInactiveTime`, `killBehavior` and `async` attributes have been removed in favour of the same ones in the worker options `opts` public attribute.
560- `AbstractWorker` class `lastTask` attribute have been renamed to `lastTaskTimestamp`.
561- `AbstractWorker` class `interval` attribute have been renamed to `aliveInterval`.
c365b2d3 562- `AbstractWorker` class cannot be instantiated without specifying the `mainWorker` argument referencing the main worker.
e088a00c 563
90ee1b18 564## [2.0.2] - 2021-05-12
14916bf9
JB
565
566### Bug fixes
567
568- Fix `busy` event emission on fixed pool type
569
90ee1b18 570## [2.0.1] - 2021-03-16
7f685093
JB
571
572### Bug fixes
573
574- Check if pool options are properly set.
575- `busy` event is emitted on all pool types.
576
90ee1b18 577## [2.0.0] - 2021-03-01
fa0f5b28 578
f3f833ab 579### Bug fixes
d63d3be3 580
ddbeaffd 581- Now a thread/process by default is not deleted when the task submitted take more time than maxInactiveTime configured (issue #70).
d63d3be3 582
fa0f5b28
S
583### Breaking Changes
584
7f685093 585- `FullPool` event is now renamed to `busy`.
1927ee67 586- `maxInactiveTime` on `ThreadWorker` default behavior is now changed, if you want to keep the old behavior set `killBehavior` to `KillBehaviors.HARD`.
1a81f8af 587 _Find more details on our JSDoc._
ddbeaffd 588
1927ee67
APA
589- `maxTasks` option on `FixedThreadPool` and `DynamicThreadPool` is now removed since is no more needed.
590
ddbeaffd 591- We changed some internal structures, but you shouldn't be too affected by them as these are internal changes.
fa0f5b28 592
ec2ccfc8
JB
593### Pool options types declaration merge
594
595`FixedThreadPoolOptions` and `DynamicThreadPoolOptions` type declarations have been merged to `PoolOptions<Worker>`.
596
fa0f5b28
S
597#### New `export` strategy
598
599```js
600// Before
777b7824 601const DynamicThreadPool = require('poolifier/lib/dynamic')
fa0f5b28 602// After
777b7824 603const { DynamicThreadPool } = require('poolifier/lib/dynamic')
fa0f5b28
S
604```
605
606But you should always prefer just using
607
608```js
777b7824 609const { DynamicThreadPool } = require('poolifier')
fa0f5b28
S
610```
611
d3c8a1a8
S
612#### New type definitions for input data and response
613
6677a3d3 614For cluster worker and worker-thread pools, you can now only send and receive structured-cloneable data.
d3c8a1a8
S
615_This is not a limitation by poolifier but NodeJS._
616
3a4b605f 617#### Public property replacements
5c5a1fb7 618
3a4b605f 619`numWorkers` property is now `numberOfWorkers`
5c5a1fb7 620
280c2a77 621#### Internal (protected) properties and methods renaming
fa0f5b28 622
280c2a77
S
623These properties are not intended for end users
624
625- `id` => `nextMessageId`
626
627These methods are not intended for end users
fa0f5b28
S
628
629- `_chooseWorker` => `chooseWorker`
280c2a77 630- `_newWorker` => `createWorker`
fa0f5b28
S
631- `_execute` => `internalExecute`
632- `_chooseWorker` => `chooseWorker`
633- `_checkAlive` => `checkAlive`
634- `_run` => `run`
635- `_runAsync` => `runAsync`
636
90ee1b18 637## [1.1.0] - 2020-05-21
0312f71a
APA
638
639### Added
640
641- ThreadWorker support async functions as option
cf9aa6c3 642- Various external library patches
0312f71a 643
90ee1b18 644## [1.0.0] - 2020-01-24
522eea03 645
646### Added
647
648- FixedThreadPool implementation
649- DynamicThreadPool implementation
0312f71a 650- WorkerThread implementation to improve developer experience