Skip to content

Releases: casual-simulation/node-deno-vm

Add `unsafelyIgnoreCertificateErrors` option

12 Apr 18:14
7fe2de1
Compare
Choose a tag to compare

What's Changed

  • Add --unsafely-ignore-certificate-errors flag by @tmcw in #52

Full Changelog: v0.11.0...v0.12.0

v0.11.0

01 Apr 19:33
04e5c5f
Compare
Choose a tag to compare

Changes:

  • Added location option to DenoWorker to let users customize location.href and scoping for caches

v0.10.4

08 Feb 22:21
4fac012
Compare
Choose a tag to compare

Changes:

  • Updated removeEventListener to also remove exit events. (#45)

v0.10.3

02 Feb 17:01
7bacc4f
Compare
Choose a tag to compare

It's now possible to specify an object for denoUnstable, which can let you enable more fine-grained unstable flags.

new DenoWorker(echoScript, {
    denoUnstable: {
        temporal: true,
        broadcastChannel: true,
    },
});

Node 12 is also now the minimum supported engine.

v0.10.2

29 Jan 18:48
Compare
Choose a tag to compare

Changes:

v0.10.1

21 Dec 22:30
Compare
Choose a tag to compare

Changes:

  • Update base64 imports to support Deno std 0.210.0.

v0.10.0

20 Nov 16:19
Compare
Choose a tag to compare

Changes:

  • Added the ability to close the websocket connection to the Deno subprocess with .closeSocket().

v0.9.1

11 Oct 19:59
Compare
Choose a tag to compare

Changes:

  • Fixed an issue where DenoWorker would throw an error when the child Deno process runs out of memory.
    • Thanks to @tmcw for contributing this! (#34)

v0.9.0

15 Sep 14:36
Compare
Choose a tag to compare

Changes:

  • Added the spawnOptions configuration option.
    • Useful for customizing how Node spawns the Deno child process.
    • Thanks to @andreterron for contributing this! (#31)

v0.8.4

25 Jan 05:39
Compare
Choose a tag to compare

Changes:

  • Added the exit event.
    • This event is triggered on DenoWorker instances when the Deno child process exits.
    • Available via the onexit property or by using worker.addEventListener("exit", listener).