Skip to content

Commit f8bae52

Browse files
committed
Roll protocol to r1578551
1 parent cd6a169 commit f8bae52

6 files changed

Lines changed: 35 additions & 26 deletions

File tree

changelog.md

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

22

3+
## Roll protocol to r1578551 — _2026-02-03T04:57:40.000Z_
4+
###### Diff: [`cd6a169...04445bc`](https://github.com/ChromeDevTools/devtools-protocol/compare/cd6a169...04445bc)
5+
6+
```diff
7+
@@ domains/Network.pdl:1769 @@ domain Network
8+
DirectUDPMessage message
9+
MonotonicTime timestamp
10+
11+
- experimental type PrivateNetworkRequestPolicy extends string
12+
+ experimental type LocalNetworkAccessRequestPolicy extends string
13+
enum
14+
Allow
15+
BlockFromInsecureToMorePrivate
16+
@@ -1795,7 +1795,7 @@ domain Network
17+
properties
18+
boolean initiatorIsSecureContext
19+
IPAddressSpace initiatorIPAddressSpace
20+
- PrivateNetworkRequestPolicy privateNetworkRequestPolicy
21+
+ LocalNetworkAccessRequestPolicy localNetworkAccessRequestPolicy
22+
23+
# Fired when additional information about a requestWillBeSent event is available from the
24+
# network stack. Not every requestWillBeSent event will have an additional
25+
```
26+
327
## Roll protocol to r1577676 — _2026-01-31T04:48:29.000Z_
4-
###### Diff: [`ab28501...02b69da`](https://github.com/ChromeDevTools/devtools-protocol/compare/ab28501...02b69da)
28+
###### Diff: [`ab28501...cd6a169`](https://github.com/ChromeDevTools/devtools-protocol/compare/ab28501...cd6a169)
529

630
```diff
731
@@ domains/Extensions.pdl:13 @@ experimental domain Extensions
@@ -42313,19 +42337,4 @@ index 0dbdc01d..7a3c772c 100644
4231342337
ErrorIdToken
4231442338
Canceled
4231542339
RpPageNotVisible
42316-
```
42317-
42318-
## Roll protocol to r1131670 — _2023-04-18T04:26:48.000Z_
42319-
###### Diff: [`ad86c64...e60aecf`](https://github.com/ChromeDevTools/devtools-protocol/compare/ad86c64...e60aecf)
42320-
42321-
```diff
42322-
@@ browser_protocol.pdl:1412 @@ experimental domain CSS
42323-
number endLine
42324-
# Column offset of the end of the stylesheet within the resource (zero based).
42325-
number endColumn
42326-
+ # If the style sheet was loaded from a network resource, this indicates when the resource failed to load
42327-
+ experimental optional boolean loadingFailed
42328-
42329-
# CSS rule representation.
42330-
type CSSRule extends object
4233142340
```

json/browser_protocol.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16889,7 +16889,7 @@
1688916889
]
1689016890
},
1689116891
{
16892-
"id": "PrivateNetworkRequestPolicy",
16892+
"id": "LocalNetworkAccessRequestPolicy",
1689316893
"experimental": true,
1689416894
"type": "string",
1689516895
"enum": [
@@ -16937,8 +16937,8 @@
1693716937
"$ref": "IPAddressSpace"
1693816938
},
1693916939
{
16940-
"name": "privateNetworkRequestPolicy",
16941-
"$ref": "PrivateNetworkRequestPolicy"
16940+
"name": "localNetworkAccessRequestPolicy",
16941+
"$ref": "LocalNetworkAccessRequestPolicy"
1694216942
}
1694316943
]
1694416944
},

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.1577676",
3+
"version": "0.0.1578551",
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
@@ -1769,7 +1769,7 @@ domain Network
17691769
DirectUDPMessage message
17701770
MonotonicTime timestamp
17711771

1772-
experimental type PrivateNetworkRequestPolicy extends string
1772+
experimental type LocalNetworkAccessRequestPolicy extends string
17731773
enum
17741774
Allow
17751775
BlockFromInsecureToMorePrivate
@@ -1795,7 +1795,7 @@ domain Network
17951795
properties
17961796
boolean initiatorIsSecureContext
17971797
IPAddressSpace initiatorIPAddressSpace
1798-
PrivateNetworkRequestPolicy privateNetworkRequestPolicy
1798+
LocalNetworkAccessRequestPolicy localNetworkAccessRequestPolicy
17991799

18001800
# Fired when additional information about a requestWillBeSent event is available from the
18011801
# network stack. Not every requestWillBeSent event will have an additional

types/protocol.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13404,7 +13404,7 @@ export namespace Protocol {
1340413404
/**
1340513405
* @experimental
1340613406
*/
13407-
export type PrivateNetworkRequestPolicy = ('Allow' | 'BlockFromInsecureToMorePrivate' | 'WarnFromInsecureToMorePrivate' | 'PermissionBlock' | 'PermissionWarn');
13407+
export type LocalNetworkAccessRequestPolicy = ('Allow' | 'BlockFromInsecureToMorePrivate' | 'WarnFromInsecureToMorePrivate' | 'PermissionBlock' | 'PermissionWarn');
1340813408

1340913409
/**
1341013410
* @experimental
@@ -13429,7 +13429,7 @@ export namespace Protocol {
1342913429
export interface ClientSecurityState {
1343013430
initiatorIsSecureContext: boolean;
1343113431
initiatorIPAddressSpace: IPAddressSpace;
13432-
privateNetworkRequestPolicy: PrivateNetworkRequestPolicy;
13432+
localNetworkAccessRequestPolicy: LocalNetworkAccessRequestPolicy;
1343313433
}
1343413434

1343513435
/**

0 commit comments

Comments
 (0)