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
v4.10.2
- Only show callstack context menu on stack frames - Microsoft/vscode#19180
- Fix missing breakpoints on first line of script in Chrome 69 - Microsoft/vscode-chrome-debug-core#352
v4.9.1
- Support
console.clear()
- Show errors from Chrome itself, e.g. 404s and other network errors
v4.9.0
- Support new "Loaded Scripts" view in VS Code 1.27 - Microsoft/vscode#55462
- Use less memory when running for a long time with lots of scripts - Microsoft/vscode#53535
v4.8.2
- Fix error "Cannot read property 'startsWith' of undefined"
v4.8.1
- Allow setting env vars to "null" like when debugging node - #706
- Fix rare issue killing Chrome on Windows - PR #703
- Allow URI-encoded inline source maps - thanks to @Pokute for the PR! - Microsoft/vscode-chrome-debug-core#343
v4.8.0
- Change
smartStep
to only skip through unmapped lines in files with sourcemappings, not files that don't have sourcemappings. You should useskipFiles
to skip files that don't have sourcemappings (like node_modules) - Don't crash if Chrome sends a scope with invalid locations - Microsoft/vscode-chrome-debug-core#333
v4.7.0
- Don't blink the Chrome pause overlay when starting with breakOnLoad enabled - #689
- Fix debug adapter error when an error is thrown from native code - Microsoft/vscode-chrome-debug-core#334
- Fix logging empty strings - Microsoft/vscode#52028
- Fix breaking in random script with breakOnLoad enabled - #686
- Fix a
pathMapping
case that broke after v4.5.0 #684
v4.6.0
- Enable breakOnLoad by default 🎉 - #594
- Fix skipFiles in some cases when sourcemappings don't cover the full document, like in webpack - #667
- Fix downloading sourcemaps when offline - #638
- Fix an incorrect sourceMappingUrl case - #653
- Fix global completions in Debug Console when not at a breakpoint - Microsoft/vscode-chrome-debug-core#331