Skip to content

Commit

Permalink
Roll protocol to r1173815
Browse files Browse the repository at this point in the history
  • Loading branch information
devtools-bot committed Jul 22, 2023
1 parent 57ca382 commit e22d6aa
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 20 deletions.
32 changes: 15 additions & 17 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,21 @@


## Roll protocol to r1173815 — _2023-07-22T04:25:56.000Z_
###### Diff: [`57ca382...47f547e`](https://github.com/ChromeDevTools/devtools-protocol/compare/`57ca382...47f547e`)

```diff
@@ browser_protocol.pdl:496 @@ experimental domain Audits
WarnSameSiteLaxCrossDowngradeLax
WarnAttributeValueExceedsMaxSize
WarnDomainNonASCII
- WarnThirdPartyPhaseout

type CookieOperation extends string
enum
```

## Roll protocol to r1173320 — _2023-07-21T04:26:31.000Z_
###### Diff: [`68de33a...640b99f`](https://github.com/ChromeDevTools/devtools-protocol/compare/`68de33a...640b99f`)
###### Diff: [`68de33a...57ca382`](https://github.com/ChromeDevTools/devtools-protocol/compare/`68de33a...57ca382`)

```diff
@@ browser_protocol.pdl:72 @@ experimental domain Accessibility
Expand Down Expand Up @@ -10580,20 +10594,4 @@ index bd277eb..09c420e 100644
#Blocklisted features
WebSocket
WebRTC
```

## Roll protocol to r905252 — _2021-07-26T15:16:11.000Z_
###### Diff: [`6da1a03...52195bf`](https://github.com/ChromeDevTools/devtools-protocol/compare/`6da1a03...52195bf`)

```diff
@@ browser_protocol.pdl:5926 @@ domain Network
# The IP address space of the resource. The address space can only be determined once the transport
# established the connection, so we can't send it in `requestWillBeSentExtraInfo`.
IPAddressSpace resourceIPAddressSpace
- # The status code of the response. This is useful in cases the request failed and no responseReceived
- # event is triggered, which is the case for, e.g., CORS errors.
- integer statusCode
# Raw response header text as it was received over the wire. The raw text may not always be
# available, such as in the case of HTTP/2 or QUIC.
optional string headersText
```
3 changes: 2 additions & 1 deletion json/browser_protocol.json
Original file line number Diff line number Diff line change
Expand Up @@ -1009,7 +1009,8 @@
"WarnSameSiteLaxCrossDowngradeStrict",
"WarnSameSiteLaxCrossDowngradeLax",
"WarnAttributeValueExceedsMaxSize",
"WarnDomainNonASCII"
"WarnDomainNonASCII",
"WarnThirdPartyPhaseout"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "devtools-protocol",
"version": "0.0.1173320",
"version": "0.0.1173815",
"description": "The Chrome DevTools Protocol JSON",
"repository": "https://github.com/ChromeDevTools/devtools-protocol",
"author": "The Chromium Authors",
Expand Down
1 change: 1 addition & 0 deletions pdl/browser_protocol.pdl
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,7 @@ experimental domain Audits
WarnSameSiteLaxCrossDowngradeLax
WarnAttributeValueExceedsMaxSize
WarnDomainNonASCII
WarnThirdPartyPhaseout

type CookieOperation extends string
enum
Expand Down
2 changes: 1 addition & 1 deletion types/protocol.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3278,7 +3278,7 @@ export namespace Protocol {

export type CookieExclusionReason = ('ExcludeSameSiteUnspecifiedTreatedAsLax' | 'ExcludeSameSiteNoneInsecure' | 'ExcludeSameSiteLax' | 'ExcludeSameSiteStrict' | 'ExcludeInvalidSameParty' | 'ExcludeSamePartyCrossPartyContext' | 'ExcludeDomainNonASCII' | 'ExcludeThirdPartyCookieBlockedInFirstPartySet');

export type CookieWarningReason = ('WarnSameSiteUnspecifiedCrossSiteContext' | 'WarnSameSiteNoneInsecure' | 'WarnSameSiteUnspecifiedLaxAllowUnsafe' | 'WarnSameSiteStrictLaxDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeLax' | 'WarnSameSiteLaxCrossDowngradeStrict' | 'WarnSameSiteLaxCrossDowngradeLax' | 'WarnAttributeValueExceedsMaxSize' | 'WarnDomainNonASCII');
export type CookieWarningReason = ('WarnSameSiteUnspecifiedCrossSiteContext' | 'WarnSameSiteNoneInsecure' | 'WarnSameSiteUnspecifiedLaxAllowUnsafe' | 'WarnSameSiteStrictLaxDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeLax' | 'WarnSameSiteLaxCrossDowngradeStrict' | 'WarnSameSiteLaxCrossDowngradeLax' | 'WarnAttributeValueExceedsMaxSize' | 'WarnDomainNonASCII' | 'WarnThirdPartyPhaseout');

export type CookieOperation = ('SetCookie' | 'ReadCookie');

Expand Down

0 comments on commit e22d6aa

Please sign in to comment.