chore(master): release 4.0.18
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Thu, 11 Jul 2024 17:06:27 +0000 (19:06 +0200)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Thu, 11 Jul 2024 17:06:27 +0000 (19:06 +0200)
.github/release-please/manifest.json
CHANGELOG.md
jsr.json
package.json
sonar-project.properties
src/pools/version.ts

index b6fb05ae349f5a7b68a1d06b86f7a19d3af79349..4ab8830bb68302b315d2843eb69dfc5aa08811e3 100644 (file)
@@ -1,3 +1,3 @@
 {
-  ".": "4.0.17"
+  ".": "4.0.18"
 }
index 673860c6aac28be18ee35f94ecb5a976747ff05c..8e3ffd344e13b47d0f3d7b3ea1c8fde80d028f15 100644 (file)
@@ -5,6 +5,35 @@ 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.0.18](https://github.com/poolifier/poolifier/compare/v4.0.17...v4.0.18) (2024-07-11)
+
+
+### 🐞 Bug Fixes
+
+* null exception when a task errored ([ac5ee55](https://github.com/poolifier/poolifier/commit/ac5ee55ef0ad7dc29f3d0bc6906e2e127dc2e026))
+
+
+### ✨ Polish
+
+* **priority-queue:** cleanup intermediate variables namespace ([bb5d86b](https://github.com/poolifier/poolifier/commit/bb5d86b228984c83011f07de7b012f1fcd48fe0a))
+
+
+### 🧪 Tests
+
+* improve WorkerNode init coverage ([bcac180](https://github.com/poolifier/poolifier/commit/bcac1803a87e7cbb6fcbebd691a322d796266329))
+
+
+### 📚 Documentation
+
+* fix CHANGELOG.md formatting ([1823a63](https://github.com/poolifier/poolifier/commit/1823a63f7348cbe1a954b8d3a431bb8087cf8b76))
+* flag WorkerChoiceStrategiesContext class as internal ([9eacd2e](https://github.com/poolifier/poolifier/commit/9eacd2e07943c40c0b984de621fc9542f959aed6))
+* publish documentation ([62d0f6f](https://github.com/poolifier/poolifier/commit/62d0f6fe252439cf9a7d71c290a3f1a162aeb829))
+
+
+### 🤖 Automation
+
+* **deps-dev:** bump tatami-ng from 0.4.16 to 0.5.1 ([#2453](https://github.com/poolifier/poolifier/issues/2453)) ([d7b4ed8](https://github.com/poolifier/poolifier/commit/d7b4ed89bb9f65c94af724ec2de0de7f19bbdc64))
+
 ## [4.0.17](https://github.com/poolifier/poolifier/compare/v4.0.16...v4.0.17) (2024-07-07)
 
 ### ⚡ Performance
index 38463ac21535e577d43b257ad5476eb1ca7209de..2d837025b1ed85777d6b1c5f0c0e411ed159a1f1 100644 (file)
--- a/jsr.json
+++ b/jsr.json
@@ -1,9 +1,14 @@
 {
   "$schema": "https://jsr.io/schema/config-file.v1.json",
   "name": "@poolifier/poolifier",
-  "version": "4.0.17",
+  "version": "4.0.18",
   "exports": "./src/index.ts",
   "publish": {
-    "include": ["LICENSE", "README.md", "jsr.json", "src/**/*.ts"]
+    "include": [
+      "LICENSE",
+      "README.md",
+      "jsr.json",
+      "src/**/*.ts"
+    ]
   }
 }
index 1965a46c09d1e341734dd3a33234cdc6d239df37..d9aa07728c71e720dcf8975a7f6f21e350140d10 100644 (file)
@@ -1,7 +1,7 @@
 {
   "$schema": "https://json.schemastore.org/package",
   "name": "poolifier",
-  "version": "4.0.17",
+  "version": "4.0.18",
   "description": "Fast and small Node.js Worker_Threads and Cluster Worker Pool",
   "license": "MIT",
   "type": "module",
@@ -93,7 +93,9 @@
     "url": "https://github.com/poolifier/poolifier/issues"
   },
   "homepage": "https://github.com/poolifier/poolifier#readme",
-  "files": ["lib"],
+  "files": [
+    "lib"
+  ],
   "pnpm": {
     "overrides": {
       "semver": "^7.5.3"
index c92eb9494f2321bc1e8c895461842ead994a4f82..90b11e06190a2434a0d1c1e74dd0e8ca18787694 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.0.17
+sonar.projectVersion=4.0.18
 # x-release-please-end
 sonar.host.url=https://sonarcloud.io
 #sonar.sources=src
index b50a74e2f3791fc93ce2525b0b1b172c9baa4032..610bd0151f86667d073addfedde749f86b88a7c1 100644 (file)
@@ -1,3 +1,3 @@
 // x-release-please-start-version
-export const version = '4.0.17'
+export const version = '4.0.18'
 // x-release-please-end