Skip to content

Commit 58b9267

Browse files
committed
chore: Update CHANGELOG and Version
1 parent e874053 commit 58b9267

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## v0.7.4
4+
5+
### Date: 9/10/2020
6+
7+
### Changes:
8+
9+
- Fixed to force the Deno subprocess to close when terminating the worker.
10+
- Forcing the process to be killed seems to be the most reasonable in the case that we're treating these like headless browser tabs.
11+
- When we try to gracefully kill the process, Deno might ignore it if it has things like infinite loops or open handles.
12+
- On Linux/Unix, this means sending a `SIGKILL` signal to the Deno subprocess.
13+
- On Windows, this means using `taskkill` with the `/T` and `/F` options.
14+
315
## v0.7.3
416

517
### Date: 8/28/2020

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "deno-vm",
3-
"version": "0.7.3",
3+
"version": "0.7.4",
44
"description": "A VM module that provides a secure runtime environment via Deno.",
55
"main": "./dist/cjs/index.js",
66
"types": "./dist/typings/index.d.ts",

0 commit comments

Comments
 (0)