New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

vscode-debugprotocol

Package Overview
Dependencies
Maintainers
4
Versions
166
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vscode-debugprotocol - npm Package Compare versions

Comparing version

to
1.21.0-pre.1

2

lib/debugProtocol.d.ts

@@ -838,2 +838,4 @@ /** Declaration module describing the VS Code debug protocol.

supportTerminateDebuggee?: boolean;
/** The debug adapter supports the delayed loading of parts of the stack, which requires that both the 'startFrame' and 'levels' arguments and the 'totalFrames' result of the 'StackTrace' request are supported. */
supportsDelayedStackTraceLoading?: boolean;
}

@@ -840,0 +842,0 @@ /** An ExceptionBreakpointsFilter is shown in the UI as an option for configuring how exceptions are dealt with. */

2

package.json
{
"name": "vscode-debugprotocol",
"description": "Npm module with declarations for the Visual Studio Code debug protocol",
"version": "1.21.0-pre.0",
"version": "1.21.0-pre.1",
"author": "Microsoft Corporation",

@@ -6,0 +6,0 @@ "license": "MIT",

@@ -11,3 +11,4 @@ # VS Code Debug Protocol

* 1.21.x:
* Added optional attribute `includeAll` to type `StackFrameFormat`. With this a the `StackTraceRequest` can be parameterized to include all stack frames, including those the DA might otherwise hide.
* Adds optional attribute `includeAll` to type `StackFrameFormat`. With this a the `StackTraceRequest` can be parameterized to include all stack frames, including those the DA might otherwise hide.
* Adds capability `supportsDelayedStackTraceLoading` that indicates that a debug adapter supports the delayed loading of parts of the stack. This requires that both the `startFrame` and `levels` arguments and the `totalFrames` result of the `StackTraceRequest` are supported.

@@ -14,0 +15,0 @@ * 1.20.x:

Sorry, the diff of this file is too big to display