Skip to content

Commit 65c042d

Browse files
committed
Roll protocol to r1503754
1 parent d3d8ab5 commit 65c042d

File tree

6 files changed

+21
-46
lines changed

6 files changed

+21
-46
lines changed

changelog.md

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

22

3+
## Roll protocol to r1503754 — _2025-08-20T04:32:27.000Z_
4+
###### Diff: [`d3d8ab5...bc5c75a`](https://github.com/ChromeDevTools/devtools-protocol/compare/d3d8ab5...bc5c75a)
5+
6+
```diff
7+
@@ domains/Network.pdl:1088 @@ 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 r1503134 — _2025-08-19T04:31:54.000Z_
4-
###### Diff: [`7bf9db8...d787df4`](https://github.com/ChromeDevTools/devtools-protocol/compare/7bf9db8...d787df4)
21+
###### Diff: [`7bf9db8...d3d8ab5`](https://github.com/ChromeDevTools/devtools-protocol/compare/7bf9db8...d3d8ab5)
522

623
```diff
724
@@ domains/Network.pdl:1088 @@ domain Network
@@ -41847,28 +41864,4 @@ index d4102f5c..6285d9b6 100644
4184741864

4184841865
# Definition of PermissionDescriptor defined in the Permissions API:
4184941866
# https://w3c.github.io/permissions/#dictdef-permissiondescriptor.
41850-
```
41851-
41852-
## Roll protocol to r1078443 — _2022-12-02T04:28:44.000Z_
41853-
###### Diff: [`23c561a...8af7bb2`](https://github.com/ChromeDevTools/devtools-protocol/compare/23c561a...8af7bb2)
41854-
41855-
```diff
41856-
@@ browser_protocol.pdl:10630 @@ experimental domain WebAuthn
41857-
AuthenticatorId authenticatorId
41858-
boolean enabled
41859-
41860-
+ # Triggered when a credential is added to an authenticator.
41861-
+ event credentialAdded
41862-
+ parameters
41863-
+ AuthenticatorId authenticatorId
41864-
+ Credential credential
41865-
+
41866-
+ # Triggered when a credential is used in a webauthn assertion.
41867-
+ event credentialAsserted
41868-
+ parameters
41869-
+ AuthenticatorId authenticatorId
41870-
+ Credential credential
41871-
+
41872-
# This domain allows detailed inspection of media elements
41873-
experimental domain Media
4187441867
```

json/browser_protocol.json

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17108,13 +17108,6 @@
1710817108
"experimental": true,
1710917109
"optional": true,
1711017110
"type": "boolean"
17111-
},
17112-
{
17113-
"name": "enableDurableMessages",
17114-
"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.",
17115-
"experimental": true,
17116-
"optional": true,
17117-
"type": "boolean"
1711817111
}
1711917112
]
1712017113
},

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.1503134",
3+
"version": "0.0.1503754",
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: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1088,10 +1088,6 @@ domain Network
10881088
optional integer maxPostDataSize
10891089
# Whether DirectSocket chunk send/receive events should be reported.
10901090
experimental optional boolean reportDirectSocketTraffic
1091-
# Enable storing response bodies outside of renderer, so that these survive
1092-
# a cross-process navigation. Requires maxTotalBufferSize to be set.
1093-
# Currently defaults to false.
1094-
experimental optional boolean enableDurableMessages
10951091

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

types/protocol.d.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13495,13 +13495,6 @@ export namespace Protocol {
1349513495
* @experimental
1349613496
*/
1349713497
reportDirectSocketTraffic?: boolean;
13498-
/**
13499-
* Enable storing response bodies outside of renderer, so that these survive
13500-
* a cross-process navigation. Requires maxTotalBufferSize to be set.
13501-
* Currently defaults to false.
13502-
* @experimental
13503-
*/
13504-
enableDurableMessages?: boolean;
1350513498
}
1350613499

1350713500
export interface GetAllCookiesResponse {

0 commit comments

Comments
 (0)