Skip to content

Commit 4819069

Browse files
committed
Roll protocol to r1488636
1 parent 1103fe1 commit 4819069

File tree

5 files changed

+32
-24
lines changed

5 files changed

+32
-24
lines changed

changelog.md

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

22

3+
## Roll protocol to r1488636 — _2025-07-18T04:33:56.000Z_
4+
###### Diff: [`1103fe1...8a8d5bd`](https://github.com/ChromeDevTools/devtools-protocol/compare/1103fe1...8a8d5bd)
5+
6+
```diff
7+
@@ browser_protocol.pdl:7711 @@ domain Network
8+
experimental type IPAddressSpace extends string
9+
enum
10+
Loopback
11+
- Private
12+
+ Local
13+
Public
14+
Unknown
15+
16+
@@ -13103,6 +13103,7 @@ experimental domain Preload
17+
enum
18+
SourceIsNotJsonObject
19+
InvalidRulesSkipped
20+
+ InvalidRulesetLevelTag
21+
22+
# The type of preloading attempted. It corresponds to
23+
# mojom::SpeculationAction (although PrefetchWithSubresources is omitted as it
24+
```
25+
326
## Roll protocol to r1488040 — _2025-07-17T04:33:47.000Z_
4-
###### Diff: [`15a4967...5c01b39`](https://github.com/ChromeDevTools/devtools-protocol/compare/15a4967...5c01b39)
27+
###### Diff: [`15a4967...1103fe1`](https://github.com/ChromeDevTools/devtools-protocol/compare/15a4967...1103fe1)
528

629
```diff
730
@@ browser_protocol.pdl:2559 @@ experimental domain CSS
@@ -14031,21 +14054,4 @@ index b3b97fa..6efcf78 100644
1403114054

1403214055
# Fired when frame no longer has a scheduled navigation.
1403314056
deprecated event frameClearedScheduledNavigation
14034-
```
14035-
14036-
## Roll protocol to r1059094 — _2022-10-14T04:59:20.000Z_
14037-
###### Diff: [`366164c...ddedcee`](https://github.com/ChromeDevTools/devtools-protocol/compare/366164c...ddedcee)
14038-
14039-
```diff
14040-
@@ browser_protocol.pdl:9945 @@ domain Fetch
14041-
optional string method
14042-
# If set, overrides the post data in the request.
14043-
optional binary postData
14044-
- # If set, overrides the request headers.
14045-
+ # If set, overrides the request headers. Note that the overrides do not
14046-
+ # extend to subsequent redirect hops, if a redirect happens. Another override
14047-
+ # may be applied to a different request produced by a redirect.
14048-
optional array of HeaderEntry headers
14049-
# If set, overrides response interception behavior for this request.
14050-
experimental optional boolean interceptResponse
1405114057
```

json/browser_protocol.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14845,7 +14845,7 @@
1484514845
"type": "string",
1484614846
"enum": [
1484714847
"Loopback",
14848-
"Private",
14848+
"Local",
1484914849
"Public",
1485014850
"Unknown"
1485114851
]
@@ -27810,7 +27810,8 @@
2781027810
"type": "string",
2781127811
"enum": [
2781227812
"SourceIsNotJsonObject",
27813-
"InvalidRulesSkipped"
27813+
"InvalidRulesSkipped",
27814+
"InvalidRulesetLevelTag"
2781427815
]
2781527816
},
2781627817
{

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

pdl/browser_protocol.pdl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7711,7 +7711,7 @@ domain Network
77117711
experimental type IPAddressSpace extends string
77127712
enum
77137713
Loopback
7714-
Private
7714+
Local
77157715
Public
77167716
Unknown
77177717

@@ -13103,6 +13103,7 @@ experimental domain Preload
1310313103
enum
1310413104
SourceIsNotJsonObject
1310513105
InvalidRulesSkipped
13106+
InvalidRulesetLevelTag
1310613107

1310713108
# The type of preloading attempted. It corresponds to
1310813109
# mojom::SpeculationAction (although PrefetchWithSubresources is omitted as it

types/protocol.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11830,7 +11830,7 @@ export namespace Protocol {
1183011830

1183111831
export type PrivateNetworkRequestPolicy = ('Allow' | 'BlockFromInsecureToMorePrivate' | 'WarnFromInsecureToMorePrivate' | 'PreflightBlock' | 'PreflightWarn' | 'PermissionBlock' | 'PermissionWarn');
1183211832

11833-
export type IPAddressSpace = ('Loopback' | 'Private' | 'Public' | 'Unknown');
11833+
export type IPAddressSpace = ('Loopback' | 'Local' | 'Public' | 'Unknown');
1183411834

1183511835
export interface ConnectTiming {
1183611836
/**
@@ -19564,7 +19564,7 @@ export namespace Protocol {
1956419564
errorMessage?: string;
1956519565
}
1956619566

19567-
export type RuleSetErrorType = ('SourceIsNotJsonObject' | 'InvalidRulesSkipped');
19567+
export type RuleSetErrorType = ('SourceIsNotJsonObject' | 'InvalidRulesSkipped' | 'InvalidRulesetLevelTag');
1956819568

1956919569
/**
1957019570
* The type of preloading attempted. It corresponds to

0 commit comments

Comments
 (0)