feat: roll to Chrome 116.0.5845.96 (r1160321) (#10735)
This commit is contained in:
parent
6bb3e452f8
commit
e12b558f50
16
package-lock.json
generated
16
package-lock.json
generated
@ -3888,9 +3888,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/devtools-protocol": {
|
||||
"version": "0.0.1147663",
|
||||
"resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1147663.tgz",
|
||||
"integrity": "sha512-hyWmRrexdhbZ1tcJUGpO95ivbRhWXz++F4Ko+n21AY5PNln2ovoJw+8ZMNDTtip+CNFQfrtLVh/w4009dXO/eQ=="
|
||||
"version": "0.0.1159816",
|
||||
"resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1159816.tgz",
|
||||
"integrity": "sha512-2cZlHxC5IlgkIWe2pSDmCrDiTzbSJWywjbDDnupOImEBcG31CQgBLV8wWE+5t+C4rimcjHsbzy7CBzf9oFjboA=="
|
||||
},
|
||||
"node_modules/dezalgo": {
|
||||
"version": "1.0.4",
|
||||
@ -10548,7 +10548,7 @@
|
||||
"chromium-bidi": "0.4.20",
|
||||
"cross-fetch": "4.0.0",
|
||||
"debug": "4.3.4",
|
||||
"devtools-protocol": "0.0.1147663",
|
||||
"devtools-protocol": "0.0.1159816",
|
||||
"ws": "8.13.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
@ -13176,9 +13176,9 @@
|
||||
"dev": true
|
||||
},
|
||||
"devtools-protocol": {
|
||||
"version": "0.0.1147663",
|
||||
"resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1147663.tgz",
|
||||
"integrity": "sha512-hyWmRrexdhbZ1tcJUGpO95ivbRhWXz++F4Ko+n21AY5PNln2ovoJw+8ZMNDTtip+CNFQfrtLVh/w4009dXO/eQ=="
|
||||
"version": "0.0.1159816",
|
||||
"resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1159816.tgz",
|
||||
"integrity": "sha512-2cZlHxC5IlgkIWe2pSDmCrDiTzbSJWywjbDDnupOImEBcG31CQgBLV8wWE+5t+C4rimcjHsbzy7CBzf9oFjboA=="
|
||||
},
|
||||
"dezalgo": {
|
||||
"version": "1.0.4",
|
||||
@ -16319,7 +16319,7 @@
|
||||
"chromium-bidi": "0.4.20",
|
||||
"cross-fetch": "4.0.0",
|
||||
"debug": "4.3.4",
|
||||
"devtools-protocol": "0.0.1147663",
|
||||
"devtools-protocol": "0.0.1159816",
|
||||
"mitt": "3.0.0",
|
||||
"parsel-js": "1.1.0",
|
||||
"rxjs": "7.8.1",
|
||||
|
@ -147,7 +147,7 @@
|
||||
"chromium-bidi": "0.4.20",
|
||||
"cross-fetch": "4.0.0",
|
||||
"debug": "4.3.4",
|
||||
"devtools-protocol": "0.0.1147663",
|
||||
"devtools-protocol": "0.0.1159816",
|
||||
"ws": "8.13.0",
|
||||
"@puppeteer/browsers": "1.6.0"
|
||||
},
|
||||
|
@ -18,6 +18,6 @@
|
||||
* @internal
|
||||
*/
|
||||
export const PUPPETEER_REVISIONS = Object.freeze({
|
||||
chrome: '115.0.5790.170',
|
||||
chrome: '116.0.5845.96',
|
||||
firefox: 'latest',
|
||||
});
|
||||
|
@ -17,6 +17,7 @@
|
||||
const versionsPerRelease = new Map([
|
||||
// This is a mapping from Chrome version => Puppeteer version.
|
||||
// In Chrome roll patches, use `NEXT` for the Puppeteer version.
|
||||
['116.0.5845.96', 'NEXT'],
|
||||
['115.0.5790.170', 'v21.0.2'],
|
||||
['115.0.5790.102', 'v21.0.0'],
|
||||
['115.0.5790.98', 'v20.9.0'],
|
||||
@ -64,7 +65,7 @@ const versionsPerRelease = new Map([
|
||||
]);
|
||||
|
||||
// Should not be more than 2 major versions behind Chrome Stable (https://chromestatus.com/roadmap).
|
||||
const lastMaintainedChromeVersion = '113.0.5672.63';
|
||||
const lastMaintainedChromeVersion = '114.0.5735.90';
|
||||
|
||||
if (!versionsPerRelease.has(lastMaintainedChromeVersion)) {
|
||||
throw new Error(
|
||||
|
Loading…
Reference in New Issue
Block a user