Skip to content

Commit

Permalink
feat(chromium): roll to Chromium 93.0.4577.0 (r901912) (#7387)
Browse files Browse the repository at this point in the history
  • Loading branch information
jschfflr committed Aug 4, 2021
1 parent c5a0d50 commit e10faad
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -59,7 +59,7 @@
"license": "Apache-2.0",
"dependencies": {
"debug": "4.3.1",
"devtools-protocol": "0.0.883894",
"devtools-protocol": "0.0.901419",
"extract-zip": "2.0.1",
"https-proxy-agent": "5.0.0",
"node-fetch": "2.6.1",
Expand Down
2 changes: 1 addition & 1 deletion src/revisions.ts
Expand Up @@ -20,6 +20,6 @@ type Revisions = Readonly<{
}>;

export const PUPPETEER_REVISIONS: Revisions = {
chromium: '884014',
chromium: '901912',
firefox: 'latest',
};
6 changes: 3 additions & 3 deletions test/ariaqueryhandler.spec.ts
Expand Up @@ -582,13 +582,13 @@ describeChromeOnly('AriaQueryHandler', () => {
const { page } = getTestState();
const found = await page.$$('aria/[role="heading"]');
const ids = await getIds(found);
expect(ids).toEqual(['shown', 'node11', 'node13']);
expect(ids).toEqual(['shown', 'hidden', 'node11', 'node13']);
});
it('should not find ignored', async () => {
it('should find both ignored and unignored', async () => {
const { page } = getTestState();
const found = await page.$$('aria/title');
const ids = await getIds(found);
expect(ids).toEqual(['shown']);
expect(ids).toEqual(['shown', 'hidden']);
});
});
});
1 change: 1 addition & 0 deletions 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.
['93.0.4577.0', 'NEXT'],
['92.0.4512.0', 'v10.0.0'],
['91.0.4469.0', 'v9.0.0'],
['90.0.4427.0', 'v8.0.0'],
Expand Down

0 comments on commit e10faad

Please sign in to comment.