]> Piment Noir Git Repositories - poolifier.git/commitdiff
chore(master): release 5.0.6 (#2915)
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Tue, 8 Jul 2025 18:59:13 +0000 (20:59 +0200)
committerGitHub <noreply@github.com>
Tue, 8 Jul 2025 18:59:13 +0000 (20:59 +0200)
* chore(master): release 5.0.6

* [autofix.ci] apply automated fixes

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
.github/release-please/manifest.json
CHANGELOG.md
jsr.json
package.json
sonar-project.properties
src/pools/version.ts

index 74b66b43881af2e2f08ff369dd6a4ee7b8288f29..8114e3848f1bcd7625b75d723bd4dad32993a1e9 100644 (file)
@@ -1,3 +1,3 @@
 {
-  ".": "5.0.5"
+  ".": "5.0.6"
 }
index 24f053fb67ae1e8d6e40e3693c93fc5ce8c4514f..9e7c4f05e249f2bf231285e5b21a7518f8326d38 100644 (file)
@@ -5,6 +5,37 @@ All notable changes to this project will be documented in this file.
 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 
+## [5.0.6](https://github.com/poolifier/poolifier/compare/v5.0.5...v5.0.6) (2025-07-08)
+
+
+### 🐞 Bug Fixes
+
+* ensure dynamic worker can't be created at pool destroy ([#2916](https://github.com/poolifier/poolifier/issues/2916)) ([1e453b0](https://github.com/poolifier/poolifier/commit/1e453b0f9c372445a9f191f1c1d11bcb5532c1d1))
+* ensure worker kill message response is not handled by the generic ([1b20484](https://github.com/poolifier/poolifier/commit/1b204843dccdb3bf6a41bf6104667867256abe16))
+
+
+### ✨ Polish
+
+* add worker strategy name to help UTs debug ([8d3efca](https://github.com/poolifier/poolifier/commit/8d3efca6e146993ce209d73f783d3adb1dbf5363))
+* cleanup task function ops method ([62242b7](https://github.com/poolifier/poolifier/commit/62242b7d286af3251b00a48a90491ff1f4b1fac5))
+* ensure safer access to worker node status ([a92483b](https://github.com/poolifier/poolifier/commit/a92483beb1e3f715455dd11b4f8f0c0c4b56d488))
+* improve messaging worker id check error message ([d5e7715](https://github.com/poolifier/poolifier/commit/d5e7715416d850bf944bb23c6fe7e74b1c952fac))
+
+
+### 🧪 Tests
+
+* account properly for kill message timeout ([0a30f36](https://github.com/poolifier/poolifier/commit/0a30f3645925b2c92057ca6161dafee039664fec))
+* adjust elapsed max time at pool destroy ([eb3c07e](https://github.com/poolifier/poolifier/commit/eb3c07e6ccddb0980837e2777598027bd8da92f3))
+* enlarge mocha timeout ([fd79a70](https://github.com/poolifier/poolifier/commit/fd79a701dd91100e0a36343d1c8dd38b5ae682c7))
+* increase mocha timeout ([1670c56](https://github.com/poolifier/poolifier/commit/1670c568bc47d9daa87e9d13fb622dbc365dd39e))
+* put back initial margin at timeout expectation ([2879ec7](https://github.com/poolifier/poolifier/commit/2879ec7db5c9b7c4139362af15b87b73112ebb5f))
+* refine expectation ([5c5f380](https://github.com/poolifier/poolifier/commit/5c5f38057c0a1a7777f0dc31004ce1ca4ab7e999))
+
+
+### 📚 Documentation
+
+* publish documentation ([b1f2776](https://github.com/poolifier/poolifier/commit/b1f2776a21bd582157d8e17472fda9664c049a86))
+
 ## [5.0.5](https://github.com/poolifier/poolifier/compare/v5.0.4...v5.0.5) (2025-07-07)
 
 
index 8d871fd3b00a422098aacdbc2045110c782b1764..0db86be490d12bf467025d296b0e2c24ee7a53b9 100644 (file)
--- a/jsr.json
+++ b/jsr.json
@@ -1,7 +1,7 @@
 {
   "$schema": "https://jsr.io/schema/config-file.v1.json",
   "name": "@poolifier/poolifier",
-  "version": "5.0.5",
+  "version": "5.0.6",
   "exports": "./src/index.ts",
   "publish": {
     "include": ["LICENSE", "README.md", "jsr.json", "src/**/*.ts"]
index e773857d2f05a1ca834c7b012c5293dff59746a0..94a4ade4a5b339892333d955f82c149ef835a841 100644 (file)
@@ -1,7 +1,7 @@
 {
   "$schema": "https://json.schemastore.org/package",
   "name": "poolifier",
-  "version": "5.0.5",
+  "version": "5.0.6",
   "description": "Fast and small Node.js Worker_Threads and Cluster Worker Pool",
   "license": "MIT",
   "type": "module",
index 864ab0a05ff00cbb32cfc82cdd8386b86aae8ae3..3214a37b078c5f7c137e32149decec2f2e35275f 100644 (file)
@@ -4,7 +4,7 @@ sonar.javascript.exclusions=lib/**/*.mjs
 sonar.javascript.lcov.reportPaths=coverage/lcov.info
 sonar.projectName=poolifier
 # x-release-please-start-version
-sonar.projectVersion=5.0.5
+sonar.projectVersion=5.0.6
 # x-release-please-end
 sonar.host.url=https://sonarcloud.io
 #sonar.sources=src
index 347e98556c558b479ab7939043bd5c2319e02fdc..81c7c13ce55daae2fe4c010794336d719288d11e 100644 (file)
@@ -1,3 +1,3 @@
 // x-release-please-start-version
-export const version = '5.0.5'
+export const version = '5.0.6'
 // x-release-please-end