From ed0bd1600995856a7b3776e1022339b49a02c85a Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Tue, 26 Aug 2025 16:40:32 +0200 Subject: [PATCH] chore(master): release 5.1.6 (#2965) * chore(master): release 5.1.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 | 2 +- CHANGELOG.md | 23 +++++++++++++++++++++++ jsr.json | 2 +- package.json | 2 +- sonar-project.properties | 2 +- src/pools/version.ts | 2 +- 6 files changed, 28 insertions(+), 5 deletions(-) diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index 1a934d8da..4012e7a3a 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,3 +1,3 @@ { - ".": "5.1.5" + ".": "5.1.6" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 27a1be9ef..796fa6198 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,29 @@ 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.1.6](https://github.com/poolifier/poolifier/compare/v5.1.5...v5.1.6) (2025-08-26) + + +### 🐞 Bug Fixes + +* use strict object equality in tasks stealing code ([eec0932](https://github.com/poolifier/poolifier/commit/eec09324ae02df9fe24c12c39cb2c7e802708c90)) + + +### ✨ Polish + +* cleanup nested conditions ([4377e4a](https://github.com/poolifier/poolifier/commit/4377e4a60ced3b5b91e2592ca573a08ecb2ce188)) + + +### 📚 Documentation + +* publish documentation ([161a550](https://github.com/poolifier/poolifier/commit/161a5501c5d948ff01c592c0b2b511f03e6fec86)) + + +### 🤖 Automation + +* **deps-dev:** bump the regular group with 2 updates ([#2966](https://github.com/poolifier/poolifier/issues/2966)) ([b988f54](https://github.com/poolifier/poolifier/commit/b988f5421dc8bdf6f312cc22bf96e7a17c9fdf78)) +* **deps:** bump the regular group across 11 directories with 2 updates ([#2967](https://github.com/poolifier/poolifier/issues/2967)) ([4119b66](https://github.com/poolifier/poolifier/commit/4119b66209e0af8dd254aae51f83fe3065491f6d)) + ## [5.1.5](https://github.com/poolifier/poolifier/compare/v5.1.4...v5.1.5) (2025-08-23) diff --git a/jsr.json b/jsr.json index cb6890619..aa80c43fe 100644 --- a/jsr.json +++ b/jsr.json @@ -1,7 +1,7 @@ { "$schema": "https://jsr.io/schema/config-file.v1.json", "name": "@poolifier/poolifier", - "version": "5.1.5", + "version": "5.1.6", "exports": "./src/index.ts", "publish": { "include": ["LICENSE", "README.md", "jsr.json", "src/**/*.ts"] diff --git a/package.json b/package.json index fb6468abc..34a403e6e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "$schema": "https://json.schemastore.org/package", "name": "poolifier", - "version": "5.1.5", + "version": "5.1.6", "description": "Fast and small Node.js Worker_Threads and Cluster Worker Pool", "license": "MIT", "type": "module", diff --git a/sonar-project.properties b/sonar-project.properties index 32ae273e4..8c2da1fe7 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -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.1.5 +sonar.projectVersion=5.1.6 # x-release-please-end sonar.host.url=https://sonarcloud.io #sonar.sources=src diff --git a/src/pools/version.ts b/src/pools/version.ts index 3e9fa34a9..2838b00dc 100644 --- a/src/pools/version.ts +++ b/src/pools/version.ts @@ -1,3 +1,3 @@ // x-release-please-start-version -export const version = '5.1.5' +export const version = '5.1.6' // x-release-please-end -- 2.43.0