mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
feat: roll to Chrome 118.0.5993.70 (r1192594) (#11123)
Co-authored-by: Alex Rudenko <alexrudenko@chromium.org>
This commit is contained in:
parent
9e7a30ece5
commit
91d14c8c86
1150
package-lock.json
generated
1150
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -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": {
|
||||||
|
@ -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',
|
||||||
});
|
});
|
||||||
|
@ -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",
|
||||||
|
@ -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(
|
||||||
|
Loading…
Reference in New Issue
Block a user