Skip to content

Commit

Permalink
Roll protocol to r1177611
Browse files Browse the repository at this point in the history
  • Loading branch information
devtools-bot committed Aug 1, 2023
1 parent e22d6aa commit 0de2384
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 18 deletions.
33 changes: 18 additions & 15 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,24 @@


## Roll protocol to r1177611 — _2023-08-01T04:26:34.000Z_
###### Diff: [`e22d6aa...f93174b`](https://github.com/ChromeDevTools/devtools-protocol/compare/`e22d6aa...f93174b`)

```diff
@@ browser_protocol.pdl:5688 @@ domain Network
# The cookie's name/value pair size exceeded the size limit defined in
# RFC6265bis.
NameValuePairExceedsMaxSize
- # The cookie contained a forbidden ASCII control character, or the tab
- # character if it appears in the middle of the cookie name, value, an
- # attribute name, or an attribute value.
- DisallowedCharacter

# Types of reasons why a cookie may not be sent with a request.
experimental type CookieBlockedReason extends string
```

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

```diff
@@ browser_protocol.pdl:496 @@ experimental domain Audits
Expand Down Expand Up @@ -10580,18 +10597,4 @@ index bd277eb..09c420e 100644
ch-viewport-width
ch-width
clipboard-read
```

## Roll protocol to r905680 — _2021-07-27T11:16:20.000Z_
###### Diff: [`52195bf...fa458e7`](https://github.com/ChromeDevTools/devtools-protocol/compare/`52195bf...fa458e7`)

```diff
@@ browser_protocol.pdl:7753 @@ domain Page
CacheControlNoStore
CacheControlNoStoreCookieModified
CacheControlNoStoreHTTPOnlyCookieModified
- NoResponseHead
#Blocklisted features
WebSocket
WebRTC
```
3 changes: 2 additions & 1 deletion json/browser_protocol.json
Original file line number Diff line number Diff line change
Expand Up @@ -12210,7 +12210,8 @@
"SchemefulSameSiteUnspecifiedTreatedAsLax",
"SamePartyFromCrossPartyContext",
"SamePartyConflictsWithOtherAttributes",
"NameValuePairExceedsMaxSize"
"NameValuePairExceedsMaxSize",
"DisallowedCharacter"
]
},
{
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.1173815",
"version": "0.0.1177611",
"description": "The Chrome DevTools Protocol JSON",
"repository": "https://github.com/ChromeDevTools/devtools-protocol",
"author": "The Chromium Authors",
Expand Down
4 changes: 4 additions & 0 deletions pdl/browser_protocol.pdl
Original file line number Diff line number Diff line change
Expand Up @@ -5688,6 +5688,10 @@ domain Network
# The cookie's name/value pair size exceeded the size limit defined in
# RFC6265bis.
NameValuePairExceedsMaxSize
# The cookie contained a forbidden ASCII control character, or the tab
# character if it appears in the middle of the cookie name, value, an
# attribute name, or an attribute value.
DisallowedCharacter

# Types of reasons why a cookie may not be sent with a request.
experimental type CookieBlockedReason extends string
Expand Down
2 changes: 1 addition & 1 deletion types/protocol.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10317,7 +10317,7 @@ export namespace Protocol {
/**
* Types of reasons why a cookie may not be stored from a response.
*/
export type SetCookieBlockedReason = ('SecureOnly' | 'SameSiteStrict' | 'SameSiteLax' | 'SameSiteUnspecifiedTreatedAsLax' | 'SameSiteNoneInsecure' | 'UserPreferences' | 'ThirdPartyBlockedInFirstPartySet' | 'SyntaxError' | 'SchemeNotSupported' | 'OverwriteSecure' | 'InvalidDomain' | 'InvalidPrefix' | 'UnknownError' | 'SchemefulSameSiteStrict' | 'SchemefulSameSiteLax' | 'SchemefulSameSiteUnspecifiedTreatedAsLax' | 'SamePartyFromCrossPartyContext' | 'SamePartyConflictsWithOtherAttributes' | 'NameValuePairExceedsMaxSize');
export type SetCookieBlockedReason = ('SecureOnly' | 'SameSiteStrict' | 'SameSiteLax' | 'SameSiteUnspecifiedTreatedAsLax' | 'SameSiteNoneInsecure' | 'UserPreferences' | 'ThirdPartyBlockedInFirstPartySet' | 'SyntaxError' | 'SchemeNotSupported' | 'OverwriteSecure' | 'InvalidDomain' | 'InvalidPrefix' | 'UnknownError' | 'SchemefulSameSiteStrict' | 'SchemefulSameSiteLax' | 'SchemefulSameSiteUnspecifiedTreatedAsLax' | 'SamePartyFromCrossPartyContext' | 'SamePartyConflictsWithOtherAttributes' | 'NameValuePairExceedsMaxSize' | 'DisallowedCharacter');

/**
* Types of reasons why a cookie may not be sent with a request.
Expand Down

0 comments on commit 0de2384

Please sign in to comment.