Skip to content

Commit

Permalink
Merge pull request #301 from microsoft/bump-v1.64.0
Browse files Browse the repository at this point in the history
v1.64.0
  • Loading branch information
connor4312 committed Oct 27, 2023
2 parents cc28b09 + 4db0dd4 commit 1a4c6fd
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 17 deletions.
4 changes: 2 additions & 2 deletions adapter/package-lock.json

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

4 changes: 2 additions & 2 deletions adapter/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@vscode/debugadapter",
"description": "Debug adapter implementation for node",
"version": "1.63.0",
"version": "1.64.0",
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
Expand All @@ -21,7 +21,7 @@
},
"typings": "./lib/main",
"dependencies": {
"@vscode/debugprotocol": "1.63.0"
"@vscode/debugprotocol": "1.64.0"
},
"devDependencies": {
"@types/mocha": "^9.1.0",
Expand Down
1 change: 1 addition & 0 deletions bump-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ npm version --workspaces "$@" --workspaces-update
VERSION=$(cat adapter/package.json | jq -r .version)
npm --workspace adapter pkg set "dependencies.@vscode/debugprotocol=$VERSION"
npm --workspace testSupport pkg set "dependencies.@vscode/debugprotocol=$VERSION"
sleep 1 # npm may have some disk cache that keeps it from seeing the new version?
npm i

git checkout -b bump-v$VERSION
Expand Down
12 changes: 11 additions & 1 deletion debugProtocol.json
Original file line number Diff line number Diff line change
Expand Up @@ -3765,7 +3765,7 @@
},
"offset": {
"type": "integer",
"description": "The offset from the instruction reference.\nThis can be negative."
"description": "The offset from the instruction reference in bytes.\nThis can be negative."
},
"condition": {
"type": "string",
Expand Down Expand Up @@ -3822,6 +3822,11 @@
"offset": {
"type": "integer",
"description": "The offset from the instruction reference.\nThis can be negative."
},
"reason": {
"type": "string",
"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.",
"enum": [ "pending", "failed" ]
}
},
"required": [ "verified" ]
Expand Down Expand Up @@ -4159,6 +4164,11 @@
"endColumn": {
"type": "integer",
"description": "The end column of the range that corresponds to this instruction, if any."
},
"presentationHint": {
"type": "string",
"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.'",
"enum": [ "normal", "invalid" ]
}
},
"required": [ "address", "instruction" ]
Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion protocol/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@vscode/debugprotocol",
"description": "Npm module with declarations for the Visual Studio Code debug protocol",
"version": "1.63.0",
"version": "1.64.0",
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions testSupport/package-lock.json

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

4 changes: 2 additions & 2 deletions testSupport/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@vscode/debugadapter-testsupport",
"description": "Npm module with mocha test support for Visual Studio Code debug adapters",
"version": "1.63.0",
"version": "1.64.0",
"author": "Microsoft Corporation",
"license": "MIT",
"engines": {
Expand All @@ -17,7 +17,7 @@
"main": "./lib/main.js",
"typings": "./lib/main",
"dependencies": {
"@vscode/debugprotocol": "1.63.0"
"@vscode/debugprotocol": "1.64.0"
},
"devDependencies": {
"@types/node": "14.x",
Expand Down

0 comments on commit 1a4c6fd

Please sign in to comment.