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

Commit

Permalink
2.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
roblourens committed Apr 4, 2017
1 parent 5ec5823 commit 2199249
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 2.7.2
* Fix "pathMapping key must end in '/'" - thanks to [@mlewand](https://github.com/mlewand) for the PR! - [#393](https://github.com/Microsoft/vscode-chrome-debug/issues/393)
* Add "Toggle skipping this file" context menu option to callstack - [Microsoft/vscode-chrome-debug-core#172](https://github.com/Microsoft/vscode-chrome-debug-core/issues/172)
* Document "showAsyncStacks" launch config option (VS Code 1.11 recommended)
* Don't repeat exception description in exception info widget - [Microsoft/vscode-chrome-debug-core#192](https://github.com/Microsoft/vscode-chrome-debug-core/issues/192)
* Fix error in async stacks when no sourcemaps are present

## 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)
Expand All @@ -8,7 +15,7 @@

## 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.
* If you are using VS Code 1.11, set the undocumented property `showAsyncStacks` to see async callstacks.
* Implement `urlFilter` to give 'launch' configs a way to select which page to attach to, e.g. for Electron apps with multiple BrowserWindows - [#382](https://github.com/Microsoft/vscode-chrome-debug/issues/382)
* Nicer error messages when a source map fails to parse - thanks to [nojvek](https://github.com/nojvek) for the PR! - [Microsoft/vscode-chrome-debug-core#188](https://github.com/Microsoft/vscode-chrome-debug-core/issues/188)
* Fix code that prevents the extension from incorrectly attaching to a Chrome extension
Expand Down
8 changes: 4 additions & 4 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.1",
"version": "2.7.2",
"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,8 +22,8 @@
"license": "SEE LICENSE IN LICENSE.txt",
"dependencies": {
"vscode": "^1.0.3",
"vscode-chrome-debug-core": "3.14.10",
"vscode-debugadapter": "^1.18.0-pre.4",
"vscode-chrome-debug-core": "3.14.13",
"vscode-debugadapter": "^1.18.0-pre.5",
"vscode-debugprotocol": "^1.18.0-pre.2"
},
"devDependencies": {
Expand All @@ -44,7 +44,7 @@
"tslint": "^3.15.1",
"typemoq": "^0.3.3",
"typescript": "^2.2.1",
"vscode-chrome-debug-core-testsupport": "^3.14.1",
"vscode-chrome-debug-core-testsupport": "^3.14.3",
"vscode-debugadapter-testsupport": "^1.15.0",
"webpack": "^2.2.0-rc.1",
"webpack-fail-plugin": "^1.0.5"
Expand Down

0 comments on commit 2199249

Please sign in to comment.