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

Commit d32b873

Browse files
committed
4.2.0
1 parent aec0abb commit d32b873

File tree

3 files changed

+44
-25
lines changed

3 files changed

+44
-25
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 4.2.0
2+
* Use more precise extension activation events to prevent unneeded activation
3+
* Apply sourceMapPathOverrides in order of longest->shortest, instead of key order within the object - [Microsoft/vscode-chrome-debug-core#297](https://github.com/Microsoft/vscode-chrome-debug-core/issues/297)
4+
* Make sourceMapPathOverrides default values in package.json match the defaults applied in code - [Microsoft/vscode-chrome-debug#581](https://github.com/Microsoft/vscode-chrome-debug/issues/581)
5+
* Add "Toggle Smart Step" command - [Microsoft/vscode-chrome-debug-core#298](https://github.com/Microsoft/vscode-chrome-debug-core/issues/298)
6+
* Fix error when setting BP in scripts with certain weird sourcemap names - [Microsoft/vscode#42162](https://github.com/microsoft/vscode/issues/42162)
7+
* Fix various breakOnLoad-related issues - [PR Microsoft/vscode-chrome-debug-core#283](https://github.com/Microsoft/vscode-chrome-debug-core/pull/283), [PR Microsoft/vscode-chrome-debug-core#285](https://github.com/Microsoft/vscode-chrome-debug-core/pull/285) and others
8+
19
## 4.1.0
210
* Implement "step into async code". "step in" on `setTimeout` will now step into the body of the setTimeout if no other breakpoints are hit first. Requires Chrome 65 - [Microsoft/vscode-chrome-debug-core#266](https://github.com/Microsoft/vscode-chrome-debug-core/issues/266)
311
* Show exception scope for top frame only - [Microsoft/vscode-chrome-debug-core#233](https://github.com/Microsoft/vscode-chrome-debug-core/issues/233)

package-lock.json

Lines changed: 32 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "debugger-for-chrome",
33
"displayName": "Debugger for Chrome",
4-
"version": "4.1.0",
4+
"version": "4.2.0",
55
"icon": "images/icon.png",
66
"description": "%extension.description%",
77
"author": {
@@ -24,8 +24,8 @@
2424
],
2525
"license": "SEE LICENSE IN LICENSE.txt",
2626
"dependencies": {
27-
"vscode-chrome-debug-core": "^3.23.1",
28-
"vscode-debugadapter": "^1.26.0-pre.2",
27+
"vscode-chrome-debug-core": "^3.23.3",
28+
"vscode-debugadapter": "^1.27.0",
2929
"vscode-nls": "https://registry.npmjs.org/vscode-nls/-/vscode-nls-2.0.2.tgz"
3030
},
3131
"devDependencies": {
@@ -54,7 +54,7 @@
5454
"vscode": "^1.0.3",
5555
"vscode-chrome-debug-core-testsupport": "^3.20.0",
5656
"vscode-debugadapter-testsupport": "1.24.0",
57-
"vscode-debugprotocol": "^1.25.0",
57+
"vscode-debugprotocol": "^1.27.0",
5858
"vscode-nls-dev": "^2.1.5"
5959
},
6060
"main": "./out/src/extension",

0 commit comments

Comments
 (0)