From: Jérôme Benoit Date: Tue, 15 Jul 2025 09:59:44 +0000 (+0200) Subject: chore(master): release 5.1.0 (#2925) X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=2097c2b65b932ce8d17858bb7505355897026a3f;p=poolifier.git chore(master): release 5.1.0 (#2925) * chore(master): release 5.1.0 * [autofix.ci] apply automated fixes --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> --- diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index 705c2170a..affd1ab3d 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,3 +1,3 @@ { - ".": "5.0.9" + ".": "5.1.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ab77307a..70b1a0a9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.1.0](https://github.com/poolifier/poolifier/compare/v5.0.9...v5.1.0) (2025-07-15) + + +### 🚀 Features + +* account task wait time in least ELU strategy ([673d651](https://github.com/poolifier/poolifier/commit/673d651cc621bcf2325bd31df7f6850c81371c4a)) + + +### ✨ Polish + +* **queue:** cleanup variables namespace ([5434cce](https://github.com/poolifier/poolifier/commit/5434cce8cce124245882592ee9ab753b06cfaf41)) + + +### 🧪 Tests + +* add sleep to avoid skipping ([a8135dd](https://github.com/poolifier/poolifier/commit/a8135ddb06a374b77a8ffc44586e52c39cd44b41)) +* delay pool destroy ([68e5663](https://github.com/poolifier/poolifier/commit/68e5663a85ec5932a71abc81b938a730934d1fb5)) +* reduce mocha timeout ([fe509db](https://github.com/poolifier/poolifier/commit/fe509dbdd8a07d94dae66064a8d7db3e928db493)) +* revert test skipping ([3d9c240](https://github.com/poolifier/poolifier/commit/3d9c240c28e65c370e882ffbb95e41d8ee2758f0)) + + +### 📚 Documentation + +* publish documentation ([8dae565](https://github.com/poolifier/poolifier/commit/8dae56540d73d286eeed363c336515308760ea28)) + + +### 🤖 Automation + +* **deps-dev:** bump the regular group with 2 updates ([#2927](https://github.com/poolifier/poolifier/issues/2927)) ([b39240e](https://github.com/poolifier/poolifier/commit/b39240ece1de9c5c38aca80383addf40fab13252)) +* **deps:** bump the regular group across 11 directories with 1 update ([#2926](https://github.com/poolifier/poolifier/issues/2926)) ([92acda5](https://github.com/poolifier/poolifier/commit/92acda5bd41bfe92f253e929986d3ad11c6a834a)) + ## [5.0.9](https://github.com/poolifier/poolifier/compare/v5.0.8...v5.0.9) (2025-07-11) diff --git a/jsr.json b/jsr.json index aecc30b01..779b59f42 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.0.9", + "version": "5.1.0", "exports": "./src/index.ts", "publish": { "include": ["LICENSE", "README.md", "jsr.json", "src/**/*.ts"] diff --git a/package.json b/package.json index dbc0b508a..c042bb225 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "$schema": "https://json.schemastore.org/package", "name": "poolifier", - "version": "5.0.9", + "version": "5.1.0", "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 54472daf2..e59f54860 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.0.9 +sonar.projectVersion=5.1.0 # 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 2e667b966..f48cb5568 100644 --- a/src/pools/version.ts +++ b/src/pools/version.ts @@ -1,3 +1,3 @@ // x-release-please-start-version -export const version = '5.0.9' +export const version = '5.1.0' // x-release-please-end