Skip to content

Commit 17024e1

Browse files
committed
Roll protocol to r1581282
1 parent e8ee850 commit 17024e1

6 files changed

Lines changed: 28 additions & 24 deletions

File tree

changelog.md

Lines changed: 20 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,26 @@
11

22

3+
## Roll protocol to r1581282 — _2026-02-07T04:51:01.000Z_
4+
###### Diff: [`e8ee850...6ca3a68`](https://github.com/ChromeDevTools/devtools-protocol/compare/e8ee850...6ca3a68)
5+
6+
```diff
7+
@@ domains/Network.pdl:339 @@ domain Network
8+
HeaderDisallowedByPreflightResponse
9+
RedirectContainsCredentials
10+
# Request was a private network request initiated by a non-secure context.
11+
- InsecurePrivateNetwork
12+
+ InsecureLocalNetwork
13+
# Request carried a target IP address space property that did not match
14+
# the target resource's address space.
15+
- InvalidPrivateNetworkAccess
16+
+ InvalidLocalNetworkAccess
17+
NoCorsRedirectModeNotFollow
18+
# Request was a local network request and is denied by user permission.
19+
# https://wicg.github.io/local-network-access/
20+
```
21+
322
## Roll protocol to r1580600 — _2026-02-06T04:57:42.000Z_
4-
###### Diff: [`92e7a2f...06965c3`](https://github.com/ChromeDevTools/devtools-protocol/compare/92e7a2f...06965c3)
23+
###### Diff: [`92e7a2f...e8ee850`](https://github.com/ChromeDevTools/devtools-protocol/compare/92e7a2f...e8ee850)
524

625
```diff
726
@@ domains/Audits.pdl:353 @@ experimental domain Audits
@@ -42359,19 +42378,4 @@ index 0dbdc01d..7a3c772c 100644
4235942378
optional object auxData
4236042379

4236142380
# Detailed information about exception (or error) that was thrown during script compilation or
42362-
```
42363-
42364-
## Roll protocol to r1134181 — _2023-04-22T04:26:52.000Z_
42365-
###### Diff: [`052cf2f...4dd6c67`](https://github.com/ChromeDevTools/devtools-protocol/compare/052cf2f...4dd6c67)
42366-
42367-
```diff
42368-
@@ browser_protocol.pdl:10950 @@ experimental domain Preload
42369-
CrossSiteNavigationInMainFrameNavigation
42370-
SameSiteCrossOriginRedirectNotOptInInMainFrameNavigation
42371-
SameSiteCrossOriginNavigationNotOptInInMainFrameNavigation
42372-
+ MemoryPressureOnTrigger
42373-
+ MemoryPressureAfterTriggered
42374-
42375-
# Fired when a prerender attempt is completed.
42376-
event prerenderAttemptCompleted
4237742381
```

json/browser_protocol.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15654,8 +15654,8 @@
1565415654
"MethodDisallowedByPreflightResponse",
1565515655
"HeaderDisallowedByPreflightResponse",
1565615656
"RedirectContainsCredentials",
15657-
"InsecurePrivateNetwork",
15658-
"InvalidPrivateNetworkAccess",
15657+
"InsecureLocalNetwork",
15658+
"InvalidLocalNetworkAccess",
1565915659
"NoCorsRedirectModeNotFollow",
1566015660
"LocalNetworkAccessPermissionDenied"
1566115661
]

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.1580600",
3+
"version": "0.0.1581282",
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -339,10 +339,10 @@ domain Network
339339
HeaderDisallowedByPreflightResponse
340340
RedirectContainsCredentials
341341
# Request was a private network request initiated by a non-secure context.
342-
InsecurePrivateNetwork
342+
InsecureLocalNetwork
343343
# Request carried a target IP address space property that did not match
344344
# the target resource's address space.
345-
InvalidPrivateNetworkAccess
345+
InvalidLocalNetworkAccess
346346
NoCorsRedirectModeNotFollow
347347
# Request was a local network request and is denied by user permission.
348348
# https://wicg.github.io/local-network-access/

types/protocol.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12505,7 +12505,7 @@ export namespace Protocol {
1250512505
/**
1250612506
* The reason why request was blocked.
1250712507
*/
12508-
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');
12508+
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' | 'InsecureLocalNetwork' | 'InvalidLocalNetworkAccess' | 'NoCorsRedirectModeNotFollow' | 'LocalNetworkAccessPermissionDenied');
1250912509

1251012510
export interface CorsErrorStatus {
1251112511
corsError: CorsError;

0 commit comments

Comments
 (0)