Skip to content

Commit 33ab53c

Browse files
committed
Roll protocol to r1389614
1 parent c2bdeee commit 33ab53c

File tree

5 files changed

+31
-19
lines changed

5 files changed

+31
-19
lines changed

changelog.md

Lines changed: 22 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11

22

3+
## Roll protocol to r1389614 — _2024-11-29T04:30:26.000Z_
4+
###### Diff: [`c2bdeee...1c16241`](https://github.com/ChromeDevTools/devtools-protocol/compare/c2bdeee...1c16241)
5+
6+
```diff
7+
@@ browser_protocol.pdl:654 @@ experimental domain Audits
8+
CorpNotSameOriginAfterDefaultedToSameOriginByDip
9+
CorpNotSameOriginAfterDefaultedToSameOriginByCoepAndDip
10+
CorpNotSameSite
11+
+ SRIMessageSignatureMismatch
12+
13+
# Details for a request that has been blocked with the BLOCKED_BY_RESPONSE
14+
# code. Currently only used for COEP/COOP, but may be extended to include
15+
@@ -5991,6 +5992,7 @@ domain Network
16+
corp-not-same-origin-after-defaulted-to-same-origin-by-dip
17+
corp-not-same-origin-after-defaulted-to-same-origin-by-coep-and-dip
18+
corp-not-same-site
19+
+ sri-message-signature-mismatch
20+
21+
# The reason why request was blocked.
22+
type CorsError extends string
23+
```
24+
325
## Roll protocol to r1388031 — _2024-11-26T04:30:08.000Z_
426
###### Diff: [`1538d6c...e3771a8`](https://github.com/ChromeDevTools/devtools-protocol/compare/1538d6c...e3771a8)
527

@@ -12255,18 +12277,4 @@ index 18cf0c7..8e43695 100644
1225512277

1225612278
# Fired when frame no longer has a scheduled navigation.
1225712279
deprecated event frameClearedScheduledNavigation
12258-
```
12259-
12260-
## Roll protocol to r1010249 — _2022-06-02T20:15:24.000Z_
12261-
###### Diff: [`741c799...4ef6135`](https://github.com/ChromeDevTools/devtools-protocol/compare/741c799...4ef6135)
12262-
12263-
```diff
12264-
@@ browser_protocol.pdl:767 @@ experimental domain Audits
12265-
NotificationInsecureOrigin
12266-
NotificationPermissionRequestedIframe
12267-
ObsoleteWebRtcCipherSuite
12268-
- PaymentRequestBasicCard
12269-
PictureSourceSrc
12270-
PrefixedCancelAnimationFrame
12271-
PrefixedRequestAnimationFrame
1227212280
```

json/browser_protocol.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1261,7 +1261,8 @@
12611261
"CorpNotSameOriginAfterDefaultedToSameOriginByCoep",
12621262
"CorpNotSameOriginAfterDefaultedToSameOriginByDip",
12631263
"CorpNotSameOriginAfterDefaultedToSameOriginByCoepAndDip",
1264-
"CorpNotSameSite"
1264+
"CorpNotSameSite",
1265+
"SRIMessageSignatureMismatch"
12651266
]
12661267
},
12671268
{
@@ -12961,7 +12962,8 @@
1296112962
"corp-not-same-origin-after-defaulted-to-same-origin-by-coep",
1296212963
"corp-not-same-origin-after-defaulted-to-same-origin-by-dip",
1296312964
"corp-not-same-origin-after-defaulted-to-same-origin-by-coep-and-dip",
12964-
"corp-not-same-site"
12965+
"corp-not-same-site",
12966+
"sri-message-signature-mismatch"
1296512967
]
1296612968
},
1296712969
{

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.1389201",
3+
"version": "0.0.1389614",
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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -654,6 +654,7 @@ experimental domain Audits
654654
CorpNotSameOriginAfterDefaultedToSameOriginByDip
655655
CorpNotSameOriginAfterDefaultedToSameOriginByCoepAndDip
656656
CorpNotSameSite
657+
SRIMessageSignatureMismatch
657658

658659
# Details for a request that has been blocked with the BLOCKED_BY_RESPONSE
659660
# code. Currently only used for COEP/COOP, but may be extended to include
@@ -5991,6 +5992,7 @@ domain Network
59915992
corp-not-same-origin-after-defaulted-to-same-origin-by-dip
59925993
corp-not-same-origin-after-defaulted-to-same-origin-by-coep-and-dip
59935994
corp-not-same-site
5995+
sri-message-signature-mismatch
59945996

59955997
# The reason why request was blocked.
59965998
type CorsError extends string

types/protocol.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3408,7 +3408,7 @@ export namespace Protocol {
34083408
* Enum indicating the reason a response has been blocked. These reasons are
34093409
* refinements of the net error BLOCKED_BY_RESPONSE.
34103410
*/
3411-
export type BlockedByResponseReason = ('CoepFrameResourceNeedsCoepHeader' | 'CoopSandboxedIFrameCannotNavigateToCoopPage' | 'CorpNotSameOrigin' | 'CorpNotSameOriginAfterDefaultedToSameOriginByCoep' | 'CorpNotSameOriginAfterDefaultedToSameOriginByDip' | 'CorpNotSameOriginAfterDefaultedToSameOriginByCoepAndDip' | 'CorpNotSameSite');
3411+
export type BlockedByResponseReason = ('CoepFrameResourceNeedsCoepHeader' | 'CoopSandboxedIFrameCannotNavigateToCoopPage' | 'CorpNotSameOrigin' | 'CorpNotSameOriginAfterDefaultedToSameOriginByCoep' | 'CorpNotSameOriginAfterDefaultedToSameOriginByDip' | 'CorpNotSameOriginAfterDefaultedToSameOriginByCoepAndDip' | 'CorpNotSameSite' | 'SRIMessageSignatureMismatch');
34123412

34133413
/**
34143414
* Details for a request that has been blocked with the BLOCKED_BY_RESPONSE
@@ -10658,7 +10658,7 @@ export namespace Protocol {
1065810658
/**
1065910659
* The reason why request was blocked.
1066010660
*/
10661-
export type BlockedReason = ('other' | 'csp' | 'mixed-content' | 'origin' | 'inspector' | 'subresource-filter' | 'content-type' | 'coep-frame-resource-needs-coep-header' | 'coop-sandboxed-iframe-cannot-navigate-to-coop-page' | 'corp-not-same-origin' | 'corp-not-same-origin-after-defaulted-to-same-origin-by-coep' | 'corp-not-same-origin-after-defaulted-to-same-origin-by-dip' | 'corp-not-same-origin-after-defaulted-to-same-origin-by-coep-and-dip' | 'corp-not-same-site');
10661+
export type BlockedReason = ('other' | 'csp' | 'mixed-content' | 'origin' | 'inspector' | 'subresource-filter' | 'content-type' | 'coep-frame-resource-needs-coep-header' | 'coop-sandboxed-iframe-cannot-navigate-to-coop-page' | 'corp-not-same-origin' | 'corp-not-same-origin-after-defaulted-to-same-origin-by-coep' | 'corp-not-same-origin-after-defaulted-to-same-origin-by-dip' | 'corp-not-same-origin-after-defaulted-to-same-origin-by-coep-and-dip' | 'corp-not-same-site' | 'sri-message-signature-mismatch');
1066210662

1066310663
/**
1066410664
* The reason why request was blocked.

0 commit comments

Comments
 (0)