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

Commit

Permalink
Update deps, 2.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
roblourens committed Nov 1, 2016
1 parent 581a23a commit 0d0d4ce
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"configurations": [
{
"name": "launch as server",
"type": "node",
"type": "node2",
"request": "launch",
"cwd": "${workspaceRoot}",
"program": "${workspaceRoot}/out/src/chromeDebug.js",
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 2.1.3
* Error handling for invalid messages from Chrome, to avoid crashing - [#274](https://github.com/Microsoft/vscode-chrome-debug/issues/274)
* Fix potential issue with sourcemap path handling on Windows

## 2.1.2
* Revert an earlier change to the filtering logic, which only worked for vscode 1.7+, and caused some objects to not be expandable - [#273](https://github.com/Microsoft/vscode-chrome-debug/issues/273)

## 2.1.1
* Fix setting breakpoints before startup in scripts that don't have sourcemaps - [Microsoft/vscode-chrome-debug-core#121](https://github.com/Microsoft/vscode-chrome-debug-core/issues/121)
* Fix a certain format of sourceMappingUrl - [#269](https://github.com/Microsoft/vscode-chrome-debug/issues/269)
Expand Down
10 changes: 5 additions & 5 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": "2.1.2",
"version": "2.1.3",
"icon": "images/icon.png",
"description": "Debug your JavaScript code in the Chrome browser, or any other target that supports the Chrome Debugger protocol.",
"author": {
Expand All @@ -14,17 +14,17 @@
"publisher": "msjsdiag",
"bugs": "https://github.com/microsoft/vscode-chrome-debug/issues",
"engines": {
"vscode": "*"
"vscode": "^1.6.0"
},
"categories": [
"Debuggers"
],
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",
"license": "SEE LICENSE IN LICENSE.txt",
"dependencies": {
"vscode-chrome-debug-core": "3.3.7",
"vscode-debugadapter": "^1.13.1",
"vscode-debugprotocol": "^1.13.0"
"vscode-chrome-debug-core": "3.4.1",
"vscode-debugadapter": "^1.14.0",
"vscode-debugprotocol": "^1.14.0"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
Expand Down

0 comments on commit 0d0d4ce

Please sign in to comment.