diff --git a/.vscode/launch.json b/.vscode/launch.json index 112375b8..47e82682 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -9,10 +9,10 @@ "request": "launch", "cwd": "${workspaceRoot}", "program": "${workspaceRoot}/out/bundle.js", - "runtimeArgs": ["--harmony"], + // "runtimeExecutable": "/Users/roblou/.nvm/versions/node/v6.5.0/bin/node", "stopOnEntry": false, "args": [ "--server=4712" ], - "sourceMaps": true, + // "trace": "verbose", "outFiles": ["${workspaceRoot}/out/**/*.js"] }, { @@ -30,7 +30,6 @@ "--reporter", "out/test/int/loggingReporter.js", "--timeout", "1800000" ], - "sourceMaps": true, "outFiles": ["${workspaceRoot}/out/**/*.js"] }, { @@ -41,7 +40,6 @@ "args": [ "--extensionDevelopmentPath=${workspaceRoot}" ], - "sourceMaps": true, "outFiles": [ "${workspaceRoot}/out/**/*.js" ] } ] diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c26f4cc..60006fd6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 2.7.1 +* Support source mapping of stack traces in the Debug Console - thanks to [nojvek](https://github.com/nojvek) for the PR! - [Microsoft/vscode-chrome-debug-core#190](https://github.com/Microsoft/vscode-chrome-debug-core/issues/190) +* Show error callstack in new Exception widget when pausing on an exception (sourcemapped, thanks to the above) +* Fix BPs sometimes removed when editing while debugging - [Microsoft/vscode#22492](https://github.com/microsoft/vscode/issues/22492) +* Fix some errors when stepping quickly - [Microsoft/vscode#22855](https://github.com/microsoft/vscode/issues/22855) +* Show "Chrome" instead of "Thread 1" as thread name when debugging multiple things at once +* Fix crash when debugging with async callstacks and sourcemaps disabled + ## 2.7.0 * Implement `disableNetworkCache` option - [#358](https://github.com/Microsoft/vscode-chrome-debug/issues/358) * If you are using VS Code 1.11, set the undocumented property `showAyncStacks` to see async callstacks. diff --git a/package.json b/package.json index 85070ba9..22d485a6 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "debugger-for-chrome", "displayName": "Debugger for Chrome", - "version": "2.7.0", + "version": "2.7.1", "icon": "images/icon.png", "description": "Debug your JavaScript code in the Chrome browser, or any other target that supports the Chrome Debugger protocol.", "author": { @@ -22,7 +22,7 @@ "license": "SEE LICENSE IN LICENSE.txt", "dependencies": { "vscode": "^1.0.3", - "vscode-chrome-debug-core": "3.14.7", + "vscode-chrome-debug-core": "3.14.10", "vscode-debugadapter": "^1.18.0-pre.4", "vscode-debugprotocol": "^1.18.0-pre.2" },