Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.85.0 #1891

Merged
merged 2 commits into from
Nov 28, 2023
Merged

1.85.0 #1891

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,7 @@
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.detectIndentation": false,
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript"
],
"eslint.validate": ["javascript", "javascriptreact", "typescript"],
"search.exclude": {
"**/testdata": true,
"**/.dynamic-testWorkspace/defaultSearchExcluded": true
Expand All @@ -31,8 +27,13 @@
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.codeActionsOnSave": {
"source.organizeImports": true
"source.organizeImports": "explicit"
},
"editor.formatOnSave": true,
"typescript.tsserver.experimental.enableProjectDiagnostics": true
}
"typescript.tsserver.experimental.enableProjectDiagnostics": true,
"[go]": {
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
}
}
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ This changelog records changes to stable releases since 1.50.2. "TBA" changes he

## Nightly (only)

Nothing, yet

## v1.85 (November 2023)

- feat: support XHR breakpoints ([#1856](https://github.com/microsoft/vscode-js-debug/issues/1856))
- feat: improve instrumentation breakpoints view ([#1853](https://github.com/microsoft/vscode-js-debug/issues/1853))
- fix: reuse the webassembly worker across sessions in the debug tree ([#1830](https://github.com/microsoft/vscode-js-debug/issues/1830))
- fix: respect sourceMapResolveLocations in the web extension host ([vscode#196781](https://github.com/microsoft/vscode/issues/196781))
- fix: path diff display in diagnostic tool ([vscode#195891](https://github.com/microsoft/vscode/issues/195891))
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "js-debug",
"displayName": "JavaScript Debugger",
"version": "1.84.0",
"version": "1.85.0",
"publisher": "ms-vscode",
"author": {
"name": "Microsoft Corporation"
Expand Down
Loading