mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
feat: roll to Chrome 125.0.6422.60 (r1287751) (#12446)
This commit is contained in:
parent
c9f8364e0b
commit
3de9fd3f4c
16
package-lock.json
generated
16
package-lock.json
generated
@ -12372,7 +12372,7 @@
|
||||
"dependencies": {
|
||||
"@puppeteer/browsers": "2.2.3",
|
||||
"cosmiconfig": "9.0.0",
|
||||
"devtools-protocol": "0.0.1273771",
|
||||
"devtools-protocol": "0.0.1286932",
|
||||
"puppeteer-core": "22.8.2"
|
||||
},
|
||||
"bin": {
|
||||
@ -12392,7 +12392,7 @@
|
||||
"@puppeteer/browsers": "2.2.3",
|
||||
"chromium-bidi": "0.5.19",
|
||||
"debug": "4.3.4",
|
||||
"devtools-protocol": "0.0.1273771",
|
||||
"devtools-protocol": "0.0.1286932",
|
||||
"ws": "8.17.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
@ -12435,9 +12435,9 @@
|
||||
}
|
||||
},
|
||||
"packages/puppeteer-core/node_modules/devtools-protocol": {
|
||||
"version": "0.0.1273771",
|
||||
"resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1273771.tgz",
|
||||
"integrity": "sha512-QDbb27xcTVReQQW/GHJsdQqGKwYBE7re7gxehj467kKP2DKuYBUj6i2k5LRiAC66J1yZG/9gsxooz/s9pcm0Og=="
|
||||
"version": "0.0.1286932",
|
||||
"resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1286932.tgz",
|
||||
"integrity": "sha512-wu58HMQll9voDjR4NlPyoDEw1syfzaBNHymMMZ/QOXiHRNluOnDgu9hp1yHOKYoMlxCh4lSSiugLITe6Fvu1eA=="
|
||||
},
|
||||
"packages/puppeteer-core/node_modules/rxjs": {
|
||||
"version": "7.8.1",
|
||||
@ -12482,9 +12482,9 @@
|
||||
}
|
||||
},
|
||||
"packages/puppeteer/node_modules/devtools-protocol": {
|
||||
"version": "0.0.1273771",
|
||||
"resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1273771.tgz",
|
||||
"integrity": "sha512-QDbb27xcTVReQQW/GHJsdQqGKwYBE7re7gxehj467kKP2DKuYBUj6i2k5LRiAC66J1yZG/9gsxooz/s9pcm0Og=="
|
||||
"version": "0.0.1286932",
|
||||
"resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1286932.tgz",
|
||||
"integrity": "sha512-wu58HMQll9voDjR4NlPyoDEw1syfzaBNHymMMZ/QOXiHRNluOnDgu9hp1yHOKYoMlxCh4lSSiugLITe6Fvu1eA=="
|
||||
},
|
||||
"packages/puppeteer/node_modules/parse-json": {
|
||||
"version": "5.2.0",
|
||||
|
@ -122,7 +122,7 @@
|
||||
"@puppeteer/browsers": "2.2.3",
|
||||
"chromium-bidi": "0.5.19",
|
||||
"debug": "4.3.4",
|
||||
"devtools-protocol": "0.0.1273771",
|
||||
"devtools-protocol": "0.0.1286932",
|
||||
"ws": "8.17.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -8,7 +8,7 @@
|
||||
* @internal
|
||||
*/
|
||||
export const PUPPETEER_REVISIONS = Object.freeze({
|
||||
chrome: '124.0.6367.207',
|
||||
'chrome-headless-shell': '124.0.6367.207',
|
||||
chrome: '125.0.6422.60',
|
||||
'chrome-headless-shell': '125.0.6422.60',
|
||||
firefox: 'latest',
|
||||
});
|
||||
|
@ -126,7 +126,7 @@
|
||||
"cosmiconfig": "9.0.0",
|
||||
"puppeteer-core": "22.8.2",
|
||||
"@puppeteer/browsers": "2.2.3",
|
||||
"devtools-protocol": "0.0.1273771"
|
||||
"devtools-protocol": "0.0.1286932"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "18.17.15"
|
||||
|
@ -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.
|
||||
['125.0.6422.60', 'NEXT'],
|
||||
['124.0.6367.207', 'v22.8.2'],
|
||||
['124.0.6367.201', 'v22.8.1'],
|
||||
['124.0.6367.91', 'v22.8.0'],
|
||||
@ -76,7 +77,7 @@ const versionsPerRelease = new Map([
|
||||
]);
|
||||
|
||||
// Should not be more than 2 major versions behind Chrome Stable (https://chromestatus.com/roadmap).
|
||||
const lastMaintainedChromeVersion = '121.0.6167.85';
|
||||
const lastMaintainedChromeVersion = '122.0.6261.128';
|
||||
|
||||
if (!versionsPerRelease.has(lastMaintainedChromeVersion)) {
|
||||
throw new Error(
|
||||
|
Loading…
Reference in New Issue
Block a user