Skip to content

Commit 9e24285

Browse files
committed
Roll protocol to r1572739
1 parent f44c6e0 commit 9e24285

6 files changed

Lines changed: 46 additions & 46 deletions

File tree

changelog.md

Lines changed: 42 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,48 @@
11

22

3+
## Roll protocol to r1572739 — _2026-01-22T04:38:20.000Z_
4+
###### Diff: [`f44c6e0...d046af9`](https://github.com/ChromeDevTools/devtools-protocol/compare/f44c6e0...d046af9)
5+
6+
```diff
7+
@@ domains/Network.pdl:333 @@ domain Network
8+
# TODO(https://crbug.com/1263483): Remove this once frontend code does
9+
# not reference it anymore.
10+
PreflightInvalidAllowExternal
11+
- PreflightMissingAllowPrivateNetwork
12+
- PreflightInvalidAllowPrivateNetwork
13+
InvalidAllowMethodsPreflightResponse
14+
InvalidAllowHeadersPreflightResponse
15+
MethodDisallowedByPreflightResponse
16+
@@ -345,25 +343,7 @@ domain Network
17+
# Request carried a target IP address space property that did not match
18+
# the target resource's address space.
19+
InvalidPrivateNetworkAccess
20+
- # Request was a private network request yet did not carry a target IP
21+
- # address space.
22+
- UnexpectedPrivateNetworkAccess
23+
NoCorsRedirectModeNotFollow
24+
- # Request was a private network request and needed user permission yet did
25+
- # not carry `Private-Network-Access-Id` in the preflight response.
26+
- # https://github.com/WICG/private-network-access/blob/main/permission_prompt/explainer.md
27+
- PreflightMissingPrivateNetworkAccessId
28+
- # Request was a private network request and needed user permission yet did
29+
- # not carry `Private-Network-Access-Name` in the preflight response.
30+
- # https://github.com/WICG/private-network-access/blob/main/permission_prompt/explainer.md
31+
- PreflightMissingPrivateNetworkAccessName
32+
- # Request was a private network request and needed user permission yet not
33+
- # able to request for permission.
34+
- # https://github.com/WICG/private-network-access/blob/main/permission_prompt/explainer.md
35+
- PrivateNetworkAccessPermissionUnavailable
36+
- # Request was a private network request and is denied by user permission.
37+
- # https://github.com/WICG/private-network-access/blob/main/permission_prompt/explainer.md
38+
- PrivateNetworkAccessPermissionDenied
39+
# Request was a local network request and is denied by user permission.
40+
# https://wicg.github.io/local-network-access/
41+
LocalNetworkAccessPermissionDenied
42+
```
43+
344
## Roll protocol to r1568893 — _2026-01-14T04:37:57.000Z_
4-
###### Diff: [`d0d2cf0...20bc5b5`](https://github.com/ChromeDevTools/devtools-protocol/compare/d0d2cf0...20bc5b5)
45+
###### Diff: [`d0d2cf0...f44c6e0`](https://github.com/ChromeDevTools/devtools-protocol/compare/d0d2cf0...f44c6e0)
546

647
```diff
748
@@ domains/Audits.pdl:34 @@ experimental domain Audits
@@ -42254,18 +42295,4 @@ index 0dbdc01d..7a3c772c 100644
4225442295

4225542296
# CSS position-fallback rule representation.
4225642297
type CSSPositionFallbackRule extends object
42257-
```
42258-
42259-
## Roll protocol to r1124027 — _2023-03-30T04:27:29.000Z_
42260-
###### Diff: [`bab8b36...4cb5368`](https://github.com/ChromeDevTools/devtools-protocol/compare/bab8b36...4cb5368)
42261-
42262-
```diff
42263-
@@ browser_protocol.pdl:765 @@ experimental domain Audits
42264-
GenericIssueErrorType errorType
42265-
optional Page.FrameId frameId
42266-
optional DOM.BackendNodeId violatingNodeId
42267-
+ optional string violatingNodeAttribute
42268-
42269-
# This issue tracks information needed to print a deprecation message.
42270-
# https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/core/frame/third_party/blink/renderer/core/frame/deprecation/README.md
4227142298
```

json/browser_protocol.json

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15595,21 +15595,14 @@
1559515595
"PreflightInvalidAllowCredentials",
1559615596
"PreflightMissingAllowExternal",
1559715597
"PreflightInvalidAllowExternal",
15598-
"PreflightMissingAllowPrivateNetwork",
15599-
"PreflightInvalidAllowPrivateNetwork",
1560015598
"InvalidAllowMethodsPreflightResponse",
1560115599
"InvalidAllowHeadersPreflightResponse",
1560215600
"MethodDisallowedByPreflightResponse",
1560315601
"HeaderDisallowedByPreflightResponse",
1560415602
"RedirectContainsCredentials",
1560515603
"InsecurePrivateNetwork",
1560615604
"InvalidPrivateNetworkAccess",
15607-
"UnexpectedPrivateNetworkAccess",
1560815605
"NoCorsRedirectModeNotFollow",
15609-
"PreflightMissingPrivateNetworkAccessId",
15610-
"PreflightMissingPrivateNetworkAccessName",
15611-
"PrivateNetworkAccessPermissionUnavailable",
15612-
"PrivateNetworkAccessPermissionDenied",
1561315606
"LocalNetworkAccessPermissionDenied"
1561415607
]
1561515608
},

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.1568893",
3+
"version": "0.0.1572739",
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 & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -333,8 +333,6 @@ domain Network
333333
# TODO(https://crbug.com/1263483): Remove this once frontend code does
334334
# not reference it anymore.
335335
PreflightInvalidAllowExternal
336-
PreflightMissingAllowPrivateNetwork
337-
PreflightInvalidAllowPrivateNetwork
338336
InvalidAllowMethodsPreflightResponse
339337
InvalidAllowHeadersPreflightResponse
340338
MethodDisallowedByPreflightResponse
@@ -345,25 +343,7 @@ domain Network
345343
# Request carried a target IP address space property that did not match
346344
# the target resource's address space.
347345
InvalidPrivateNetworkAccess
348-
# Request was a private network request yet did not carry a target IP
349-
# address space.
350-
UnexpectedPrivateNetworkAccess
351346
NoCorsRedirectModeNotFollow
352-
# Request was a private network request and needed user permission yet did
353-
# not carry `Private-Network-Access-Id` in the preflight response.
354-
# https://github.com/WICG/private-network-access/blob/main/permission_prompt/explainer.md
355-
PreflightMissingPrivateNetworkAccessId
356-
# Request was a private network request and needed user permission yet did
357-
# not carry `Private-Network-Access-Name` in the preflight response.
358-
# https://github.com/WICG/private-network-access/blob/main/permission_prompt/explainer.md
359-
PreflightMissingPrivateNetworkAccessName
360-
# Request was a private network request and needed user permission yet not
361-
# able to request for permission.
362-
# https://github.com/WICG/private-network-access/blob/main/permission_prompt/explainer.md
363-
PrivateNetworkAccessPermissionUnavailable
364-
# Request was a private network request and is denied by user permission.
365-
# https://github.com/WICG/private-network-access/blob/main/permission_prompt/explainer.md
366-
PrivateNetworkAccessPermissionDenied
367347
# Request was a local network request and is denied by user permission.
368348
# https://wicg.github.io/local-network-access/
369349
LocalNetworkAccessPermissionDenied

types/protocol.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12482,7 +12482,7 @@ export namespace Protocol {
1248212482
/**
1248312483
* The reason why request was blocked.
1248412484
*/
12485-
export type CorsError = ('DisallowedByMode' | 'InvalidResponse' | 'WildcardOriginNotAllowed' | 'MissingAllowOriginHeader' | 'MultipleAllowOriginValues' | 'InvalidAllowOriginValue' | 'AllowOriginMismatch' | 'InvalidAllowCredentials' | 'CorsDisabledScheme' | 'PreflightInvalidStatus' | 'PreflightDisallowedRedirect' | 'PreflightWildcardOriginNotAllowed' | 'PreflightMissingAllowOriginHeader' | 'PreflightMultipleAllowOriginValues' | 'PreflightInvalidAllowOriginValue' | 'PreflightAllowOriginMismatch' | 'PreflightInvalidAllowCredentials' | 'PreflightMissingAllowExternal' | 'PreflightInvalidAllowExternal' | 'PreflightMissingAllowPrivateNetwork' | 'PreflightInvalidAllowPrivateNetwork' | 'InvalidAllowMethodsPreflightResponse' | 'InvalidAllowHeadersPreflightResponse' | 'MethodDisallowedByPreflightResponse' | 'HeaderDisallowedByPreflightResponse' | 'RedirectContainsCredentials' | 'InsecurePrivateNetwork' | 'InvalidPrivateNetworkAccess' | 'UnexpectedPrivateNetworkAccess' | 'NoCorsRedirectModeNotFollow' | 'PreflightMissingPrivateNetworkAccessId' | 'PreflightMissingPrivateNetworkAccessName' | 'PrivateNetworkAccessPermissionUnavailable' | 'PrivateNetworkAccessPermissionDenied' | 'LocalNetworkAccessPermissionDenied');
12485+
export type CorsError = ('DisallowedByMode' | 'InvalidResponse' | 'WildcardOriginNotAllowed' | 'MissingAllowOriginHeader' | 'MultipleAllowOriginValues' | 'InvalidAllowOriginValue' | 'AllowOriginMismatch' | 'InvalidAllowCredentials' | 'CorsDisabledScheme' | 'PreflightInvalidStatus' | 'PreflightDisallowedRedirect' | 'PreflightWildcardOriginNotAllowed' | 'PreflightMissingAllowOriginHeader' | 'PreflightMultipleAllowOriginValues' | 'PreflightInvalidAllowOriginValue' | 'PreflightAllowOriginMismatch' | 'PreflightInvalidAllowCredentials' | 'PreflightMissingAllowExternal' | 'PreflightInvalidAllowExternal' | 'InvalidAllowMethodsPreflightResponse' | 'InvalidAllowHeadersPreflightResponse' | 'MethodDisallowedByPreflightResponse' | 'HeaderDisallowedByPreflightResponse' | 'RedirectContainsCredentials' | 'InsecurePrivateNetwork' | 'InvalidPrivateNetworkAccess' | 'NoCorsRedirectModeNotFollow' | 'LocalNetworkAccessPermissionDenied');
1248612486

1248712487
export interface CorsErrorStatus {
1248812488
corsError: CorsError;

0 commit comments

Comments
 (0)