Skip to content

Commit

Permalink
feat(chromium): roll to Chromium 111.0.5556.0 (r1095492) (#9656)
Browse files Browse the repository at this point in the history
  • Loading branch information
OrKoN committed Feb 13, 2023
1 parent 558a8e2 commit df59d01
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 13 deletions.
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/puppeteer-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@
"chromium-bidi": "0.4.3",
"cross-fetch": "3.1.5",
"debug": "4.3.4",
"devtools-protocol": "0.0.1082910",
"devtools-protocol": "0.0.1094867",
"extract-zip": "2.0.1",
"https-proxy-agent": "5.0.1",
"proxy-from-env": "1.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/puppeteer-core/src/revisions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
* @internal
*/
export const PUPPETEER_REVISIONS = Object.freeze({
chromium: '1083080',
chromium: '1095492',
firefox: 'latest',
});
4 changes: 2 additions & 2 deletions test/TestExpectations.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"expectations": ["SKIP"]
},
{
"testIdPattern": "[page.spec] Page BrowserContext.overridePermissions should trigger permission onchange",
"testIdPattern": "[navigation.spec] navigation Frame.goto should reject when frame detaches",
"platforms": ["darwin", "linux", "win32"],
"parameters": ["chrome"],
"expectations": ["FAIL"]
"expectations": ["FAIL", "PASS"]
},
{
"testIdPattern": "[accessibility.spec]",
Expand Down
3 changes: 2 additions & 1 deletion versions.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
const versionsPerRelease = new Map([
// This is a mapping from Chromium version => Puppeteer version.
// In Chromium roll patches, use `NEXT` for the Puppeteer version.
['111.0.5556.0', 'NEXT'],
['110.0.5479.0', 'v19.6.0'],
['109.0.5412.0', 'v19.4.0'],
['108.0.5351.0', 'v19.2.0'],
Expand Down Expand Up @@ -55,7 +56,7 @@ const versionsPerRelease = new Map([
]);

// Should not be more than 2 major versions behind Chrome Stable (https://chromestatus.com/roadmap).
const lastMaintainedChromiumVersion = '107.0.5296.0';
const lastMaintainedChromiumVersion = '108.0.5351.0';

if (!versionsPerRelease.has(lastMaintainedChromiumVersion)) {
throw new Error(
Expand Down

0 comments on commit df59d01

Please sign in to comment.