Skip to content

Commit dff3f42

Browse files
committed
Roll protocol to r1393284
1 parent d2f3487 commit dff3f42

File tree

5 files changed

+48
-2
lines changed

5 files changed

+48
-2
lines changed

changelog.md

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,31 @@
11

22

3+
## Roll protocol to r1393284 — _2024-12-07T04:30:05.000Z_
4+
###### Diff: [`d2f3487...4de2d35`](https://github.com/ChromeDevTools/devtools-protocol/compare/d2f3487...4de2d35)
5+
6+
```diff
7+
@@ js_protocol.pdl:641 @@ domain Debugger
8+
Runtime.ExecutionContextId executionContextId
9+
# Content hash of the script, SHA-256.
10+
string hash
11+
+ # For Wasm modules, the content of the `build_id` custom section.
12+
+ string buildId
13+
# Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
14+
optional object executionContextAuxData
15+
# URL of source map associated with script (if any).
16+
@@ -680,6 +682,8 @@ domain Debugger
17+
Runtime.ExecutionContextId executionContextId
18+
# Content hash of the script, SHA-256.
19+
string hash
20+
+ # For Wasm modules, the content of the `build_id` custom section.
21+
+ string buildId
22+
# Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
23+
optional object executionContextAuxData
24+
# True, if this script is generated as a result of the live edit operation.
25+
```
26+
327
## Roll protocol to r1392711 — _2024-12-06T04:30:32.000Z_
4-
###### Diff: [`4f13107...c9782bf`](https://github.com/ChromeDevTools/devtools-protocol/compare/4f13107...c9782bf)
28+
###### Diff: [`4f13107...d2f3487`](https://github.com/ChromeDevTools/devtools-protocol/compare/4f13107...d2f3487)
529

630
```diff
731
@@ browser_protocol.pdl:2264 @@ experimental domain CSS

json/js_protocol.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1312,6 +1312,11 @@
13121312
"description": "Content hash of the script, SHA-256.",
13131313
"type": "string"
13141314
},
1315+
{
1316+
"name": "buildId",
1317+
"description": "For Wasm modules, the content of the `build_id` custom section.",
1318+
"type": "string"
1319+
},
13151320
{
13161321
"name": "executionContextAuxData",
13171322
"description": "Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}",
@@ -1416,6 +1421,11 @@
14161421
"description": "Content hash of the script, SHA-256.",
14171422
"type": "string"
14181423
},
1424+
{
1425+
"name": "buildId",
1426+
"description": "For Wasm modules, the content of the `build_id` custom section.",
1427+
"type": "string"
1428+
},
14191429
{
14201430
"name": "executionContextAuxData",
14211431
"description": "Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "devtools-protocol",
3-
"version": "0.0.1392711",
3+
"version": "0.0.1393284",
44
"description": "The Chrome DevTools Protocol JSON",
55
"repository": "https://github.com/ChromeDevTools/devtools-protocol",
66
"author": "The Chromium Authors",

pdl/js_protocol.pdl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -641,6 +641,8 @@ domain Debugger
641641
Runtime.ExecutionContextId executionContextId
642642
# Content hash of the script, SHA-256.
643643
string hash
644+
# For Wasm modules, the content of the `build_id` custom section.
645+
string buildId
644646
# Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
645647
optional object executionContextAuxData
646648
# URL of source map associated with script (if any).
@@ -680,6 +682,8 @@ domain Debugger
680682
Runtime.ExecutionContextId executionContextId
681683
# Content hash of the script, SHA-256.
682684
string hash
685+
# For Wasm modules, the content of the `build_id` custom section.
686+
string buildId
683687
# Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
684688
optional object executionContextAuxData
685689
# True, if this script is generated as a result of the live edit operation.

types/protocol.d.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -921,6 +921,10 @@ export namespace Protocol {
921921
* Content hash of the script, SHA-256.
922922
*/
923923
hash: string;
924+
/**
925+
* For Wasm modules, the content of the `build_id` custom section.
926+
*/
927+
buildId: string;
924928
/**
925929
* Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
926930
*/
@@ -996,6 +1000,10 @@ export namespace Protocol {
9961000
* Content hash of the script, SHA-256.
9971001
*/
9981002
hash: string;
1003+
/**
1004+
* For Wasm modules, the content of the `build_id` custom section.
1005+
*/
1006+
buildId: string;
9991007
/**
10001008
* Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
10011009
*/

0 commit comments

Comments
 (0)