Skip to content

Commit

Permalink
Merge branch 'develop' into feature/refactor-worker-interface
Browse files Browse the repository at this point in the history
  • Loading branch information
appurva21 authored Sep 24, 2024
2 parents b83a7f0 + 9019568 commit 6140e1e
Show file tree
Hide file tree
Showing 5 changed files with 172 additions and 254 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [16, 18]
node-version: [18, 20]
os: [ubuntu-latest, windows-latest]
include:
- coverage: true
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
unreleased:
breaking changes:
- GH-715 Dropped support for Node < v18
fixed bugs:
- GH-711 Fixed an issue where boot code was not being garbage collected
chores:
Expand Down
6 changes: 5 additions & 1 deletion lib/worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ class NodeWorker extends Worker {
super(bootCode, {
eval: true,
stdout: !options?.debug,
stderr: !options?.debug
stderr: !options?.debug,
execArgv: [
// TODO: To be removed when support for Node.js v18 is dropped
'--experimental-global-webcrypto'
]
});
}

Expand Down
Loading

0 comments on commit 6140e1e

Please sign in to comment.