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