We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 10334f8 + 17adbeb commit 7bacc4fCopy full SHA for 7bacc4f
CHANGELOG.md
@@ -1,5 +1,23 @@
1
# Changelog
2
3
+## v0.10.3
4
+
5
+### Date: 2/02/2024
6
7
+### Changes:
8
9
+- Make the minimum Node version 12
10
+- It's now possible to specify an object for `denoUnstable`, which can let you enable more fine-grained unstable flags.
11
12
+```ts
13
+new DenoWorker(echoScript, {
14
+ denoUnstable: {
15
+ temporal: true,
16
+ broadcastChannel: true,
17
+ },
18
+});
19
+```
20
21
## v0.10.2
22
23
### Date: 1/29/2024
package.json
@@ -1,6 +1,6 @@
{
"name": "deno-vm",
- "version": "0.10.2",
+ "version": "0.10.3",
"description": "A VM module that provides a secure runtime environment via Deno.",
"main": "./dist/cjs/index.js",
"types": "./dist/typings/index.d.ts",
0 commit comments