Skip to content

Commit

Permalink
Roll protocol to r1393284
Browse files Browse the repository at this point in the history
  • Loading branch information
devtools-bot committed Dec 7, 2024
1 parent d2f3487 commit dff3f42
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 2 deletions.
26 changes: 25 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,31 @@


## Roll protocol to r1393284 — _2024-12-07T04:30:05.000Z_
###### Diff: [`d2f3487...4de2d35`](https://github.com/ChromeDevTools/devtools-protocol/compare/d2f3487...4de2d35)

```diff
@@ js_protocol.pdl:641 @@ domain Debugger
Runtime.ExecutionContextId executionContextId
# Content hash of the script, SHA-256.
string hash
+ # For Wasm modules, the content of the `build_id` custom section.
+ string buildId
# Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
optional object executionContextAuxData
# URL of source map associated with script (if any).
@@ -680,6 +682,8 @@ domain Debugger
Runtime.ExecutionContextId executionContextId
# Content hash of the script, SHA-256.
string hash
+ # For Wasm modules, the content of the `build_id` custom section.
+ string buildId
# Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
optional object executionContextAuxData
# True, if this script is generated as a result of the live edit operation.
```

## Roll protocol to r1392711 — _2024-12-06T04:30:32.000Z_
###### Diff: [`4f13107...c9782bf`](https://github.com/ChromeDevTools/devtools-protocol/compare/4f13107...c9782bf)
###### Diff: [`4f13107...d2f3487`](https://github.com/ChromeDevTools/devtools-protocol/compare/4f13107...d2f3487)

```diff
@@ browser_protocol.pdl:2264 @@ experimental domain CSS
Expand Down
10 changes: 10 additions & 0 deletions json/js_protocol.json
Original file line number Diff line number Diff line change
Expand Up @@ -1312,6 +1312,11 @@
"description": "Content hash of the script, SHA-256.",
"type": "string"
},
{
"name": "buildId",
"description": "For Wasm modules, the content of the `build_id` custom section.",
"type": "string"
},
{
"name": "executionContextAuxData",
"description": "Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}",
Expand Down Expand Up @@ -1416,6 +1421,11 @@
"description": "Content hash of the script, SHA-256.",
"type": "string"
},
{
"name": "buildId",
"description": "For Wasm modules, the content of the `build_id` custom section.",
"type": "string"
},
{
"name": "executionContextAuxData",
"description": "Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "devtools-protocol",
"version": "0.0.1392711",
"version": "0.0.1393284",
"description": "The Chrome DevTools Protocol JSON",
"repository": "https://github.com/ChromeDevTools/devtools-protocol",
"author": "The Chromium Authors",
Expand Down
4 changes: 4 additions & 0 deletions pdl/js_protocol.pdl
Original file line number Diff line number Diff line change
Expand Up @@ -641,6 +641,8 @@ domain Debugger
Runtime.ExecutionContextId executionContextId
# Content hash of the script, SHA-256.
string hash
# For Wasm modules, the content of the `build_id` custom section.
string buildId
# Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
optional object executionContextAuxData
# URL of source map associated with script (if any).
Expand Down Expand Up @@ -680,6 +682,8 @@ domain Debugger
Runtime.ExecutionContextId executionContextId
# Content hash of the script, SHA-256.
string hash
# For Wasm modules, the content of the `build_id` custom section.
string buildId
# Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
optional object executionContextAuxData
# True, if this script is generated as a result of the live edit operation.
Expand Down
8 changes: 8 additions & 0 deletions types/protocol.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -921,6 +921,10 @@ export namespace Protocol {
* Content hash of the script, SHA-256.
*/
hash: string;
/**
* For Wasm modules, the content of the `build_id` custom section.
*/
buildId: string;
/**
* Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
*/
Expand Down Expand Up @@ -996,6 +1000,10 @@ export namespace Protocol {
* Content hash of the script, SHA-256.
*/
hash: string;
/**
* For Wasm modules, the content of the `build_id` custom section.
*/
buildId: string;
/**
* Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
*/
Expand Down

0 comments on commit dff3f42

Please sign in to comment.