Skip to content

Commit 1a4c6fd

Browse files
authored
Merge pull request #301 from microsoft/bump-v1.64.0
v1.64.0
2 parents cc28b09 + 4db0dd4 commit 1a4c6fd

File tree

8 files changed

+28
-17
lines changed

8 files changed

+28
-17
lines changed

adapter/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

adapter/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@vscode/debugadapter",
33
"description": "Debug adapter implementation for node",
4-
"version": "1.63.0",
4+
"version": "1.64.0",
55
"author": "Microsoft Corporation",
66
"license": "MIT",
77
"repository": {
@@ -21,7 +21,7 @@
2121
},
2222
"typings": "./lib/main",
2323
"dependencies": {
24-
"@vscode/debugprotocol": "1.63.0"
24+
"@vscode/debugprotocol": "1.64.0"
2525
},
2626
"devDependencies": {
2727
"@types/mocha": "^9.1.0",

bump-version.sh

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ npm version --workspaces "$@" --workspaces-update
55
VERSION=$(cat adapter/package.json | jq -r .version)
66
npm --workspace adapter pkg set "dependencies.@vscode/debugprotocol=$VERSION"
77
npm --workspace testSupport pkg set "dependencies.@vscode/debugprotocol=$VERSION"
8+
sleep 1 # npm may have some disk cache that keeps it from seeing the new version?
89
npm i
910

1011
git checkout -b bump-v$VERSION

debugProtocol.json

+11-1
Original file line numberDiff line numberDiff line change
@@ -3765,7 +3765,7 @@
37653765
},
37663766
"offset": {
37673767
"type": "integer",
3768-
"description": "The offset from the instruction reference.\nThis can be negative."
3768+
"description": "The offset from the instruction reference in bytes.\nThis can be negative."
37693769
},
37703770
"condition": {
37713771
"type": "string",
@@ -3822,6 +3822,11 @@
38223822
"offset": {
38233823
"type": "integer",
38243824
"description": "The offset from the instruction reference.\nThis can be negative."
3825+
},
3826+
"reason": {
3827+
"type": "string",
3828+
"description": "A machine-readable explanation of why a breakpoint may not be verified. If a breakpoint is verified or a specific reason is not known, the adapter should omit this property. Possible values include:\n\n- `pending`: Indicates a breakpoint might be verified in the future, but the adapter cannot verify it in the current state.\n - `failed`: Indicates a breakpoint was not able to be verified, and the adapter does not believe it can be verified without intervention.",
3829+
"enum": [ "pending", "failed" ]
38253830
}
38263831
},
38273832
"required": [ "verified" ]
@@ -4159,6 +4164,11 @@
41594164
"endColumn": {
41604165
"type": "integer",
41614166
"description": "The end column of the range that corresponds to this instruction, if any."
4167+
},
4168+
"presentationHint": {
4169+
"type": "string",
4170+
"description": "A hint for how to present the instruction in the UI.\n\nA value of `invalid` may be used to indicate this instruction is 'filler' and cannot be reached by the program. For example, unreadable memory addresses may be presented is 'invalid.'",
4171+
"enum": [ "normal", "invalid" ]
41624172
}
41634173
},
41644174
"required": [ "address", "instruction" ]

package-lock.json

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

protocol/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@vscode/debugprotocol",
33
"description": "Npm module with declarations for the Visual Studio Code debug protocol",
4-
"version": "1.63.0",
4+
"version": "1.64.0",
55
"author": "Microsoft Corporation",
66
"license": "MIT",
77
"repository": {

testSupport/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

testSupport/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@vscode/debugadapter-testsupport",
33
"description": "Npm module with mocha test support for Visual Studio Code debug adapters",
4-
"version": "1.63.0",
4+
"version": "1.64.0",
55
"author": "Microsoft Corporation",
66
"license": "MIT",
77
"engines": {
@@ -17,7 +17,7 @@
1717
"main": "./lib/main.js",
1818
"typings": "./lib/main",
1919
"dependencies": {
20-
"@vscode/debugprotocol": "1.63.0"
20+
"@vscode/debugprotocol": "1.64.0"
2121
},
2222
"devDependencies": {
2323
"@types/node": "14.x",

0 commit comments

Comments
 (0)