Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(chromium): roll to Chromium 104.0.5109.0 (r1011831) #8569

Merged
merged 2 commits into from Jun 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -69,7 +69,7 @@
"dependencies": {
"cross-fetch": "3.1.5",
"debug": "4.3.4",
"devtools-protocol": "0.0.1001819",
"devtools-protocol": "0.0.1011705",
"extract-zip": "2.0.1",
"https-proxy-agent": "5.0.1",
"pkg-dir": "4.2.0",
Expand Down
2 changes: 1 addition & 1 deletion src/revisions.ts
Expand Up @@ -15,6 +15,6 @@
*/

export const PUPPETEER_REVISIONS = Object.freeze({
chromium: '1002410',
chromium: '1011831',
firefox: 'latest',
});
5 changes: 1 addition & 4 deletions test/src/accessibility.spec.ts
Expand Up @@ -314,6 +314,7 @@ describeFailsFirefox('Accessibility', function () {
<div contenteditable="true" role='textbox'>
Edit this image: <img src="fakeimage.png" alt="my fake image">
</div>`);
// Image node should not be exposed in contenteditable elements. See https://crbug.com/1324392.
const golden = isFirefox
? {
role: 'entry',
Expand All @@ -336,10 +337,6 @@ describeFailsFirefox('Accessibility', function () {
role: 'StaticText',
name: 'Edit this image:',
},
{
role: 'img',
name: 'my fake image',
},
],
};
const snapshot = await page.accessibility.snapshot();
Expand Down
3 changes: 2 additions & 1 deletion versions.js
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.
['104.0.5109.0', 'NEXT'],
['103.0.5059.0', 'v14.2.0'],
['102.0.5002.0', 'v14.0.0'],
['101.0.4950.0', 'v13.6.0'],
Expand Down Expand Up @@ -48,7 +49,7 @@ const versionsPerRelease = new Map([
]);

// The same major version as the current Chrome Stable per https://chromestatus.com/roadmap.
const lastMaintainedChromiumVersion = '101.0.4950.0';
const lastMaintainedChromiumVersion = '102.0.5002.0';

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