Skip to content

Commit f87879c

Browse files
committed
Roll protocol to r1507524
1 parent 8952758 commit f87879c

File tree

6 files changed

+39
-49
lines changed

6 files changed

+39
-49
lines changed

changelog.md

Lines changed: 18 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,24 @@
11

22

3+
## Roll protocol to r1507524 — _2025-08-28T04:31:32.000Z_
4+
###### Diff: [`8952758...039acc0`](https://github.com/ChromeDevTools/devtools-protocol/compare/8952758...039acc0)
5+
6+
```diff
7+
@@ domains/Network.pdl:1107 @@ domain Network
8+
optional integer maxPostDataSize
9+
# Whether DirectSocket chunk send/receive events should be reported.
10+
experimental optional boolean reportDirectSocketTraffic
11+
+ # Enable storing response bodies outside of renderer, so that these survive
12+
+ # a cross-process navigation. Requires maxTotalBufferSize to be set.
13+
+ # Currently defaults to false.
14+
+ experimental optional boolean enableDurableMessages
15+
16+
# Returns all browser cookies. Depending on the backend support, will return detailed cookie
17+
# information in the `cookies` field.
18+
```
19+
320
## Roll protocol to r1505444 — _2025-08-23T04:31:11.000Z_
4-
###### Diff: [`11bcaf8...1551fe2`](https://github.com/ChromeDevTools/devtools-protocol/compare/11bcaf8...1551fe2)
21+
###### Diff: [`11bcaf8...8952758`](https://github.com/ChromeDevTools/devtools-protocol/compare/11bcaf8...8952758)
522

623
```diff
724
@@ domains/CSS.pdl:239 @@ experimental domain CSS
@@ -41905,49 +41922,4 @@ index d4102f5c..6285d9b6 100644
4190541922

4190641923
# Fired when a prerender attempt is completed.
4190741924
experimental event prerenderAttemptCompleted
41908-
```
41909-
41910-
## Roll protocol to r1081726 — _2022-12-10T04:28:45.000Z_
41911-
###### Diff: [`d4cef45...178dea5`](https://github.com/ChromeDevTools/devtools-protocol/compare/d4cef45...178dea5)
41912-
41913-
```diff
41914-
@@ browser_protocol.pdl:838 @@ experimental domain Audits
41915-
enum
41916-
ShouldEmbargo
41917-
TooManyRequests
41918-
- ManifestListHttpNotFound
41919-
- ManifestListNoResponse
41920-
- ManifestListInvalidResponse
41921-
- ManifestNotInManifestList
41922-
- ManifestListTooBig
41923-
- ManifestHttpNotFound
41924-
- ManifestNoResponse
41925-
- ManifestInvalidResponse
41926-
+ WellKnownHttpNotFound
41927-
+ WellKnownNoResponse
41928-
+ WellKnownInvalidResponse
41929-
+ ConfigNotInWellKnown
41930-
+ WellKnownTooBig
41931-
+ ConfigHttpNotFound
41932-
+ ConfigNoResponse
41933-
+ ConfigInvalidResponse
41934-
ClientMetadataHttpNotFound
41935-
ClientMetadataNoResponse
41936-
ClientMetadataInvalidResponse
41937-
@@ -3897,7 +3897,6 @@ domain Emulation
41938-
experimental type DisabledImageType extends string
41939-
enum
41940-
avif
41941-
- jxl
41942-
webp
41943-
41944-
experimental command setDisabledImageTypes
41945-
@@ -7220,6 +7219,7 @@ domain Page
41946-
serial
41947-
shared-autofill
41948-
shared-storage
41949-
+ smart-card
41950-
storage-access
41951-
sync-xhr
41952-
trust-token-redemption
4195341925
```

json/browser_protocol.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17165,6 +17165,13 @@
1716517165
"experimental": true,
1716617166
"optional": true,
1716717167
"type": "boolean"
17168+
},
17169+
{
17170+
"name": "enableDurableMessages",
17171+
"description": "Enable storing response bodies outside of renderer, so that these survive\na cross-process navigation. Requires maxTotalBufferSize to be set.\nCurrently defaults to false.",
17172+
"experimental": true,
17173+
"optional": true,
17174+
"type": "boolean"
1716817175
}
1716917176
]
1717017177
},

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.1505444",
3+
"version": "0.0.1507524",
44
"description": "The Chrome DevTools Protocol JSON",
55
"repository": "https://github.com/ChromeDevTools/devtools-protocol",
66
"author": "The Chromium Authors",

pdl/domains/Network.pdl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1107,6 +1107,10 @@ domain Network
11071107
optional integer maxPostDataSize
11081108
# Whether DirectSocket chunk send/receive events should be reported.
11091109
experimental optional boolean reportDirectSocketTraffic
1110+
# Enable storing response bodies outside of renderer, so that these survive
1111+
# a cross-process navigation. Requires maxTotalBufferSize to be set.
1112+
# Currently defaults to false.
1113+
experimental optional boolean enableDurableMessages
11101114

11111115
# Returns all browser cookies. Depending on the backend support, will return detailed cookie
11121116
# information in the `cookies` field.

types/protocol.d.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13532,6 +13532,13 @@ export namespace Protocol {
1353213532
* @experimental
1353313533
*/
1353413534
reportDirectSocketTraffic?: boolean;
13535+
/**
13536+
* Enable storing response bodies outside of renderer, so that these survive
13537+
* a cross-process navigation. Requires maxTotalBufferSize to be set.
13538+
* Currently defaults to false.
13539+
* @experimental
13540+
*/
13541+
enableDurableMessages?: boolean;
1353513542
}
1353613543

1353713544
export interface GetAllCookiesResponse {

0 commit comments

Comments
 (0)