| 1 | # Changelog |
| 2 | |
| 3 | All notable changes to this project will be documented in this file. |
| 4 | |
| 5 | The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
| 6 | and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
| 7 | |
| 8 | ## [2.0.0] - 2021-01-03 |
| 9 | |
| 10 | ### Bug fixes |
| 11 | |
| 12 | - Now a thread/process by default is not deleted when the task submitted take more time than maxInactiveTime configured (issue #70). |
| 13 | |
| 14 | ### Breaking Changes |
| 15 | |
| 16 | - `FullPool` event is now renamed to `busy`. |
| 17 | - `maxInactiveTime` on `ThreadWorker` default behavior is now changed, if you want to keep the old behavior set `killBehavior` to `KillBehaviors.HARD`. |
| 18 | _Find more details on our JSDoc._ |
| 19 | |
| 20 | - `maxTasks` option on `FixedThreadPool` and `DynamicThreadPool` is now removed since is no more needed. |
| 21 | |
| 22 | - We changed some internal structures, but you shouldn't be too affected by them as these are internal changes. |
| 23 | |
| 24 | ### Pool options types declaration merge |
| 25 | |
| 26 | `FixedThreadPoolOptions` and `DynamicThreadPoolOptions` type declarations have been merged to `PoolOptions<Worker>`. |
| 27 | |
| 28 | #### New `export` strategy |
| 29 | |
| 30 | ```js |
| 31 | // Before |
| 32 | const DynamicThreadPool = require('poolifier/lib/dynamic') |
| 33 | // After |
| 34 | const { DynamicThreadPool } = require('poolifier/lib/dynamic') |
| 35 | ``` |
| 36 | |
| 37 | But you should always prefer just using |
| 38 | |
| 39 | ```js |
| 40 | const { DynamicThreadPool } = require('poolifier') |
| 41 | ``` |
| 42 | |
| 43 | #### New type definitions for input data and response |
| 44 | |
| 45 | For cluster worker and worker-thread pools, you can now only send and receive serializable data. |
| 46 | _This is not a limitation by poolifier but NodeJS._ |
| 47 | |
| 48 | #### Public property replacements |
| 49 | |
| 50 | `numWorkers` property is now `numberOfWorkers` |
| 51 | |
| 52 | #### Internal (protected) properties and methods renaming |
| 53 | |
| 54 | These properties are not intended for end users |
| 55 | |
| 56 | - `id` => `nextMessageId` |
| 57 | |
| 58 | These methods are not intended for end users |
| 59 | |
| 60 | - `_chooseWorker` => `chooseWorker` |
| 61 | - `_newWorker` => `createWorker` |
| 62 | - `_execute` => `internalExecute` |
| 63 | - `_chooseWorker` => `chooseWorker` |
| 64 | - `_checkAlive` => `checkAlive` |
| 65 | - `_run` => `run` |
| 66 | - `_runAsync` => `runAsync` |
| 67 | |
| 68 | ## [1.1.0] - 2020-21-05 |
| 69 | |
| 70 | ### Added |
| 71 | |
| 72 | - ThreadWorker support async functions as option |
| 73 | - Various external library patches |
| 74 | |
| 75 | ## [1.0.0] - 2020-24-01 |
| 76 | |
| 77 | ### Added |
| 78 | |
| 79 | - FixedThreadPool implementation |
| 80 | - DynamicThreadPool implementation |
| 81 | - WorkerThread implementation to improve developer experience |