chore(master): release 4.2.10 (#2556)
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 6 Sep 2024 17:48:20 +0000 (19:48 +0200)
committerGitHub <noreply@github.com>
Fri, 6 Sep 2024 17:48:20 +0000 (19:48 +0200)
* chore(master): release 4.2.10

* [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 a1e535d9bbd3359c9fc0568edbcf557d41564565..0b8c185f5a8796be4419cd0b5c90e8410508c4ba 100644 (file)
@@ -1,3 +1,3 @@
 {
-  ".": "4.2.9"
+  ".": "4.2.10"
 }
index fd91bf0c4e6a271b6aef41fca931f7ecc1e8f510..de6b32712c5799dafad9aa026319a08b3d97daed 100644 (file)
@@ -5,6 +5,44 @@ 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).
 
+## [4.2.10](https://github.com/poolifier/poolifier/compare/v4.2.9...v4.2.10) (2024-09-06)
+
+
+### ⚡ Performance
+
+* optimize backpressure task(s) stealing conditions ([9df97af](https://github.com/poolifier/poolifier/commit/9df97afd77c24c8850e0d56eae3d3c66df181981))
+
+
+### ✨ Polish
+
+* add `isWorkerNodeStealing()` helper ([febcf8e](https://github.com/poolifier/poolifier/commit/febcf8e370ebf9ed2e45ba25296e937277d61e93))
+* factor out stealing ratio conditions check into an helper ([207df8a](https://github.com/poolifier/poolifier/commit/207df8aa5381ac3d3ca1f10d9cb79e01593ba10f))
+
+
+### 🧪 Tests
+
+* cleanup error handling expectations ([d960e54](https://github.com/poolifier/poolifier/commit/d960e542b476b90385e962c9be41422860310426))
+
+
+### 📚 Documentation
+
+* add `mapExecute` implementation to fastify examples plugin ([3924d83](https://github.com/poolifier/poolifier/commit/3924d83878275190248eb13b8f814b82c7dde655))
+* add missing `mapExecute` type definition to fastify examples ([83572f4](https://github.com/poolifier/poolifier/commit/83572f443b105de35a127423b53909fab3bd6ced))
+* code cleanup in examples ([24bc951](https://github.com/poolifier/poolifier/commit/24bc951b90abfe7a365ef6323888d51fde479552))
+* publish documentation ([d3a3b16](https://github.com/poolifier/poolifier/commit/d3a3b16f4443cdfda453e56570a0873863df2d03))
+* switch to `mapExecute()` in examples ([8162986](https://github.com/poolifier/poolifier/commit/8162986eb9aff717ad56bed372abd6c63fe2a31d))
+
+
+### 🤖 Automation
+
+* **deps-dev:** bump @types/node in the regular group ([fb8923f](https://github.com/poolifier/poolifier/commit/fb8923f8a793d0ba9b47834885bf63ea64346229))
+* **deps-dev:** bump the regular group across 11 directories with 1 update ([8ae78fb](https://github.com/poolifier/poolifier/commit/8ae78fbe85be6e5f61fa4f96f3ee93c1ce006bf7))
+* **deps-dev:** bump the regular group across 11 directories with 1 update ([4a2b738](https://github.com/poolifier/poolifier/commit/4a2b73815c9a8903ac44358c8e6e182ceb2657f5))
+* **deps-dev:** bump the regular group with 2 updates ([b1b652f](https://github.com/poolifier/poolifier/commit/b1b652f50ff2a3b1a55072a1f07955b7c1a262c0))
+* **deps:** bump nodemailer ([552013f](https://github.com/poolifier/poolifier/commit/552013f092a9785c5a80b8849c462a5b75ac5d3d))
+* **deps:** bump the regular group across 11 directories with 2 updates ([302fa26](https://github.com/poolifier/poolifier/commit/302fa26acd5997c297caa723095d36890d4390e1))
+* **deps:** bump the regular group across 11 directories with 2 updates ([#2557](https://github.com/poolifier/poolifier/issues/2557)) ([eb97198](https://github.com/poolifier/poolifier/commit/eb97198de6c8c4a407009c4b1c56497aae41b11a))
+
 ## [4.2.9](https://github.com/poolifier/poolifier/compare/v4.2.8...v4.2.9) (2024-08-30)
 
 
index 3829ae74b2e26065ed493075ecc41f20564d221a..b232e2cff68778ede008c58153b35fe24a7fe207 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": "4.2.9",
+  "version": "4.2.10",
   "exports": "./src/index.ts",
   "publish": {
     "include": ["LICENSE", "README.md", "jsr.json", "src/**/*.ts"]
index fb9399ebc6d5f19442f86bf98fd414408585d901..ec582f6c5d5bbcc0a8a59444634cac81f9682448 100644 (file)
@@ -1,7 +1,7 @@
 {
   "$schema": "https://json.schemastore.org/package",
   "name": "poolifier",
-  "version": "4.2.9",
+  "version": "4.2.10",
   "description": "Fast and small Node.js Worker_Threads and Cluster Worker Pool",
   "license": "MIT",
   "type": "module",
index bb4f9f436dbf6754da6e7aec0f69b1fc14dac575..d2bb25dc194c63db9e3751f2fbd0cc862ca32127 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=4.2.9
+sonar.projectVersion=4.2.10
 # x-release-please-end
 sonar.host.url=https://sonarcloud.io
 #sonar.sources=src
index e4a7201b1c4a991cb76be647ab8a50e25e79028b..5f6b65b1a4c6a9c3242b649b1ae0c9bd21aad5c9 100644 (file)
@@ -1,3 +1,3 @@
 // x-release-please-start-version
-export const version = '4.2.9'
+export const version = '4.2.10'
 // x-release-please-end