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

Releases: microsoft/vscode-chrome-debug

v2.5.4

24 Feb 06:14
Compare
Choose a tag to compare
  • pathMapping doesn't work on attaching to existing tab, thanks for the PR from llgcode - Microsoft/vscode#175
  • Disabled column BPs for VS Code 1.10, since they aren't supported yet.
  • Don't show TypeError for watch when not at a BP - Microsoft/vscode#173

v2.5.3

08 Feb 21:51
Compare
Choose a tag to compare
  • Fix "Cannot read property 'line' of null", breakpoints not working - #353

v2.5.2

04 Feb 05:35
Compare
Choose a tag to compare

v2.5.0

31 Jan 05:38
Compare
Choose a tag to compare

v2.4.2

04 Jan 19:48
Compare
Choose a tag to compare
  • Enable sourceMaps by default. You no longer need to set "sourceMaps": true in your launch config, but can set it to false to disable loading sourcemaps - #134
  • Fix boolean properties showing as strings - #312
  • Fix unhandled exceptions not being logged to the console - #130

v2.4.1

16 Dec 20:05
Compare
Choose a tag to compare
  • Fix hover not working when using sourcemaps, and scripts are not on disk - #309

v2.4.0

13 Dec 17:00
Compare
Choose a tag to compare
  • Change experimentalSkipFiles name to skipFiles, as this feature is shipping with the Node debugger in 1.8.
  • Fix issues with hover by correctly applying sourcemaps to scope locations - #141

v2.3.1

28 Nov 19:05
Compare
Choose a tag to compare
  • Fix crash when refreshing the page in some cases - #297

v2.3.0

28 Nov 04:06
Compare
Choose a tag to compare
  • The restart button will now refresh the page instead of relaunching Chrome (works in Insiders, or VS Code 1.8) - #91
  • The experimentalLibraryCode setting is now called experimentalSkipFiles
  • The experimentalSkipFiles setting now takes a glob pattern instead of a regex - #127
  • The experimentalSkipFiles setting can now take sourcemapped paths to exclude - #128
  • An issue with breakpoints moving around on a page refresh has hopefully been fixed - #296
  • Fix crash "path must be a string" when parsing sourcemaps on some eval scripts - #268
  • Fix errors when pausing in chrome extension scripts by blackboxing extension content scripts - #124

v2.2.0

04 Nov 00:21
Compare
Choose a tag to compare
  • Implement the .scripts command in the debug console to print all the scripts loaded in Chrome, their sourcemap details, and inferred local paths, to make it easier to debug a project's debug config. See the README for more details.
  • Make the "Add watch" context menu item work much more robustly.
  • Fix "Console logs missing in pre-Chrome 54" #265
  • Fix "sourceMapPathOverrides matching doesn't work when sourceRoot does not end in /" - Microsoft/vscode-chrome-debug-core