Skip to content

Commit

Permalink
Bump chrome to 110.0.5481.77
Browse files Browse the repository at this point in the history
  • Loading branch information
hs-jenkins-bot committed Feb 7, 2023
1 parent 192d623 commit 7384fdc
Show file tree
Hide file tree
Showing 6 changed files with 203 additions and 36 deletions.
2 changes: 1 addition & 1 deletion ChromeDevToolsBase/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.hubspot.chrome</groupId>
<artifactId>ChromeDevTools-parent</artifactId>
<version>109.0.5414.119-SNAPSHOT</version>
<version>110.0.5481.77-SNAPSHOT</version>
</parent>

<artifactId>ChromeDevToolsBase</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion ChromeDevToolsClient/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.hubspot.chrome</groupId>
<artifactId>ChromeDevTools-parent</artifactId>
<version>109.0.5414.119-SNAPSHOT</version>
<version>110.0.5481.77-SNAPSHOT</version>
</parent>

<artifactId>ChromeDevToolsClient</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion CodeGeneration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.hubspot.chrome</groupId>
<artifactId>ChromeDevTools-parent</artifactId>
<version>109.0.5414.119-SNAPSHOT</version>
<version>110.0.5481.77-SNAPSHOT</version>
</parent>

<artifactId>CodeGeneration</artifactId>
Expand Down
142 changes: 126 additions & 16 deletions CodeGeneration/src/main/resources/browser_protocol.json
Original file line number Diff line number Diff line change
Expand Up @@ -992,7 +992,8 @@
"ExcludeSameSiteStrict",
"ExcludeInvalidSameParty",
"ExcludeSamePartyCrossPartyContext",
"ExcludeDomainNonASCII"
"ExcludeDomainNonASCII",
"ExcludeThirdPartyCookieBlockedInFirstPartySet"
]
},
{
Expand Down Expand Up @@ -1533,7 +1534,8 @@
"id": "GenericIssueErrorType",
"type": "string",
"enum": [
"CrossOriginPortalPostMessageError"
"CrossOriginPortalPostMessageError",
"FormLabelForNameError"
]
},
{
Expand All @@ -1550,6 +1552,11 @@
"name": "frameId",
"optional": true,
"$ref": "Page.FrameId"
},
{
"name": "violatingNodeId",
"optional": true,
"$ref": "DOM.BackendNodeId"
}
]
},
Expand Down Expand Up @@ -1659,14 +1666,14 @@
"enum": [
"ShouldEmbargo",
"TooManyRequests",
"ManifestListHttpNotFound",
"ManifestListNoResponse",
"ManifestListInvalidResponse",
"ManifestNotInManifestList",
"ManifestListTooBig",
"ManifestHttpNotFound",
"ManifestNoResponse",
"ManifestInvalidResponse",
"WellKnownHttpNotFound",
"WellKnownNoResponse",
"WellKnownInvalidResponse",
"ConfigNotInWellKnown",
"WellKnownTooBig",
"ConfigHttpNotFound",
"ConfigNoResponse",
"ConfigInvalidResponse",
"ClientMetadataHttpNotFound",
"ClientMetadataNoResponse",
"ClientMetadataInvalidResponse",
Expand Down Expand Up @@ -1996,6 +2003,11 @@
"items": {
"$ref": "EventMetadata"
}
},
{
"name": "storageKey",
"description": "Storage key this event belongs to.",
"type": "string"
}
]
}
Expand Down Expand Up @@ -2176,7 +2188,8 @@
"type": "string",
"enum": [
"granted",
"denied"
"denied",
"prompt"
]
},
{
Expand Down Expand Up @@ -4372,6 +4385,11 @@
"description": "Security origin of the cache.",
"type": "string"
},
{
"name": "storageKey",
"description": "Storage key of the cache.",
"type": "string"
},
{
"name": "cacheName",
"description": "The name of the cache.",
Expand Down Expand Up @@ -4440,7 +4458,14 @@
"parameters": [
{
"name": "securityOrigin",
"description": "Security origin.",
"description": "At least and at most one of securityOrigin, storageKey must be specified.\nSecurity origin.",
"optional": true,
"type": "string"
},
{
"name": "storageKey",
"description": "Storage key.",
"optional": true,
"type": "string"
}
],
Expand Down Expand Up @@ -8041,7 +8066,6 @@
"type": "string",
"enum": [
"avif",
"jxl",
"webp"
]
}
Expand Down Expand Up @@ -11810,6 +11834,7 @@
"SameSiteUnspecifiedTreatedAsLax",
"SameSiteNoneInsecure",
"UserPreferences",
"ThirdPartyBlockedInFirstPartySet",
"SyntaxError",
"SchemeNotSupported",
"OverwriteSecure",
Expand Down Expand Up @@ -11838,6 +11863,7 @@
"SameSiteUnspecifiedTreatedAsLax",
"SameSiteNoneInsecure",
"UserPreferences",
"ThirdPartyBlockedInFirstPartySet",
"UnknownError",
"SchemefulSameSiteStrict",
"SchemefulSameSiteLax",
Expand Down Expand Up @@ -13912,6 +13938,7 @@
"ResourceExhausted",
"AlreadyExists",
"Unavailable",
"Unauthorized",
"BadResponse",
"InternalError",
"UnknownError",
Expand Down Expand Up @@ -15351,6 +15378,7 @@
"serial",
"shared-autofill",
"shared-storage",
"smart-card",
"storage-access",
"sync-xhr",
"trust-token-redemption",
Expand Down Expand Up @@ -16273,6 +16301,7 @@
"InjectedStyleSheet",
"KeepaliveRequest",
"Dummy",
"AuthorizationHeader",
"ContentSecurityHandler",
"ContentWebAuthenticationAPI",
"ContentFileChooser",
Expand Down Expand Up @@ -16411,6 +16440,7 @@
"SameSiteCrossOriginRedirectNotOptIn",
"SameSiteCrossOriginNavigationNotOptIn",
"ActivationNavigationParameterMismatch",
"ActivatedInBackground",
"EmbedderHostDisallowed"
]
}
Expand Down Expand Up @@ -17564,8 +17594,9 @@
"type": "string",
"enum": [
"none",
"autoaccept",
"autoreject"
"autoAccept",
"autoReject",
"autoOptOut"
]
}
]
Expand Down Expand Up @@ -19172,6 +19203,7 @@
"join",
"leave",
"update",
"loaded",
"bid",
"win"
]
Expand Down Expand Up @@ -19574,6 +19606,17 @@
}
]
},
{
"name": "trackCacheStorageForStorageKey",
"description": "Registers storage key to be notified when an update occurs to its cache storage list.",
"parameters": [
{
"name": "storageKey",
"description": "Storage key.",
"type": "string"
}
]
},
{
"name": "trackIndexedDBForOrigin",
"description": "Registers origin to be notified when an update occurs to its IndexedDB.",
Expand Down Expand Up @@ -19607,6 +19650,17 @@
}
]
},
{
"name": "untrackCacheStorageForStorageKey",
"description": "Unregisters storage key from receiving notifications for cache storage.",
"parameters": [
{
"name": "storageKey",
"description": "Storage key.",
"type": "string"
}
]
},
{
"name": "untrackIndexedDBForOrigin",
"description": "Unregisters origin from receiving notifications for IndexedDB.",
Expand Down Expand Up @@ -19803,6 +19857,11 @@
"description": "Origin to update.",
"type": "string"
},
{
"name": "storageKey",
"description": "Storage key to update.",
"type": "string"
},
{
"name": "cacheName",
"description": "Name of cache in origin.",
Expand All @@ -19818,6 +19877,11 @@
"name": "origin",
"description": "Origin to update.",
"type": "string"
},
{
"name": "storageKey",
"description": "Storage key to update.",
"type": "string"
}
]
},
Expand Down Expand Up @@ -20196,6 +20260,22 @@
}
]
},
{
"name": "getFeatureState",
"description": "Returns information about the feature state.",
"parameters": [
{
"name": "featureState",
"type": "string"
}
],
"returns": [
{
"name": "featureEnabled",
"type": "boolean"
}
]
},
{
"name": "getProcessInfo",
"description": "Returns information about all running processes.",
Expand Down Expand Up @@ -21143,7 +21223,7 @@
},
{
"name": "dataCollected",
"description": "Contains an bucket of collected trace events. When tracing is stopped collected events will be\nsend as a sequence of dataCollected events followed by tracingComplete event.",
"description": "Contains a bucket of collected trace events. When tracing is stopped collected events will be\nsent as a sequence of dataCollected events followed by tracingComplete event.",
"parameters": [
{
"name": "value",
Expand Down Expand Up @@ -22415,6 +22495,36 @@
}
]
}
],
"events": [
{
"name": "credentialAdded",
"description": "Triggered when a credential is added to an authenticator.",
"parameters": [
{
"name": "authenticatorId",
"$ref": "AuthenticatorId"
},
{
"name": "credential",
"$ref": "Credential"
}
]
},
{
"name": "credentialAsserted",
"description": "Triggered when a credential is used in a webauthn assertion.",
"parameters": [
{
"name": "authenticatorId",
"$ref": "AuthenticatorId"
},
{
"name": "credential",
"$ref": "Credential"
}
]
}
]
},
{
Expand Down
Loading

0 comments on commit 7384fdc

Please sign in to comment.