This repository has been archived by the owner on Dec 6, 2022. It is now read-only.
Releases: microsoft/vscode-chrome-debug
Releases · microsoft/vscode-chrome-debug
v2.5.4
- 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
v2.5.2
- Fix watches being broken while stepping - Microsoft/vscode-chrome-debug-core#166
- Fix error "Error processing 'stackTrace': TypeError: Cannot read property 'scriptId' of undefined" - Microsoft/vscode-chrome-debug-core#167
v2.5.0
- Resolving sourcemaps from https, thanks to a PR from kanongil - Microsoft/vscode-chrome-debug-core#151
- Add the 'pathMapping' property to handle cases when 'webRoot' is not enough to map URLs to local paths, thanks to a PR from llgcode - Microsoft/vscode-chrome-debug-core#147
- Implemented dynamic 'skipFiles' support, which you will also see in the
node2
debug adapter. Right click on a stack frame to skip it. VS Code 1.9+ only. Microsoft/vscode-chrome-debug-core#129 - Log expandable objects in the console, instead of just static string representations of objects - Microsoft/vscode-chrome-debug-core#145
- 'step in' with a watch sometimes opens empty editor and crashes adapter - Microsoft/vscode-chrome-debug-core#148
- Show skip frame status in callstack. With VS Code 1.9, skipped frames will be grayed out. - Microsoft/vscode-chrome-debug-core#150
- Add configurationSnippets for common launch config scenarios - #336
- Use correct sourcemaps after the page reloads - #152
- And even more bugfixes that I won't enumerate
v2.4.2
v2.4.1
v2.4.0
v2.3.1
v2.3.0
- 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 calledexperimentalSkipFiles
- 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
- 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