chore: v2.6.39
[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.6.39] - 2023-08-30
11
12### Fixed
13
14- Fix race condition in worker choice strategies at worker node info querying while not yet initialized .
15
16## [2.6.38] - 2023-08-30
17
18### Added
19
20- Bundle typescript types declaration into one file.
21
22### Changed
23
24- Improve interleaved weighted round robin worker choice strategy implementation.
25
26## [2.6.37] - 2023-08-28
27
28### Fixed
29
30- Ensure unused worker usage statistics are deleted at runtime.
31
32### Changed
33
34- Rename worker choice strategy options `choiceRetries` to `retries`.
35- Avoid unnecessary branching in worker choice strategies.
36
37## [2.6.36] - 2023-08-27
38
39### Fixed
40
41- Fix pool `execute()` arguments check.
42
43### Changed
44
45- Make continuous tasks stealing algorithm less aggressive.
46- Fine tune tasks stealing algorithm under back pressure.
47
48## [2.6.35] - 2023-08-25
49
50### Fixed
51
52- Don't account worker usage statistics for tasks that have failed.
53- Fix pool information runtime and wait time median computation.
54
55### Changed
56
57- Update simple moving average implementation to use a circular buffer.
58- Update simple moving median implementation to use a circular buffer.
59- Account for stolen tasks in worker usage statistics and pool information.
60
61### Added
62
63- Continuous tasks stealing algorithm.
64
65## [2.6.34] - 2023-08-24
66
67### Fixes
68
69- Avoid cascading tasks stealing under back pressure.
70
71### Changed
72
73- Add fastpath to queued tasks rescheduling.
74
75## [2.6.33] - 2023-08-24
76
77### Fixed
78
79- Fix queued tasks rescheduling.
80
81### Changed
82
83- Rename tasks queue options `queueMaxSize` to `size`.
84
85### Added
86
87- Task stealing scheduling algorithm if tasks queueing is enabled.
88
89## [2.6.32] - 2023-08-23
90
91### Fixed
92
93- Ensure no task can be executed when the pool is destroyed.
94
95### Added
96
97- Add `queueMaxSize` option to tasks queue options.
98- Add O(1) deque implementation implemented with doubly linked list and use it for tasks queueing.
99- Add tasks stealing algorithm when a worker node queue is back pressured if tasks queueing is enabled.
100
101## [2.6.31] - 2023-08-20
102
103### Fixed
104
105- Fix worker choice strategy retries mechanism in some edge cases.
106
107### Changed
108
109- Make orthogonal worker choice strategies tasks distribution and created dynamic worker usage.
110- Remove the experimental status of the `LEAST_ELU` worker choice strategy.
111
112## [2.6.30] - 2023-08-19
113
114### Fixed
115
116- Ensure pool event `backPressure` is emitted.
117- Ensure pool event `full` is emitted only once.
118- Ensure worker node cannot be instantiated without proper arguments.
119
120## [2.6.29] - 2023-08-18
121
122### Fixed
123
124- Fix race condition between ready and task functions worker message handling at startup.
125- Fix duplicate task function worker usage statistics computation per task function.
126- Update task function worker usage statistics if and only if there's at least two different task functions.
127- Fix race condition at task function worker usage executing task computation leading to negative value.
128
129### Added
130
131- Add back pressure detection on the worker node queue. Event `backPressure` is emitted when all worker node queues are full (worker node queue size >= poolMaxSize^2).
132- Use back pressure detection in worker choice strategies.
133- Add worker choice strategies retries mechanism if no worker is eligible.
134
135## [2.6.28] - 2023-08-16
136
137### Fixed
138
139- Ensure pool workers are properly initialized.
140
141### Added
142
143- HTTP server pool examples: express-cluster, express-hybrid.
144
145### Changed
146
147- Remove now useless branching in worker hot code path.
148
149## [2.6.27] - 2023-08-15
150
151### Fixed
152
153- Add `KillHandler` type definition to exported types.
154
155### Added
156
157- Add `destroy` event to pool API.
158
159## [2.6.26] - 2023-08-15
160
161### Added
162
163- Add kill handler to worker options allowing to execute custom code when worker is killed.
164- Add `listTaskFunctions()` method to pool API.
165- SMTP server pool example: nodemailer.
166
167## [2.6.25] - 2023-08-13
168
169### Added
170
171- HTTP server pool examples: fastify-cluster, fastify-hybrid.
172- WebSocket server pool examples: ws-cluster, ws-hybrid.
173
174## [2.6.24] - 2023-08-12
175
176### Added
177
178- Add array of transferable objects to the `execute()` method arguments.
179- WebSocket server pool examples: ws-worker_threads.
180
181## [2.6.23] - 2023-08-11
182
183### Fixed
184
185- Fix pool busyness semantic when tasks queueing is enabled: the pool is busy when the number of executing tasks on each worker has reached the maximum tasks concurrency per worker.
186
187### Added
188
189- HTTP client pool examples: fetch, node-fetch and axios with multiple task functions.
190- HTTP server pool examples: express-worker_threads, fastify-worker_threads.
191
192## [2.6.22] - 2023-08-10
193
194### Fixed
195
196- Add missing `types` field to package.json `exports`.
197
198### Changed
199
200- Structure markdown documentation (PR #811).
201
202## [2.6.21] - 2023-08-03
203
204### Changed
205
206- Improve code documentation.
207- Code refactoring and cleanup for better maintainability and readability.
208
209## [2.6.20] - 2023-07-21
210
211### Fixed
212
213- Fix queued tasks redistribution on error task execution starvation.
214- Ensure tasks queueing per worker condition is untangled from the pool busyness semantic.
215
216### Changed
217
218- Drastically reduce lookups by worker in the worker nodes.
219
220## [2.6.19] - 2023-07-20
221
222### Added
223
224- Dedicated internal communication channel for worker_threads pools.
225
226## [2.6.18] - 2023-07-19
227
228### Changed
229
230- Code refactoring and cleanup for better maintainability and readability. Bundle size is a bit smaller.
231
232## [2.6.17] - 2023-07-16
233
234### Added
235
236- Add `listTaskFunctions()` method to worker API.
237
238## [2.6.16] - 2023-07-12
239
240### Fixed
241
242- Fix pool startup detection.
243- Fix worker task functions handling.
244
245## [2.6.15] - 2023-07-11
246
247### Added
248
249- Take into account worker node readiness in worker choice strategies.
250
251## [2.6.14] - 2023-07-10
252
253### Fixed
254
255- Fix task function statistics tracking.
256
257## [2.6.13] - 2023-07-10
258
259### Added
260
261- Add per task function statistics tracking.
262- Add public methods to manipulate the worker task functions at runtime.
263
264## [2.6.12] - 2023-07-09
265
266### Fixed
267
268- Workaround import issue with `node:os` module in node 16.x.x.
269
270## [2.6.11] - 2023-07-09
271
272### Fixed
273
274- Fix pool readiness semantic.
275
276## [2.6.10] - 2023-07-08
277
278### Fixed
279
280- Ensure workers are not recreated on error at pool startup.
281
282### Added
283
284- Add `ready` and `strategy` fields to pool information.
285- Add pool event `ready` to notify when the number of workers created in the pool has reached the maximum size expected and are ready.
286- Add dynamic pool sizing checks.
287
288## [2.6.9] - 2023-07-07
289
290### Fixed
291
292- Recreate the right worker type on uncaught exception.
293
294### Added
295
296- Add minimum and maximum to internal measurement statistics.
297- Add `runTime` and `waitTime` to pool information.
298- Check worker inactive time only on dynamic worker.
299
300## [2.6.8] - 2023-07-03
301
302### Fixed
303
304- Brown paper bag release to fix version handling in pool information.
305
306## [2.6.7] - 2023-07-03
307
308### Fixed
309
310- Ensure worker queued tasks at error are reassigned to other pool workers.
311
312### Added
313
314- Add pool `utilization` ratio to pool information.
315- Add `version` to pool information.
316- Add worker information to worker nodes.
317
318## [2.6.6] - 2023-07-01
319
320### Added
321
322- Add safe helper `availableParallelism()` to help sizing the pool.
323
324### Fixed
325
326- Ensure message handler is only registered in worker.
327
328## [2.6.5] - 2023-06-27
329
330### Known issues
331
332- Cluster pools tasks execution are not working by using ESM files extension: https://github.com/poolifier/poolifier/issues/782
333
334### Fixed
335
336- Artificial version bump to 2.6.5 to workaround publication issue.
337- Ensure cluster pool `destroy()` gracefully shutdowns worker's server.
338- Ensure pool event is emitted before task error promise rejection.
339- Fix queued tasks count computation.
340
341### Removed
342
343- Remove unneeded worker_threads worker `MessageChannel` internal usage for IPC.
344
345## [2.6.4] - 2023-06-27
346
347### Known issues
348
349- Cluster pools tasks execution are not working by using ESM files extension: https://github.com/poolifier/poolifier/issues/782
350
351### Fixed
352
353- Ensure cluster pool `destroy()` gracefully shutdowns worker's server.
354- Ensure pool event is emitted before task error promise rejection.
355- Fix queued tasks count computation.
356
357### Removed
358
359- Remove unneeded worker_threads worker `MessageChannel` internal usage for IPC.
360
361## [2.6.3] - 2023-06-19
362
363### Fixed
364
365- Ensure no tasks are queued when trying to soft kill a dynamic worker.
366- Update strategies internals after statistics computation.
367
368### Changed
369
370- Optimize O(1) queue implementation.
371
372## [2.6.2] - 2023-06-12
373
374### Fixed
375
376- Fix new worker use after creation in dynamic pool given the current worker choice strategy.
377
378## [2.6.1] - 2023-06-10
379
380### Added
381
382- Add worker choice strategy documentation: [README.md](./docs/worker-choice-strategies.md).
383
384### Fixed
385
386- Fix average statistics computation: ensure failed tasks are not accounted.
387
388## [2.6.0] - 2023-06-09
389
390### Added
391
392- Add `LEAST_ELU` worker choice strategy (experimental).
393- Add tasks ELU instead of runtime support to `FAIR_SHARE` worker choice strategy.
394
395### Changed
396
397- Refactor pool worker node usage internals.
398- Breaking change: refactor worker choice strategy statistics requirements: the syntax of the worker choice strategy options has changed.
399- Breaking change: pool information `info` property object fields have been renamed.
400
401### Fixed
402
403- Fix wait time accounting.
404- Ensure worker choice strategy `LEAST_BUSY` accounts also tasks wait time.
405- Ensure worker choice strategy `LEAST_USED` accounts also queued tasks.
406
407## [2.5.4] - 2023-06-07
408
409### Added
410
411- Add Event Loop Utilization (ELU) statistics to worker tasks usage.
412
413### Changed
414
415- Compute statistics at the worker level only if needed.
416- Add `worker_threads` options to thread pool options.
417
418### Fixed
419
420- Make the `LEAST_BUSY` strategy only relies on task runtime.
421
422## [2.5.3] - 2023-06-04
423
424### Changed
425
426- Refine pool information content.
427- Limit pool internals public exposure.
428
429## [2.5.2] - 2023-06-02
430
431### Added
432
433- Add `taskError` pool event for task execution error.
434- Add pool information `info` property to pool.
435- Emit pool information on `busy` and `full` pool events.
436
437## [2.5.1] - 2023-06-01
438
439### Added
440
441- Add pool option `restartWorkerOnError` to restart worker on uncaught error. Default to `true`.
442- Add `error` pool event for uncaught worker error.
443
444## [2.5.0] - 2023-05-31
445
446### Added
447
448- Switch pool event emitter to `EventEmitterAsyncResource`.
449- Add tasks wait time accounting in per worker tasks usage.
450- Add interleaved weighted round robin `INTERLEAVED_WEIGHTED_ROUND_ROBIN` worker choice strategy (experimental).
451
452### Changed
453
454- Renamed worker choice strategy `LESS_BUSY` to `LEAST_BUSY` and `LESS_USED` to `LEAST_USED`.
455
456## [2.4.14] - 2023-05-09
457
458### Fixed
459
460- Ensure no undefined task runtime can land in the tasks history.
461- Fix median computation implementation once again.
462
463### Added
464
465- Unit tests for median and queue implementations.
466
467## [2.4.13] - 2023-05-08
468
469### Fixed
470
471- Fix worker choice strategy options validation.
472- Fix fair share worker choice strategy internals update: ensure virtual task end timestamp is computed at task submission.
473
474## [2.4.12] - 2023-05-06
475
476### Added
477
478- Support multiple task functions per worker.
479- Add custom worker weights support to worker choice strategies options.
480
481### Changed
482
483- Use O(1) queue implementation for tasks queueing.
484
485### Fixed
486
487- Fix median computation implementation.
488- Fix fair share worker choice strategy internals update.
489
490## [2.4.11] - 2023-04-23
491
492### Changed
493
494- Optimize free worker finding in worker choice strategies.
495
496## [2.4.10] - 2023-04-15
497
498### Fixed
499
500- Fix typescript type definition for task function: ensure the input data is optional.
501- Fix typescript type definition for pool execute(): ensure the input data is optional.
502
503## [2.4.9] - 2023-04-15
504
505### Added
506
507- Add tasks queue enablement runtime setter to pool.
508- Add tasks queue options runtime setter to pool.
509- Add worker choice strategy options runtime setter to pool.
510
511### Changed
512
513- Remove the tasks queuing experimental status.
514
515### Fixed
516
517- Fix task function type definition and validation.
518- Fix worker choice strategy options handling.
519
520## [2.4.8] - 2023-04-12
521
522### Fixed
523
524- Fix message between main worker and worker type definition for tasks.
525- Fix code documentation.
526
527## [2.4.7] - 2023-04-11
528
529### Added
530
531- Add worker tasks queue options to pool options.
532
533### Fixed
534
535- Fix missing documentation.
536
537## [2.4.6] - 2023-04-10
538
539### Fixed
540
541- Ensure one task at a time is executed per worker with tasks queueing enabled.
542- Properly count worker executing tasks with tasks queueing enabled.
543
544## [2.4.5] - 2023-04-09
545
546### Added
547
548- Use monotonic high resolution timer for worker tasks runtime.
549- Add worker tasks median runtime to statistics.
550- Add worker tasks queue (experimental).
551
552## [2.4.4] - 2023-04-07
553
554### Added
555
556- Add `PoolEvents` enumeration and `PoolEvent` type.
557
558### Fixed
559
560- Destroy worker only on alive check.
561
562## [2.4.3] - 2023-04-07
563
564### Fixed
565
566- Fix typedoc generation with inheritance.
567
568## [2.4.2] - 2023-04-06
569
570### Added
571
572- Add `full` event to dynamic pool.
573- Keep worker choice strategy in memory for conditional reuse.
574
575### Fixed
576
577- Fix possible negative worker key at worker removal in worker choice strategies.
578
579## [2.4.1] - 2023-04-05
580
581### Changed
582
583- Optimize worker choice strategy for dynamic pool.
584
585### Fixed
586
587- Ensure dynamic pool does not alter worker choice strategy expected behavior.
588
589## [2.4.0] - 2023-04-04
590
591### Added
592
593- Add `LESS_BUSY` worker choice strategy.
594
595### Changed
596
597- Optimize worker storage in pool.
598- Optimize worker alive status check.
599- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
600- Optimize `LESS_USED` worker choice strategy.
601- Update benchmarks versus external threads pools.
602- Optimize tasks usage statistics requirements for worker choice strategy.
603
604### Fixed
605
606- Ensure trimmable characters are checked at pool initialization.
607- Fix message id integer overflow.
608- Fix pool worker removal in worker choice strategy internals.
609- Fix package publication with pnpm.
610
611## [2.4.0-3] - 2023-04-04
612
613### Added
614
615- Add `LESS_BUSY` worker choice strategy.
616
617### Changed
618
619- Optimize worker storage in pool.
620- Optimize worker alive status check.
621- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
622- Optimize `LESS_USED` worker choice strategy.
623- Update benchmarks versus external threads pools.
624
625### Fixed
626
627- Ensure trimmable characters are checked at pool initialization.
628- Fix message id integer overflow.
629- Fix pool worker removal in worker choice strategy internals.
630- Fix package publication with pnpm.
631
632## [2.4.0-2] - 2023-04-03
633
634### Added
635
636- Add `LESS_BUSY` worker choice strategy.
637
638### Changed
639
640- Optimize worker storage in pool.
641- Optimize worker alive status check.
642- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
643- Optimize `LESS_USED` worker choice strategy.
644
645### Fixed
646
647- Ensure trimmable characters are checked at pool initialization.
648- Fix message id integer overflow.
649- Fix pool worker removal in worker choice strategy internals.
650- Fix package publication with pnpm.
651
652## [2.4.0-1] - 2023-04-03
653
654### Added
655
656- Add `LESS_BUSY` worker choice strategy.
657
658### Changed
659
660- Optimize worker storage in pool.
661- Optimize worker alive status check.
662- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
663- Optimize `LESS_USED` worker choice strategy.
664
665### Fixed
666
667- Ensure trimmable characters are checked at pool initialization.
668- Fix message id integer overflow.
669- Fix pool worker removal in worker choice strategy internals.
670
671## [2.4.0-0] - 2023-04-03
672
673### Added
674
675- Add `LESS_BUSY` worker choice strategy.
676
677### Changed
678
679- Optimize worker storage in pool.
680- Optimize worker alive status check.
681- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
682- Optimize `LESS_USED` worker choice strategy.
683
684### Fixed
685
686- Ensure trimmable characters are checked at pool initialization.
687- Fix message id integer overflow.
688- Fix pool worker removal in worker choice strategy internals.
689
690## [2.3.10] - 2023-03-18
691
692### Fixed
693
694- Fix package.json `exports` syntax for ESM and CommonJS.
695
696### Changed
697
698- Permit SemVer pre-release publication.
699
700## [2.3.10-2] - 2023-03-18
701
702### Fixed
703
704- Fix package.json `exports` syntax for ESM and CommonJS.
705
706## [2.3.10-1] - 2023-03-18
707
708### Changed
709
710- Permit SemVer pre-release publication.
711
712## [2.3.10-0] - 2023-03-18
713
714### Fixed
715
716- Fix package.json `exports` syntax for ESM and CommonJS.
717
718## [2.3.9] - 2023-03-18
719
720### Changed
721
722- Introduce ESM module support along with CommonJS one.
723
724### Fixed
725
726- Fix brown paper bag bug referencing the same object literal.
727
728## [2.3.8] - 2023-03-18
729
730### Changed
731
732- Switch internal benchmarking code to benny.
733- Switch to TypeScript 5.x.x.
734- Switch rollup bundler plugins to core ones.
735- Switch to TSDoc syntax.
736- Enforce conventional commits.
737
738### Fixed
739
740- Fix random integer generator.
741- Fix worker choice strategy pool type identification at initialization.
742
743## [2.3.7] - 2022-10-23
744
745### Changed
746
747- Switch to open collective FOSS project funding platform.
748- Switch to ts-standard linter configuration on TypeScript code.
749
750### Fixed
751
752- Fixed missing async on pool execute method.
753- Fixed typing in TypeScript example.
754- Fixed types in unit tests.
755
756## [2.3.6] - 2022-10-22
757
758### Changed
759
760- Cleanup pool attributes and methods.
761- Refine error types thrown.
762
763### Fixed
764
765- Fix continuous integration build on windows.
766- Fix code coverage reporting by using c8 instead of nyc.
767
768## [2.3.5] - 2022-10-21
769
770### Changed
771
772- Improve benchmarks: add IO intensive task workload, add task size option, integrate code into linter.
773- Optimize tasks usage lookup implementation.
774
775### Fixed
776
777- Fix missed pool event emitter type export.
778- Fix typedoc documentation generation.
779
780## [2.3.4] - 2022-10-17
781
782### Added
783
784- Fully automate release process with release-it.
785
786### Changed
787
788- Optimize fair share task scheduling algorithm implementation.
789- Update benchmarks versus external pools results with latest version.
790
791## [2.3.3] - 2022-10-15
792
793### Added
794
795- Add support for [cluster settings](https://nodejs.org/api/cluster.html#cluster_cluster_settings) in cluster pool options.
796
797## [2.3.2] - 2022-10-14
798
799### Changed
800
801- Optimize fair share worker selection strategy implementation.
802
803### Fixed
804
805- Fix WRR worker selection strategy: ensure the condition triggering the round robin can be fulfilled.
806
807## [2.3.1] - 2022-10-13
808
809### Added
810
811- Pool worker choice strategies:
812 - `WorkerChoiceStrategies.WEIGHTED_ROUND_ROBIN` strategy based on weighted round robin scheduling algorithm using tasks execution time for now.
813 - `WorkerChoiceStrategies.FAIR_SHARE` strategy based on fair share scheduling algorithm using tasks execution time for now.
814
815## [2.2.2] - 2022-10-09
816
817### Fixed
818
819- Fixed `README.md` file.
820
821## [2.2.1] - 2022-10-08
822
823### Added
824
825- Dynamic worker choice strategy change at runtime.
826
827## [2.2.0] - 2022-01-05
828
829### Breaking Changes
830
831- Support only Node.js version 16.x.x for cluster pool: upstream cluster API have changed on that version.
832
833## [2.1.0] - 2021-08-29
834
835### Added
836
837- Add an optional pool option `messageHandler` to `PoolOptions<Worker>` for registering a message handler callback on each worker.
838
839### Breaking Changes
840
841- `AbstractWorker` class `maxInactiveTime`, `killBehavior` and `async` attributes have been removed in favour of the same ones in the worker options `opts` public attribute.
842- `AbstractWorker` class `lastTask` attribute have been renamed to `lastTaskTimestamp`.
843- `AbstractWorker` class `interval` attribute have been renamed to `aliveInterval`.
844- `AbstractWorker` class cannot be instantiated without specifying the `mainWorker` argument referencing the main worker.
845
846## [2.0.2] - 2021-05-12
847
848### Bug fixes
849
850- Fix `busy` event emission on fixed pool type
851
852## [2.0.1] - 2021-03-16
853
854### Bug fixes
855
856- Check if pool options are properly set.
857- `busy` event is emitted on all pool types.
858
859## [2.0.0] - 2021-03-01
860
861### Bug fixes
862
863- Now a thread/process by default is not deleted when the task submitted take more time than maxInactiveTime configured (issue #70).
864
865### Breaking Changes
866
867- `FullPool` event is now renamed to `busy`.
868- `maxInactiveTime` on `ThreadWorker` default behavior is now changed, if you want to keep the old behavior set `killBehavior` to `KillBehaviors.HARD`.
869 _Find more details on our JSDoc._
870
871- `maxTasks` option on `FixedThreadPool` and `DynamicThreadPool` is now removed since is no more needed.
872
873- We changed some internal structures, but you shouldn't be too affected by them as these are internal changes.
874
875### Pool options types declaration merge
876
877`FixedThreadPoolOptions` and `DynamicThreadPoolOptions` type declarations have been merged to `PoolOptions<Worker>`.
878
879#### New `export` strategy
880
881```js
882// Before
883const DynamicThreadPool = require('poolifier/lib/dynamic')
884// After
885const { DynamicThreadPool } = require('poolifier/lib/dynamic')
886```
887
888But you should always prefer just using
889
890```js
891const { DynamicThreadPool } = require('poolifier')
892```
893
894#### New type definitions for input data and response
895
896For cluster worker and worker-thread pools, you can now only send and receive structured-cloneable data.
897_This is not a limitation by poolifier but Node.js._
898
899#### Public property replacements
900
901`numWorkers` property is now `numberOfWorkers`
902
903#### Internal (protected) properties and methods renaming
904
905These properties are not intended for end users
906
907- `id` => `nextMessageId`
908
909These methods are not intended for end users
910
911- `_chooseWorker` => `chooseWorker`
912- `_newWorker` => `createWorker`
913- `_execute` => `internalExecute`
914- `_chooseWorker` => `chooseWorker`
915- `_checkAlive` => `checkAlive`
916- `_run` => `run`
917- `_runAsync` => `runAsync`
918
919## [1.1.0] - 2020-05-21
920
921### Added
922
923- ThreadWorker support async functions as option
924- Various external library patches
925
926## [1.0.0] - 2020-01-24
927
928### Added
929
930- FixedThreadPool implementation
931- DynamicThreadPool implementation
932- WorkerThread implementation to improve developer experience