Skip to content

Commit f7d06e7

Browse files
chore(master): release 0.5.8 (#92)
* chore(master): release 0.5.8 * [autofix.ci] apply automated fixes --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
1 parent e604297 commit f7d06e7

File tree

14 files changed

+51
-18
lines changed

14 files changed

+51
-18
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.5.7"
2+
".": "0.5.8"
33
}

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,25 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to
77
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88

9+
## [0.5.8](https://github.com/poolifier/poolifier-web-worker/compare/v0.5.7...v0.5.8) (2025-07-28)
10+
11+
### 🐞 Bug Fixes
12+
13+
- worker specifier can be a string or an URL instance
14+
([#95](https://github.com/poolifier/poolifier-web-worker/issues/95))
15+
([e604297](https://github.com/poolifier/poolifier-web-worker/commit/e604297b55c80efcfac9e152296fe4b3c75e7762))
16+
17+
### ✨ Polish
18+
19+
- avoid delete usage
20+
([f186842](https://github.com/poolifier/poolifier-web-worker/commit/f186842ec30dcaea961a3e817b2513ee3b470fff))
21+
22+
### 🤖 Automation
23+
24+
- **deps:** Bump sonarsource/sonarqube-scan-action from 5.2.0 to 5.3.0
25+
([#93](https://github.com/poolifier/poolifier-web-worker/issues/93))
26+
([78e6f7d](https://github.com/poolifier/poolifier-web-worker/commit/78e6f7db56110db463bdb580bd1da9653b730935))
27+
928
## [0.5.7](https://github.com/poolifier/poolifier-web-worker/compare/v0.5.6...v0.5.7) (2025-07-15)
1029

1130
### ✨ Polish

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ for more details**:
149149
<!-- deno-fmt-ignore -->
150150

151151
```js
152-
<script type="module">import { ThreadWorker } from 'https://cdn.jsdelivr.net/npm/[email protected].7/browser/mod.js'</script>
152+
<script type="module">import { ThreadWorker } from 'https://cdn.jsdelivr.net/npm/[email protected].8/browser/mod.js'</script>
153153
```
154154

155155
```js
@@ -159,7 +159,7 @@ import {
159159
DynamicThreadPool,
160160
FixedThreadPool,
161161
PoolEvents,
162-
} from 'https://cdn.jsdelivr.net/npm/[email protected].7/browser/mod.js'
162+
} from 'https://cdn.jsdelivr.net/npm/[email protected].8/browser/mod.js'
163163
</script>
164164
```
165165

deno.json

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
{
22
"name": "@poolifier/poolifier-web-worker",
3-
"version": "0.5.7",
3+
"version": "0.5.8",
44
"exports": "./src/mod.ts",
55
"compilerOptions": {
6-
"lib": ["deno.worker"],
6+
"lib": [
7+
"deno.worker"
8+
],
79
"strict": true
810
},
911
"tasks": {
@@ -25,7 +27,9 @@
2527
"documentation": "deno doc ./src/mod.ts"
2628
},
2729
"test": {
28-
"include": ["./tests/**/*.test.mjs"]
30+
"include": [
31+
"./tests/**/*.test.mjs"
32+
]
2933
},
3034
"fmt": {
3135
"semiColons": false,
@@ -38,8 +42,18 @@
3842
"@std/testing": "jsr:@std/testing@^1.0.15"
3943
},
4044
"publish": {
41-
"include": ["LICENSE", "README.md", "deno.json", "src/**/*.ts"]
45+
"include": [
46+
"LICENSE",
47+
"README.md",
48+
"deno.json",
49+
"src/**/*.ts"
50+
]
4251
},
4352
"lock": false,
44-
"exclude": ["./coverage", "./dist/browser", "./dist/esm", "./npm"]
53+
"exclude": [
54+
"./coverage",
55+
"./dist/browser",
56+
"./dist/esm",
57+
"./npm"
58+
]
4559
}

dist/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "poolifier-web-worker",
3-
"version": "0.5.7",
3+
"version": "0.5.8",
44
"description": "poolifier-web-worker",
55
"repository": {
66
"type": "git",

examples/deno/javascript/dynamicExample.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import {
22
availableParallelism,
33
DynamicThreadPool,
44
PoolEvents,
5-
} from 'jsr:@poolifier/poolifier-web-worker@^0.5.7' // x-release-please-version
5+
} from 'jsr:@poolifier/poolifier-web-worker@^0.5.8' // x-release-please-version
66

77
const pool = new DynamicThreadPool(
88
Math.floor(availableParallelism() / 2),

examples/deno/javascript/fixedExample.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import {
22
availableParallelism,
33
FixedThreadPool,
44
PoolEvents,
5-
} from 'jsr:@poolifier/poolifier-web-worker@^0.5.7' // x-release-please-version
5+
} from 'jsr:@poolifier/poolifier-web-worker@^0.5.8' // x-release-please-version
66

77
const pool = new FixedThreadPool(
88
availableParallelism(),

examples/deno/javascript/multiFunctionExample.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {
22
availableParallelism,
33
FixedThreadPool,
4-
} from 'jsr:@poolifier/poolifier-web-worker@^0.5.7' // x-release-please-version
4+
} from 'jsr:@poolifier/poolifier-web-worker@^0.5.8' // x-release-please-version
55

66
const pool = new FixedThreadPool(
77
availableParallelism(),

examples/deno/javascript/multiFunctionWorker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ThreadWorker } from 'jsr:@poolifier/poolifier-web-worker@^0.5.7' // x-release-please-version
1+
import { ThreadWorker } from 'jsr:@poolifier/poolifier-web-worker@^0.5.8' // x-release-please-version
22

33
function fn0(data) {
44
console.info('Executing fn0')

examples/deno/javascript/yourWorker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ThreadWorker } from 'jsr:@poolifier/poolifier-web-worker@^0.5.7' // x-release-please-version
1+
import { ThreadWorker } from 'jsr:@poolifier/poolifier-web-worker@^0.5.8' // x-release-please-version
22

33
function yourFunction() {
44
for (let i = 0; i <= 1000; i++) {

0 commit comments

Comments
 (0)