Skip to content

Commit 097b400

Browse files
committed
Roll protocol to r1479623
1 parent bdd3e90 commit 097b400

File tree

5 files changed

+20
-44
lines changed

5 files changed

+20
-44
lines changed

changelog.md

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

22

3+
## Roll protocol to r1479623 — _2025-06-27T04:31:59.000Z_
4+
###### Diff: [`bdd3e90...ae7f7aa`](https://github.com/ChromeDevTools/devtools-protocol/compare/bdd3e90...ae7f7aa)
5+
6+
```diff
7+
@@ browser_protocol.pdl:7671 @@ domain Network
8+
9+
experimental type IPAddressSpace extends string
10+
enum
11+
- Local
12+
+ Loopback
13+
Private
14+
Public
15+
Unknown
16+
```
17+
318
## Roll protocol to r1478340 — _2025-06-25T04:32:05.000Z_
4-
###### Diff: [`3d7bae0...2dc1ce3`](https://github.com/ChromeDevTools/devtools-protocol/compare/3d7bae0...2dc1ce3)
19+
###### Diff: [`3d7bae0...bdd3e90`](https://github.com/ChromeDevTools/devtools-protocol/compare/3d7bae0...bdd3e90)
520

621
```diff
722
@@ browser_protocol.pdl:1031 @@ experimental domain Audits
@@ -14101,43 +14116,4 @@ index b3b97fa..6efcf78 100644
1410114116
idle-detection
1410214117
interest-cohort
1410314118
join-ad-interest-group
14104-
```
14105-
14106-
## Roll protocol to r1052219 — _2022-09-28T04:58:58.000Z_
14107-
###### Diff: [`7688064...0ce6bcb`](https://github.com/ChromeDevTools/devtools-protocol/compare/7688064...0ce6bcb)
14108-
14109-
```diff
14110-
@@ browser_protocol.pdl:1 @@ @@ -1,4 +1,4 @@
14111-
-# Copyright 2017 The Chromium Authors. All rights reserved.
14112-
+# Copyright 2017 The Chromium Authors
14113-
# Use of this source code is governed by a BSD-style license that can be
14114-
# found in the LICENSE file.
14115-
#
14116-
@@ -775,8 +775,6 @@ experimental domain Audits
14117-
LocalCSSFileExtensionRejected
14118-
MediaSourceAbortRemove
14119-
MediaSourceDurationTruncatingBuffered
14120-
- NavigateEventRestoreScroll
14121-
- NavigateEventTransitionWhile
14122-
NoSysexWebMIDIWithoutPermission
14123-
NotificationInsecureOrigin
14124-
NotificationPermissionRequestedIframe
14125-
@@ -784,6 +782,7 @@ experimental domain Audits
14126-
OpenWebDatabaseInsecureContext
14127-
OverflowVisibleOnReplacedElement
14128-
PaymentInstruments
14129-
+ PaymentRequestCSPViolation
14130-
PersistentQuotaType
14131-
PictureSourceSrc
14132-
PrefixedCancelAnimationFrame
14133-
@@ -9361,6 +9360,9 @@ domain Target
14134-
# Frame id of originating window (is only set if target has an opener).
14135-
experimental optional Page.FrameId openerFrameId
14136-
experimental optional Browser.BrowserContextID browserContextId
14137-
+ # Provides additional details for specific target types. For example, for
14138-
+ # the type of "page", this may be set to "portal" or "prerender".
14139-
+ experimental optional string subtype
14140-
14141-
# A filter used by target query/discovery/auto-attach operations.
14142-
experimental type FilterEntry extends object
1414314119
```

json/browser_protocol.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14762,7 +14762,7 @@
1476214762
"experimental": true,
1476314763
"type": "string",
1476414764
"enum": [
14765-
"Local",
14765+
"Loopback",
1476614766
"Private",
1476714767
"Public",
1476814768
"Unknown"

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.1478340",
3+
"version": "0.0.1479623",
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7671,7 +7671,7 @@ domain Network
76717671

76727672
experimental type IPAddressSpace extends string
76737673
enum
7674-
Local
7674+
Loopback
76757675
Private
76767676
Public
76777677
Unknown

types/protocol.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11779,7 +11779,7 @@ export namespace Protocol {
1177911779

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

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

1178411784
export interface ConnectTiming {
1178511785
/**

0 commit comments

Comments
 (0)