feat: roll to Chrome 118.0.5993.70 (r1192594) (#11123)

Co-authored-by: Alex Rudenko <alexrudenko@chromium.org>
This commit is contained in:
browser-automation-bot 2023-10-11 13:34:13 +02:00 committed by GitHub
parent 9e7a30ece5
commit 91d14c8c86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 663 additions and 496 deletions

1150
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -144,7 +144,7 @@
"chromium-bidi": "0.4.31", "chromium-bidi": "0.4.31",
"cross-fetch": "4.0.0", "cross-fetch": "4.0.0",
"debug": "4.3.4", "debug": "4.3.4",
"devtools-protocol": "0.0.1179426", "devtools-protocol": "0.0.1191157",
"ws": "8.14.2" "ws": "8.14.2"
}, },
"devDependencies": { "devDependencies": {

View File

@ -18,6 +18,6 @@
* @internal * @internal
*/ */
export const PUPPETEER_REVISIONS = Object.freeze({ export const PUPPETEER_REVISIONS = Object.freeze({
chrome: '117.0.5938.149', chrome: '118.0.5993.70',
firefox: 'latest', firefox: 'latest',
}); });

View File

@ -3561,7 +3561,7 @@
"testIdPattern": "[target.spec] Target should not crash while redirecting if original request was missed", "testIdPattern": "[target.spec] Target should not crash while redirecting if original request was missed",
"platforms": ["darwin", "linux", "win32"], "platforms": ["darwin", "linux", "win32"],
"parameters": ["chrome", "webDriverBiDi"], "parameters": ["chrome", "webDriverBiDi"],
"expectations": ["PASS"] "expectations": ["FAIL", "PASS"]
}, },
{ {
"testIdPattern": "[target.spec] Target should not report uninitialized pages", "testIdPattern": "[target.spec] Target should not report uninitialized pages",

View File

@ -17,6 +17,7 @@
const versionsPerRelease = new Map([ const versionsPerRelease = new Map([
// This is a mapping from Chrome version => Puppeteer version. // This is a mapping from Chrome version => Puppeteer version.
// In Chrome roll patches, use `NEXT` for the Puppeteer version. // In Chrome roll patches, use `NEXT` for the Puppeteer version.
['118.0.5993.70', 'NEXT'],
['117.0.5938.149', 'v21.3.7'], ['117.0.5938.149', 'v21.3.7'],
['117.0.5938.92', 'v21.3.2'], ['117.0.5938.92', 'v21.3.2'],
['117.0.5938.62', 'v21.3.0'], ['117.0.5938.62', 'v21.3.0'],
@ -68,7 +69,7 @@ const versionsPerRelease = new Map([
]); ]);
// Should not be more than 2 major versions behind Chrome Stable (https://chromestatus.com/roadmap). // Should not be more than 2 major versions behind Chrome Stable (https://chromestatus.com/roadmap).
const lastMaintainedChromeVersion = '114.0.5735.133'; const lastMaintainedChromeVersion = '115.0.5790.98';
if (!versionsPerRelease.has(lastMaintainedChromeVersion)) { if (!versionsPerRelease.has(lastMaintainedChromeVersion)) {
throw new Error( throw new Error(