Skip to content

Commit ce5bd2e

Browse files
committed
v1.68.0
1 parent 7b85aac commit ce5bd2e

File tree

7 files changed

+27
-19
lines changed

7 files changed

+27
-19
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.67.0",
4+
"version": "1.68.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.67.0"
24+
"@vscode/debugprotocol": "1.68.0"
2525
},
2626
"devDependencies": {
2727
"@types/mocha": "^9.1.0",

debugProtocol.json

+9-1
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@
361361
},
362362
"output": {
363363
"type": "string",
364-
"description": "The output to report."
364+
"description": "The output to report.\n\nANSI escape sequences may be used to influence text color and styling if `supportsANSIStyling` is present in both the adapter's `Capabilities` and the client's `InitializeRequestArguments`. A client may strip any unrecognized ANSI sequences.\n\nIf the `supportsANSIStyling` capabilities are not both true, then the client should display the output literally."
365365
},
366366
"group": {
367367
"type": "string",
@@ -959,6 +959,10 @@
959959
"supportsStartDebuggingRequest": {
960960
"type": "boolean",
961961
"description": "Client supports the `startDebugging` request."
962+
},
963+
"supportsANSIStyling": {
964+
"type": "boolean",
965+
"description": "The client will interpret ANSI escape sequences in the display of `OutputEvent.output` and `Variable.value` fields when `Capabilities.supportsANSIStyling` is also enabled."
962966
}
963967
},
964968
"required": [ "adapterID" ]
@@ -3344,6 +3348,10 @@
33443348
"$ref": "#/definitions/BreakpointMode"
33453349
},
33463350
"description": "Modes of breakpoints supported by the debug adapter, such as 'hardware' or 'software'. If present, the client may allow the user to select a mode and include it in its `setBreakpoints` request.\n\nClients may present the first applicable mode in this array as the 'default' mode in gestures that set breakpoints."
3351+
},
3352+
"supportsANSIStyling": {
3353+
"type": "boolean",
3354+
"description": "The debug adapter supports ANSI escape sequences in styling of `OutputEvent.output` and `Variable.value` fields."
33473355
}
33483356
}
33493357
},

package-lock.json

+9-9
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.67.0",
4+
"version": "1.68.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.67.0",
4+
"version": "1.68.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.67.0"
20+
"@vscode/debugprotocol": "1.68.0"
2121
},
2222
"devDependencies": {
2323
"@types/node": "14.x",

0 commit comments

Comments
 (0)