Skip to content

Commit

Permalink
feat(chromium): roll to Chromium 112.0.5614.0 (r1108766) (#9841)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lightning00Blade committed Mar 15, 2023
1 parent 7b8f80a commit eddb1f6
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 10 deletions.
4 changes: 2 additions & 2 deletions docs/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -291,8 +291,8 @@ The following steps are needed to update the Chromium version.
You can find the corresponding version by going to [omahaproxy.appspot.com](https://omahaproxy.appspot.com/) then
searching in `Find Releases` for `r<revision>`.
4. Run `npm run check`. If it fails, update
`packages/puppeteer-core/package.json` and `packages/puppeteer/package.json`
with the expected `devtools-protocol` version.
`packages/puppeteer-core/package.json`
with the expected `devtools-protocol` version and run `npm install` to generate an updated `package-lock.json`.
5. Run `npm run clean`, `npm run build` and `npm install`.
6. Run `npm test` and ensure that all tests pass. If a test fails,
[bisect](#bisecting-upstream-changes) the upstream cause of the failure, and
Expand Down
13 changes: 8 additions & 5 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 @@ -134,7 +134,7 @@
"chromium-bidi": "0.4.5",
"cross-fetch": "3.1.5",
"debug": "4.3.4",
"devtools-protocol": "0.0.1094867",
"devtools-protocol": "0.0.1107588",
"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: '1095492',
chromium: '1108766',
firefox: 'latest',
});
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.
['112.0.5614.0', 'NEXT'],
['111.0.5556.0', 'v19.7.0'],
['110.0.5479.0', 'v19.6.0'],
['109.0.5412.0', 'v19.4.0'],
Expand Down Expand Up @@ -56,7 +57,7 @@ const versionsPerRelease = new Map([
]);

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

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

0 comments on commit eddb1f6

Please sign in to comment.