Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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.6.1"
".": "0.6.2"
}
41 changes: 41 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,47 @@ 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.6.2](https://github.com/poolifier/poolifier-web-worker/compare/v0.6.1...v0.6.2) (2026-02-23)

### 🐞 Bug Fixes

Copy link

Copilot AI Feb 20, 2026

Choose a reason for hiding this comment

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

The entry “add missing loadExponent: 0 validation test” describes a test addition rather than a bug fix. To keep the changelog accurate, consider moving it to a “Tests”/“Chore” section (or renaming the section) so readers don’t interpret it as a runtime behavior change.

Suggested change
### 🧪 Tests

Copilot uses AI. Check for mistakes.
- add missing loadExponent: 0 validation test
([f8500ee](https://github.com/poolifier/poolifier-web-worker/commit/f8500eece48bd35c1b46b536c93be699a2e1d7f3))
- **deps:** update dependency poolifier-web-worker to ^0.6.1
([#130](https://github.com/poolifier/poolifier-web-worker/issues/130))
([ca51b78](https://github.com/poolifier/poolifier-web-worker/commit/ca51b78dd950028e35993a9a69126c10f69b952e))
- remove incorrectly added test code during commit port
([5b84f16](https://github.com/poolifier/poolifier-web-worker/commit/5b84f16607b3ddb5d93cbf1b2549b4bad19271bb))
- **test:** ignore flaky workerNodeKeys affinity test on Deno v1.x macOS
([68b8451](https://github.com/poolifier/poolifier-web-worker/commit/68b8451680e32c1d7ff0297f0ad1c390790c81ac))
- **test:** restore anonymous function tests in isAsyncFunction()
([08ae153](https://github.com/poolifier/poolifier-web-worker/commit/08ae153c34ad2f7a0b21e6fc1b49a75b07353f87))
- **test:** use FakeTime for sleep() test to avoid flakiness
([30d9f25](https://github.com/poolifier/poolifier-web-worker/commit/30d9f25d9c8e75af577ac6f48405e94d2f736423))
- **test:** use try/finally instead of 'using' for Deno v1.x compatibility
([c0bd174](https://github.com/poolifier/poolifier-web-worker/commit/c0bd1743ec4a09efa02a7ab26cc713d6e059f81b))

### 🧪 Tests

- fix async kill handler test to properly await and verify completion
([b13a9c8](https://github.com/poolifier/poolifier-web-worker/commit/b13a9c818d92f46e853ec484a4bbeb322da64915))
- harmonize comments with upstream poolifier style
([7cf03cc](https://github.com/poolifier/poolifier-web-worker/commit/7cf03cce4f9fd78dc20d353f2bfb0561e0274346))
- port 22 abstract-worker tests from poolifier/poolifier
([fbbe842](https://github.com/poolifier/poolifier-web-worker/commit/fbbe8427987939a8db057334aa73577ee4ea46ca))

### 📚 Documentation

- add Git hooks installation instructions
([b97f368](https://github.com/poolifier/poolifier-web-worker/commit/b97f36875888f228a071af6c85c5df84d84ce294))
- consolidate multiple task functions features in README
([370f1c2](https://github.com/poolifier/poolifier-web-worker/commit/370f1c217d329247a2c369d2290b9d5e296baf58))

### 🤖 Automation

- add pre-commit hooks for formatting and linting
([846b88d](https://github.com/poolifier/poolifier-web-worker/commit/846b88d42440c5418ce5d9f22b3a7fbf0a682000))

## [0.6.1](https://github.com/poolifier/poolifier-web-worker/compare/v0.6.0...v0.6.1) (2026-02-20)

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

Copy link

Copilot AI Feb 20, 2026

Choose a reason for hiding this comment

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

The fenced code block is labeled as js but contains an HTML <script> tag. Consider changing the fence language to html (or splitting into separate html and js blocks) so syntax highlighting and copy/paste expectations match the example.

Copilot uses AI. Check for mistakes.
```js
<script type="module">import { ThreadWorker } from 'https://cdn.jsdelivr.net/npm/poolifier-web-worker@0.6.1/browser/mod.js'</script>
<script type="module">import { ThreadWorker } from 'https://cdn.jsdelivr.net/npm/poolifier-web-worker@0.6.2/browser/mod.js'</script>
```

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

Expand Down
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@poolifier/poolifier-web-worker",
"version": "0.6.1",
"version": "0.6.2",
"exports": "./src/mod.ts",
"compilerOptions": {
"lib": [
Expand Down
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.6.1",
"version": "0.6.2",
"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.6.1"
"@poolifier/poolifier-web-worker": "jsr:@poolifier/poolifier-web-worker@^0.6.2"
},
"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.6.1"
"@poolifier/poolifier-web-worker": "jsr:@poolifier/poolifier-web-worker@^0.6.2"
},
"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.6.1
sonar.projectVersion=0.6.2
# 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.6.1'
export const version = '0.6.2'
// x-release-please-end