Releases: casual-simulation/node-deno-vm
Releases · casual-simulation/node-deno-vm
Add `unsafelyIgnoreCertificateErrors` option
What's Changed
Full Changelog: v0.11.0...v0.12.0
v0.11.0
v0.10.4
v0.10.3
v0.10.2
Changes:
- Added the
denyNet
option to DenoWorker.- This matches the
--deny-net
option in the Deno CLI: https://docs.deno.com/runtime/manual/basics/permissions#permissions-list - Thanks to @andreterron for contributing this! (#41)
- This matches the
v0.10.1
Changes:
- Update base64 imports to support Deno std 0.210.0.
- Thanks to @andreterron for contributing this! (#40)
v0.10.0
Changes:
- Added the ability to close the websocket connection to the Deno subprocess with
.closeSocket()
.- Thanks to @andreterron for contributing this! (#39)
v0.9.1
v0.9.0
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
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 usingworker.addEventListener("exit", listener)
.
- This event is triggered on