Skip to content
This repository has been archived by the owner on Dec 6, 2022. It is now read-only.

Commit

Permalink
2.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
roblourens committed Mar 25, 2017
1 parent e24b8cc commit 2fc6454
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
6 changes: 2 additions & 4 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
},
{
Expand All @@ -30,7 +30,6 @@
"--reporter", "out/test/int/loggingReporter.js",
"--timeout", "1800000"
],
"sourceMaps": true,
"outFiles": ["${workspaceRoot}/out/**/*.js"]
},
{
Expand All @@ -41,7 +40,6 @@
"args": [
"--extensionDevelopmentPath=${workspaceRoot}"
],
"sourceMaps": true,
"outFiles": [ "${workspaceRoot}/out/**/*.js" ]
}
]
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand All @@ -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"
},
Expand Down

0 comments on commit 2fc6454

Please sign in to comment.