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

Commit

Permalink
4.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
roblourens committed Mar 9, 2018
1 parent aec0abb commit d32b873
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 25 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 4.2.0
* Use more precise extension activation events to prevent unneeded activation
* 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)
* 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)
* Add "Toggle Smart Step" command - [Microsoft/vscode-chrome-debug-core#298](https://github.com/Microsoft/vscode-chrome-debug-core/issues/298)
* Fix error when setting BP in scripts with certain weird sourcemap names - [Microsoft/vscode#42162](https://github.com/microsoft/vscode/issues/42162)
* 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

## 4.1.0
* 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)
* Show exception scope for top frame only - [Microsoft/vscode-chrome-debug-core#233](https://github.com/Microsoft/vscode-chrome-debug-core/issues/233)
Expand Down
53 changes: 32 additions & 21 deletions package-lock.json

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

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "debugger-for-chrome",
"displayName": "Debugger for Chrome",
"version": "4.1.0",
"version": "4.2.0",
"icon": "images/icon.png",
"description": "%extension.description%",
"author": {
Expand All @@ -24,8 +24,8 @@
],
"license": "SEE LICENSE IN LICENSE.txt",
"dependencies": {
"vscode-chrome-debug-core": "^3.23.1",
"vscode-debugadapter": "^1.26.0-pre.2",
"vscode-chrome-debug-core": "^3.23.3",
"vscode-debugadapter": "^1.27.0",
"vscode-nls": "https://registry.npmjs.org/vscode-nls/-/vscode-nls-2.0.2.tgz"
},
"devDependencies": {
Expand Down Expand Up @@ -54,7 +54,7 @@
"vscode": "^1.0.3",
"vscode-chrome-debug-core-testsupport": "^3.20.0",
"vscode-debugadapter-testsupport": "1.24.0",
"vscode-debugprotocol": "^1.25.0",
"vscode-debugprotocol": "^1.27.0",
"vscode-nls-dev": "^2.1.5"
},
"main": "./out/src/extension",
Expand Down

0 comments on commit d32b873

Please sign in to comment.