This commit is contained in:
Rob Lourens 2018-03-15 17:21:13 -07:00
Родитель 5f7f284ab8
Коммит 8660c6ab80
3 изменённых файлов: 11 добавлений и 11 удалений

Просмотреть файл

@ -1,3 +1,8 @@
## 4.2.1
* Fix Windows issue with breakpoints not binding if they were set before launch - [Microsoft/vscode#45657](https://github.com/Microsoft/vscode/issues/45657)
* Work around issue where hover shows wrong 'this' - [Microsoft/vscode#44785](https://github.com/Microsoft/vscode/issues/44785)
* Fix Chrome session restore prompt showing on every start - thanks to [@aj-r](https://github.com/aj-r) for the PR! - [PR #606](https://github.com/Microsoft/vscode-chrome-debug/pull/606)
## 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)

13
package-lock.json сгенерированный
Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "debugger-for-chrome",
"version": "4.2.0",
"version": "4.2.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
@ -6124,9 +6124,9 @@
}
},
"vscode-chrome-debug-core": {
"version": "3.23.4",
"resolved": "https://registry.npmjs.org/vscode-chrome-debug-core/-/vscode-chrome-debug-core-3.23.4.tgz",
"integrity": "sha512-lUuMnKyDbRADbjFZpCjnvU+7E+M5FwItxY3+xtPWqmZQfFM0qEciY0n92BtZPUfCVpzetSVS53uXrqtVHDelOw==",
"version": "3.23.6",
"resolved": "https://registry.npmjs.org/vscode-chrome-debug-core/-/vscode-chrome-debug-core-3.23.6.tgz",
"integrity": "sha512-2w4/NXws94XP+93D5PGbCzCw/n8K6QRVlNqU4BCqclNHQoD2FlhMLpmMCozmPW+7cdPmjGmtfgmi3JY2MdgKsQ==",
"requires": {
"@types/source-map": "https://registry.npmjs.org/@types/source-map/-/source-map-0.1.29.tgz",
"glob": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz",
@ -6142,11 +6142,6 @@
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
},
"vscode-nls": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/vscode-nls/-/vscode-nls-3.2.1.tgz",
"integrity": "sha512-5D0USR9x2bXMS9f8NFQWNb7oA1FWveqeNAVaGNFaJJvDF7G7qmSGZMRng+YvD4XnGgbJvXQnCIh8eXbo6Kcz8w=="
}
}
},

Просмотреть файл

@ -1,7 +1,7 @@
{
"name": "debugger-for-chrome",
"displayName": "Debugger for Chrome",
"version": "4.2.0",
"version": "4.2.1",
"icon": "images/icon.png",
"description": "%extension.description%",
"author": {
@ -24,7 +24,7 @@
],
"license": "SEE LICENSE IN LICENSE.txt",
"dependencies": {
"vscode-chrome-debug-core": "^3.23.4",
"vscode-chrome-debug-core": "^3.23.6",
"vscode-debugadapter": "^1.27.0",
"vscode-nls": "^3.2.1"
},