From a7428008f2d00e66174591744857785d3da57445 Mon Sep 17 00:00:00 2001 From: Rob Lourens Date: Tue, 15 Aug 2017 22:23:37 -0700 Subject: [PATCH] 3.1.8 --- .vscode/launch.json | 3 --- .vscode/tasks.json | 3 +-- CHANGELOG.md | 6 ++++++ package.json | 4 ++-- testapp/.vscode/launch.json | 3 ++- 5 files changed, 11 insertions(+), 8 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 0cdf881b..2ffe6608 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -8,9 +8,6 @@ "protocol": "inspector", "request": "launch", "cwd": "${workspaceRoot}", - "runtimeArgs": [ - "--preserve-symlinks" - ], "program": "${workspaceRoot}/out/bundle.js", // "runtimeExecutable": "/Users/roblou/.nvm/versions/node/v6.5.0/bin/node", "stopOnEntry": false, diff --git a/.vscode/tasks.json b/.vscode/tasks.json index c6470b50..85e53c5c 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -8,8 +8,7 @@ "group": { "kind": "build", "isDefault": true - }, - "isBackground": true + } } ] } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f047de0..46d60aac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 3.1.8 +* Fix for old runtimes that don't support setAsyncCallStackDepth - [Microsoft/vscode-chrome-debug-core#226](https://github.com/microsoft/vscode-chrome-debug-core/issues/226) +* Download sourcemaps referenced with file:/// properly - [Microsoft/vscode-chrome-debug-core#205](https://github.com/microsoft/vscode-chrome-debug-core/issues/205) +* Fix errors when stepping too quickly - [Microsoft/vscode#27696](https://github.com/Microsoft/vscode/issues/27696) +* Fix some values not formatted correctly in the debug console - [Microsoft/vscode#32064](https://github.com/Microsoft/vscode/issues/32064) + ## 3.1.7 * Fix hover on variables defined in async functions using TS transpilation - [Microsoft/vscode#31469](https://github.com/Microsoft/vscode/issues/31469) * Decrease extension package size diff --git a/package.json b/package.json index 6dd770fe..1abecbef 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "debugger-for-chrome", "displayName": "Debugger for Chrome", - "version": "3.1.7", + "version": "3.1.8", "icon": "images/icon.png", "description": "Debug your JavaScript code in the Chrome browser, or any other target that supports the Chrome Debugger protocol.", "author": { @@ -21,7 +21,7 @@ ], "license": "SEE LICENSE IN LICENSE.txt", "dependencies": { - "vscode-chrome-debug-core": "3.16.4", + "vscode-chrome-debug-core": "3.16.5", "vscode-debugadapter": "^1.22.0" }, "devDependencies": { diff --git a/testapp/.vscode/launch.json b/testapp/.vscode/launch.json index 770f66fa..27aee697 100644 --- a/testapp/.vscode/launch.json +++ b/testapp/.vscode/launch.json @@ -2,7 +2,7 @@ "version": "0.1.0", "configurations": [ { - "debugServer": 4712, + // "debugServer": 4712, "name": "test chrome", "type": "chrome", "request": "launch", @@ -14,6 +14,7 @@ }, // "webRoot": "${workspaceRoot}/wwwroot", "showAsyncStacks": true, + // "runtimeExecutable": "/Applications/Google Chrome Canary.app/Contents/MacOS/Google Chrome Canary", "disableNetworkCache": true, "trace": true },