Skip to content

Commit

Permalink
feat(chromium): roll to Chromium 99.0.4844.16 (r961656) (#7960)
Browse files Browse the repository at this point in the history
Co-authored-by: Randolf Jung <jrandolf@chromium.org>
  • Loading branch information
jrandolf-zz and jrandolf committed Feb 4, 2022
1 parent 6a655cb commit 96c3f94
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -59,7 +59,7 @@
"license": "Apache-2.0",
"dependencies": {
"debug": "4.3.3",
"devtools-protocol": "0.0.948846",
"devtools-protocol": "0.0.960912",
"extract-zip": "2.0.1",
"https-proxy-agent": "5.0.0",
"node-fetch": "2.6.7",
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: '950341',
chromium: '961656',
firefox: 'latest',
};
9 changes: 8 additions & 1 deletion test/ariaqueryhandler.spec.ts
Expand Up @@ -594,7 +594,14 @@ describeChromeOnly('AriaQueryHandler', () => {
const { page } = getTestState();
const found = await page.$$<HTMLButtonElement>('aria/[role="button"]');
const ids = await getIds(found);
expect(ids).toEqual(['node5', 'node6', 'node8', 'node10', 'node21']);
expect(ids).toEqual([
'node5',
'node6',
'node7',
'node8',
'node10',
'node21',
]);
});
it('should find by role "heading"', async () => {
const { page } = getTestState();
Expand Down
7 changes: 6 additions & 1 deletion utils/check_availability.js
Expand Up @@ -256,7 +256,12 @@ function fetch(url) {
});
})
.on('error', function (e) {
console.error('Error fetching json: ' + e);
// This is okay; the server may just be faster at closing than us after
// the body is fully sent.
if (e.message.includes('ECONNRESET')) {
return;
}
console.error(`Error fetching json from ${url}: ${e}`);
resolve(null);
});
return promise;
Expand Down
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.
['99.0.4844.16', 'NEXT'],
['98.0.4758.0', 'v13.1.0'],
['97.0.4692.0', 'v12.0.0'],
['93.0.4577.0', 'v10.2.0'],
Expand Down

0 comments on commit 96c3f94

Please sign in to comment.