From 053036eabf41fd3ee8288ac5f3ff7c739696ab66 Mon Sep 17 00:00:00 2001 From: roblou Date: Sun, 27 Nov 2016 18:35:13 -0800 Subject: [PATCH] 2.3.0 --- CHANGELOG.md | 11 ++++++++++- package.json | 4 ++-- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d2bebd0b..17e7a8f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,19 @@ +## 2.3 +* The restart button will now refresh the page instead of relaunching Chrome (works in Insiders, or VS Code 1.8) - [#91](https://github.com/Microsoft/vscode-chrome-debug-core/issues/91) +* The `experimentalLibraryCode` setting is now called `experimentalSkipFiles` +* The `experimentalSkipFiles` setting now takes a glob pattern instead of a regex - [#127](https://github.com/Microsoft/vscode-chrome-debug-core/issues/127) +* The `experimentalSkipFiles` setting can now take sourcemapped paths to exclude - [#128](https://github.com/Microsoft/vscode-chrome-debug-core/issues/128) +* An issue with breakpoints moving around on a page refresh has hopefully been fixed - [#296](https://github.com/Microsoft/vscode-chrome-debug/issues/296) +* Fix crash "path must be a string" when parsing sourcemaps on some eval scripts - [#268](https://github.com/Microsoft/vscode-chrome-debug/issues/268) +* Fix errors when pausing in chrome extension scripts by blackboxing extension content scripts - [#124](https://github.com/Microsoft/vscode-chrome-debug/issues/124) + ## 2.2.2 * Handle another format of Console.MessageAdded - [#276](https://github.com/Microsoft/vscode-chrome-debug/issues/276) * Fix "Pending breakpoints resolved after refreshing the page sometimes don't bind correctly" - [#279](https://github.com/Microsoft/vscode-chrome-debug/issues/279) * Strip %c color specifiers - [#282](https://github.com/Microsoft/vscode-chrome-debug/issues/282) ## 2.2.1 -* Add the 'experimentalLibraryCode' launch option (see README). +* Add the `experimentalLibraryCode` launch option (see README). * Log unhandled exceptions for [#276](https://github.com/Microsoft/vscode-chrome-debug/issues/276) * Tweak in-box webpack configs to fit default configs that I've seen. * Fix "Breakpoints can go to wrong lines when set in merged files on startup" [#277](https://github.com/Microsoft/vscode-chrome-debug/issues/277) diff --git a/package.json b/package.json index aca7c2cd..ace425a1 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "debugger-for-chrome", "displayName": "Debugger for Chrome", - "version": "2.2.2", + "version": "2.3.0", "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.6.3", + "vscode-chrome-debug-core": "3.7.0", "vscode-debugadapter": "^1.15.0-pre.4", "vscode-debugprotocol": "^1.15.0-pre.4" },