From 2199249b4de3b9d282a9cf165d1c32654832ce47 Mon Sep 17 00:00:00 2001 From: Rob Lourens Date: Mon, 3 Apr 2017 20:11:21 -0700 Subject: [PATCH] 2.7.2 --- CHANGELOG.md | 9 ++++++++- package.json | 8 ++++---- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 60006fd6..86929411 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) @@ -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 diff --git a/package.json b/package.json index 2af29c71..1bf2619a 100644 --- a/package.json +++ b/package.json @@ -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": { @@ -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": { @@ -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"