feat: roll to Chrome 124.0.6367.60 (r1274542) (#12305)

Co-authored-by: Alex Rudenko <alexrudenko@chromium.org>
This commit is contained in:
browser-automation-bot 2024-04-23 09:42:06 +02:00 committed by GitHub
parent 2968f215f6
commit ed9d7dd2f5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 16 additions and 22 deletions

16
package-lock.json generated
View File

@ -12242,7 +12242,7 @@
"dependencies": {
"@puppeteer/browsers": "2.2.2",
"cosmiconfig": "9.0.0",
"devtools-protocol": "0.0.1262051",
"devtools-protocol": "0.0.1273771",
"puppeteer-core": "22.6.5"
},
"bin": {
@ -12262,7 +12262,7 @@
"@puppeteer/browsers": "2.2.2",
"chromium-bidi": "0.5.17",
"debug": "4.3.4",
"devtools-protocol": "0.0.1262051",
"devtools-protocol": "0.0.1273771",
"ws": "8.16.0"
},
"devDependencies": {
@ -12304,9 +12304,9 @@
}
},
"packages/puppeteer-core/node_modules/devtools-protocol": {
"version": "0.0.1262051",
"resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1262051.tgz",
"integrity": "sha512-YJe4CT5SA8on3Spa+UDtNhEqtuV6Epwz3OZ4HQVLhlRccpZ9/PAYk0/cy/oKxFKRrZPBUPyxympQci4yWNWZ9g=="
"version": "0.0.1273771",
"resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1273771.tgz",
"integrity": "sha512-QDbb27xcTVReQQW/GHJsdQqGKwYBE7re7gxehj467kKP2DKuYBUj6i2k5LRiAC66J1yZG/9gsxooz/s9pcm0Og=="
},
"packages/puppeteer-core/node_modules/rxjs": {
"version": "7.8.1",
@ -12351,9 +12351,9 @@
}
},
"packages/puppeteer/node_modules/devtools-protocol": {
"version": "0.0.1262051",
"resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1262051.tgz",
"integrity": "sha512-YJe4CT5SA8on3Spa+UDtNhEqtuV6Epwz3OZ4HQVLhlRccpZ9/PAYk0/cy/oKxFKRrZPBUPyxympQci4yWNWZ9g=="
"version": "0.0.1273771",
"resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1273771.tgz",
"integrity": "sha512-QDbb27xcTVReQQW/GHJsdQqGKwYBE7re7gxehj467kKP2DKuYBUj6i2k5LRiAC66J1yZG/9gsxooz/s9pcm0Og=="
},
"packages/puppeteer/node_modules/parse-json": {
"version": "5.2.0",

View File

@ -122,7 +122,7 @@
"@puppeteer/browsers": "2.2.2",
"chromium-bidi": "0.5.17",
"debug": "4.3.4",
"devtools-protocol": "0.0.1262051",
"devtools-protocol": "0.0.1273771",
"ws": "8.16.0"
},
"devDependencies": {

View File

@ -8,7 +8,7 @@
* @internal
*/
export const PUPPETEER_REVISIONS = Object.freeze({
chrome: '123.0.6312.122',
'chrome-headless-shell': '123.0.6312.122',
chrome: '124.0.6367.60',
'chrome-headless-shell': '124.0.6367.60',
firefox: 'latest',
});

View File

@ -126,7 +126,7 @@
"cosmiconfig": "9.0.0",
"puppeteer-core": "22.6.5",
"@puppeteer/browsers": "2.2.2",
"devtools-protocol": "0.0.1262051"
"devtools-protocol": "0.0.1273771"
},
"devDependencies": {
"@types/node": "18.17.15"

View File

@ -951,13 +951,6 @@
"expectations": ["SKIP"],
"comment": "TODO: add a comment explaining why this expectation is required (include links to issues)"
},
{
"testIdPattern": "[accessibility.spec] Accessibility should work",
"platforms": ["darwin", "linux", "win32"],
"parameters": ["chrome", "webDriverBiDi"],
"expectations": ["FAIL"],
"comment": "Change in A11Y tree on Canary"
},
{
"testIdPattern": "[ariaqueryhandler.spec] AriaQueryHandler queryAllArray $$eval should handle many elements",
"platforms": ["darwin", "linux", "win32"],

View File

@ -98,8 +98,8 @@ describe('Accessibility', function () {
value: 'First Option',
haspopup: 'menu',
children: [
{role: 'menuitem', name: 'First Option', selected: true},
{role: 'menuitem', name: 'Second Option'},
{role: 'option', name: 'First Option', selected: true},
{role: 'option', name: 'Second Option'},
],
},
],

View File

@ -7,6 +7,7 @@
const versionsPerRelease = new Map([
// This is a mapping from Chrome version => Puppeteer version.
// In Chrome roll patches, use `NEXT` for the Puppeteer version.
['124.0.6367.60', 'NEXT'],
['123.0.6312.122', 'v22.6.4'],
['123.0.6312.105', 'v22.6.3'],
['123.0.6312.86', 'v22.6.2'],
@ -71,7 +72,7 @@ const versionsPerRelease = new Map([
]);
// Should not be more than 2 major versions behind Chrome Stable (https://chromestatus.com/roadmap).
const lastMaintainedChromeVersion = '120.0.6099.109';
const lastMaintainedChromeVersion = '121.0.6167.85';
if (!versionsPerRelease.has(lastMaintainedChromeVersion)) {
throw new Error(