Skip to content

Commit 095c2d3

Browse files
Bump chrome to 111.0.5563.146
1 parent 02ed287 commit 095c2d3

File tree

8 files changed

+139
-19
lines changed

8 files changed

+139
-19
lines changed

ChromeDevToolsBase/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>com.hubspot.chrome</groupId>
55
<artifactId>ChromeDevTools-parent</artifactId>
6-
<version>110.0.5481.177-SNAPSHOT</version>
6+
<version>111.0.5563.146-SNAPSHOT</version>
77
</parent>
88

99
<artifactId>ChromeDevToolsBase</artifactId>

ChromeDevToolsClient/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.hubspot.chrome</groupId>
66
<artifactId>ChromeDevTools-parent</artifactId>
7-
<version>110.0.5481.177-SNAPSHOT</version>
7+
<version>111.0.5563.146-SNAPSHOT</version>
88
</parent>
99

1010
<artifactId>ChromeDevToolsClient</artifactId>

CodeGeneration/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.hubspot.chrome</groupId>
66
<artifactId>ChromeDevTools-parent</artifactId>
7-
<version>110.0.5481.177-SNAPSHOT</version>
7+
<version>111.0.5563.146-SNAPSHOT</version>
88
</parent>
99

1010
<artifactId>CodeGeneration</artifactId>

CodeGeneration/src/main/resources/browser_protocol.json

+65-7
Original file line numberDiff line numberDiff line change
@@ -1535,7 +1535,11 @@
15351535
"type": "string",
15361536
"enum": [
15371537
"CrossOriginPortalPostMessageError",
1538-
"FormLabelForNameError"
1538+
"FormLabelForNameError",
1539+
"FormDuplicateIdForInputError",
1540+
"FormInputWithNoLabelError",
1541+
"FormAutocompleteAttributeEmptyError",
1542+
"FormEmptyIdAndNameAttributesForInputError"
15391543
]
15401544
},
15411545
{
@@ -1590,6 +1594,7 @@
15901594
"NoSysexWebMIDIWithoutPermission",
15911595
"NotificationInsecureOrigin",
15921596
"NotificationPermissionRequestedIframe",
1597+
"ObsoleteCreateImageBitmapImageOrientationNone",
15931598
"ObsoleteWebRtcCipherSuite",
15941599
"OpenWebDatabaseInsecureContext",
15951600
"OverflowVisibleOnReplacedElement",
@@ -1606,6 +1611,7 @@
16061611
"PrefixedVideoExitFullscreen",
16071612
"PrefixedVideoExitFullScreen",
16081613
"PrefixedVideoSupportsFullscreen",
1614+
"PrivacySandboxExtensionsAPI",
16091615
"RangeExpand",
16101616
"RequestedSubresourceWithEmbeddedCredentials",
16111617
"RTCConstraintEnableDtlsSrtpFalse",
@@ -1669,6 +1675,7 @@
16691675
"WellKnownHttpNotFound",
16701676
"WellKnownNoResponse",
16711677
"WellKnownInvalidResponse",
1678+
"WellKnownListEmpty",
16721679
"ConfigNotInWellKnown",
16731680
"WellKnownTooBig",
16741681
"ConfigHttpNotFound",
@@ -1683,6 +1690,7 @@
16831690
"AccountsHttpNotFound",
16841691
"AccountsNoResponse",
16851692
"AccountsInvalidResponse",
1693+
"AccountsListEmpty",
16861694
"IdTokenHttpNotFound",
16871695
"IdTokenNoResponse",
16881696
"IdTokenInvalidResponse",
@@ -2175,6 +2183,7 @@
21752183
"protectedMediaIdentifier",
21762184
"sensors",
21772185
"storageAccess",
2186+
"topLevelStorageAccess",
21782187
"videoCapture",
21792188
"videoCapturePanTiltZoom",
21802189
"wakeLockScreen",
@@ -2490,7 +2499,7 @@
24902499
},
24912500
{
24922501
"name": "delta",
2493-
"description": "If true, retrieve delta since last call.",
2502+
"description": "If true, retrieve delta since last delta call.",
24942503
"optional": true,
24952504
"type": "boolean"
24962505
}
@@ -2518,7 +2527,7 @@
25182527
},
25192528
{
25202529
"name": "delta",
2521-
"description": "If true, retrieve delta since last call.",
2530+
"description": "If true, retrieve delta since last delta call.",
25222531
"optional": true,
25232532
"type": "boolean"
25242533
}
@@ -8007,6 +8016,7 @@
80078016
"properties": [
80088017
{
80098018
"name": "brands",
8019+
"description": "Brands appearing in Sec-CH-UA.",
80108020
"optional": true,
80118021
"type": "array",
80128022
"items": {
@@ -8015,6 +8025,7 @@
80158025
},
80168026
{
80178027
"name": "fullVersionList",
8028+
"description": "Brands appearing in Sec-CH-UA-Full-Version-List.",
80188029
"optional": true,
80198030
"type": "array",
80208031
"items": {
@@ -11380,12 +11391,12 @@
1138011391
"type": "object",
1138111392
"properties": [
1138211393
{
11383-
"name": "type",
11394+
"name": "operation",
1138411395
"$ref": "TrustTokenOperationType"
1138511396
},
1138611397
{
1138711398
"name": "refreshPolicy",
11388-
"description": "Only set for \"token-redemption\" type and determine whether\nto request a fresh SRR or use a still valid cached SRR.",
11399+
"description": "Only set for \"token-redemption\" operation and determine whether\nto request a fresh SRR or use a still valid cached SRR.",
1138911400
"type": "string",
1139011401
"enum": [
1139111402
"UseCached",
@@ -12789,7 +12800,8 @@
1278912800
},
1279012801
{
1279112802
"name": "getAllCookies",
12792-
"description": "Returns all browser cookies. Depending on the backend support, will return detailed cookie\ninformation in the `cookies` field.",
12803+
"description": "Returns all browser cookies. Depending on the backend support, will return detailed cookie\ninformation in the `cookies` field.\nDeprecated. Use Storage.getCookies instead.",
12804+
"deprecated": true,
1279312805
"returns": [
1279412806
{
1279512807
"name": "cookies",
@@ -13919,6 +13931,18 @@
1391913931
"description": "Raw response header text as it was received over the wire. The raw text may not always be\navailable, such as in the case of HTTP/2 or QUIC.",
1392013932
"optional": true,
1392113933
"type": "string"
13934+
},
13935+
{
13936+
"name": "cookiePartitionKey",
13937+
"description": "The cookie partition key that will be used to store partitioned cookies set in this response.\nOnly sent when partitioned cookies are enabled.",
13938+
"optional": true,
13939+
"type": "string"
13940+
},
13941+
{
13942+
"name": "cookiePartitionKeyOpaque",
13943+
"description": "True if partitioned cookies are enabled, but the partition key is not serializeable to string.",
13944+
"optional": true,
13945+
"type": "boolean"
1392213946
}
1392313947
]
1392413948
},
@@ -15372,12 +15396,14 @@
1537215396
"otp-credentials",
1537315397
"payment",
1537415398
"picture-in-picture",
15399+
"private-aggregation",
1537515400
"publickey-credentials-get",
1537615401
"run-ad-auction",
1537715402
"screen-wake-lock",
1537815403
"serial",
1537915404
"shared-autofill",
1538015405
"shared-storage",
15406+
"shared-storage-select-url",
1538115407
"smart-card",
1538215408
"storage-access",
1538315409
"sync-xhr",
@@ -15386,6 +15412,7 @@
1538615412
"usb",
1538715413
"vertical-scroll",
1538815414
"web-share",
15415+
"window-management",
1538915416
"window-placement",
1539015417
"xr-spatial-tracking"
1539115418
]
@@ -16300,6 +16327,7 @@
1630016327
"InjectedJavascript",
1630116328
"InjectedStyleSheet",
1630216329
"KeepaliveRequest",
16330+
"IndexedDBEvent",
1630316331
"Dummy",
1630416332
"AuthorizationHeader",
1630516333
"ContentSecurityHandler",
@@ -16441,7 +16469,13 @@
1644116469
"SameSiteCrossOriginNavigationNotOptIn",
1644216470
"ActivationNavigationParameterMismatch",
1644316471
"ActivatedInBackground",
16444-
"EmbedderHostDisallowed"
16472+
"EmbedderHostDisallowed",
16473+
"ActivationNavigationDestroyedBeforeSuccess",
16474+
"TabClosedByUserGesture",
16475+
"TabClosedWithoutUserGesture",
16476+
"PrimaryMainFrameRendererProcessCrashed",
16477+
"PrimaryMainFrameRendererProcessKilled",
16478+
"ActivationFramePolicyNotCompatible"
1644516479
]
1644616480
}
1644716481
],
@@ -19835,6 +19869,17 @@
1983519869
}
1983619870
]
1983719871
},
19872+
{
19873+
"name": "resetSharedStorageBudget",
19874+
"description": "Resets the budget for `ownerOrigin` by clearing all budget withdrawals.",
19875+
"experimental": true,
19876+
"parameters": [
19877+
{
19878+
"name": "ownerOrigin",
19879+
"type": "string"
19880+
}
19881+
]
19882+
},
1983819883
{
1983919884
"name": "setSharedStorageTracking",
1984019885
"description": "Enables/disables issuing of sharedStorageAccessed events.",
@@ -20592,6 +20637,13 @@
2059220637
"description": "Whether to create the target in background or foreground (chrome-only,\nfalse by default).",
2059320638
"optional": true,
2059420639
"type": "boolean"
20640+
},
20641+
{
20642+
"name": "forTab",
20643+
"description": "Whether to create the target of type \"tab\".",
20644+
"experimental": true,
20645+
"optional": true,
20646+
"type": "boolean"
2059520647
}
2059620648
],
2059720649
"returns": [
@@ -22262,6 +22314,12 @@
2226222314
"optional": true,
2226322315
"type": "boolean"
2226422316
},
22317+
{
22318+
"name": "hasPrf",
22319+
"description": "If set to true, the authenticator will support the prf extension.\nhttps://w3c.github.io/webauthn/#prf-extension\nDefaults to false.",
22320+
"optional": true,
22321+
"type": "boolean"
22322+
},
2226522323
{
2226622324
"name": "automaticPresenceSimulation",
2226722325
"description": "If set to true, tests of user presence will succeed immediately.\nOtherwise, they will not be resolved. Defaults to true.",

0 commit comments

Comments
 (0)