Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/release-please/manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.5.14"
".": "0.5.15"
}
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,28 @@ 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).

## [0.5.15](https://github.com/poolifier/poolifier-web-worker/compare/v0.5.14...v0.5.15) (2025-10-17)


### 🐞 Bug Fixes

* potention race on circular buffer size ([6a9fcd0](https://github.com/poolifier/poolifier-web-worker/commit/6a9fcd0e7fb6348f2cec8341070347f124a42d9f))
Copy link

Copilot AI Oct 17, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Corrected spelling of 'potention' to 'potential'.

Suggested change
* potention race on circular buffer size ([6a9fcd0](https://github.com/poolifier/poolifier-web-worker/commit/6a9fcd0e7fb6348f2cec8341070347f124a42d9f))
* potential race on circular buffer size ([6a9fcd0](https://github.com/poolifier/poolifier-web-worker/commit/6a9fcd0e7fb6348f2cec8341070347f124a42d9f))

Copilot uses AI. Check for mistakes.



### ✨ Polish

* cleanup main deno.json ([7bf4372](https://github.com/poolifier/poolifier-web-worker/commit/7bf4372742f5ab43198b9d988e4f6894bec4cc83))
* cleanup type casting ([6abbc70](https://github.com/poolifier/poolifier-web-worker/commit/6abbc70058e293f98fabde6ad11bf1a21dff35fb))


### πŸ€– Automation

* **deps:** Bump actions/setup-node from 4 to 5 ([#105](https://github.com/poolifier/poolifier-web-worker/issues/105)) ([cb4aab3](https://github.com/poolifier/poolifier-web-worker/commit/cb4aab38abce29ea5bab1b2433b82c88b116277f))
* **deps:** Bump actions/setup-node from 5 to 6 ([#109](https://github.com/poolifier/poolifier-web-worker/issues/109)) ([27b1db2](https://github.com/poolifier/poolifier-web-worker/commit/27b1db2bd28410ff5b975bf99f1e26a5a4f23ef3))
* **deps:** Bump github/codeql-action from 3 to 4 ([#108](https://github.com/poolifier/poolifier-web-worker/issues/108)) ([54b815e](https://github.com/poolifier/poolifier-web-worker/commit/54b815ec96f090651264c55d3778d26b24ff580e))
* **deps:** Bump sonarsource/sonarqube-scan-action from 5.3.0 to 5.3.1 ([#104](https://github.com/poolifier/poolifier-web-worker/issues/104)) ([f6a52c4](https://github.com/poolifier/poolifier-web-worker/commit/f6a52c4ee0049be84e00ef78985f9bff06e7219d))
* **deps:** Bump sonarsource/sonarqube-scan-action from 5.3.1 to 6.0.0 ([#106](https://github.com/poolifier/poolifier-web-worker/issues/106)) ([257c4e8](https://github.com/poolifier/poolifier-web-worker/commit/257c4e80529095ac7aaa1cdb1f50735a1223ca0f))

## [0.5.14](https://github.com/poolifier/poolifier-web-worker/compare/v0.5.13...v0.5.14) (2025-08-26)

### 🐞 Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ for more details**:
<!-- deno-fmt-ignore -->

```js
<script type="module">import { ThreadWorker } from 'https://cdn.jsdelivr.net/npm/poolifier-web-worker@0.5.14/browser/mod.js'</script>
<script type="module">import { ThreadWorker } from 'https://cdn.jsdelivr.net/npm/poolifier-web-worker@0.5.15/browser/mod.js'</script>
```

```js
Expand All @@ -159,7 +159,7 @@ import {
DynamicThreadPool,
FixedThreadPool,
PoolEvents,
} from 'https://cdn.jsdelivr.net/npm/poolifier-web-worker@0.5.14/browser/mod.js'
} from 'https://cdn.jsdelivr.net/npm/poolifier-web-worker@0.5.15/browser/mod.js'
</script>
```

Expand Down
24 changes: 19 additions & 5 deletions deno.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
{
"name": "@poolifier/poolifier-web-worker",
"version": "0.5.14",
"version": "0.5.15",
"exports": "./src/mod.ts",
"compilerOptions": {
"lib": ["deno.worker"],
"lib": [
"deno.worker"
],
"strict": true
},
"tasks": {
Expand All @@ -25,7 +27,9 @@
"documentation": "deno doc ./src/mod.ts"
},
"test": {
"include": ["./tests/**/*.test.mjs"]
"include": [
"./tests/**/*.test.mjs"
]
},
"fmt": {
"semiColons": false,
Expand All @@ -38,8 +42,18 @@
"@std/testing": "jsr:@std/testing@^1.0.15"
},
"publish": {
"include": ["LICENSE", "README.md", "deno.json", "src/**/*.ts"]
"include": [
"LICENSE",
"README.md",
"deno.json",
"src/**/*.ts"
]
},
"exclude": ["./coverage", "./dist/browser", "./dist/esm", "./npm"],
"exclude": [
"./coverage",
"./dist/browser",
"./dist/esm",
"./npm"
],
"lock": false
}
2 changes: 1 addition & 1 deletion dist/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "poolifier-web-worker",
"version": "0.5.14",
"version": "0.5.15",
"description": "poolifier-web-worker",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion examples/deno/javascript/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"imports": {
"@poolifier/poolifier-web-worker": "jsr:@poolifier/poolifier-web-worker@^0.5.14"
"@poolifier/poolifier-web-worker": "jsr:@poolifier/poolifier-web-worker@^0.5.15"
},
"tasks": {
"start:dynamic": "deno run -A ./dynamicExample.js",
Expand Down
2 changes: 1 addition & 1 deletion examples/deno/typescript/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"imports": {
"@poolifier/poolifier-web-worker": "jsr:@poolifier/poolifier-web-worker@^0.5.14"
"@poolifier/poolifier-web-worker": "jsr:@poolifier/poolifier-web-worker@^0.5.15"
},
"tasks": {
"start": "deno run -A ./pool.ts"
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ sonar.organization=poolifier
sonar.typescript.lcov.reportPaths=coverage/lcov.info
sonar.projectName=poolifier-web-worker
# x-release-please-start-version
sonar.projectVersion=0.5.14
sonar.projectVersion=0.5.15
# x-release-please-end
sonar.host.url=https://sonarcloud.io
sonar.sources=src
Expand Down
2 changes: 1 addition & 1 deletion src/pools/version.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// x-release-please-start-version
export const version = '0.5.14'
export const version = '0.5.15'
// x-release-please-end
Loading