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