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