chore: fix versions.js (#10993)

This commit is contained in:
Alex Rudenko 2023-09-22 11:05:45 +02:00 committed by GitHub
parent 07fe42fce0
commit e2d4c9f78e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 2 deletions

View File

@ -27,6 +27,8 @@ jobs:
- name: Install dependencies
run: npm ci
- name: Build all packages
env:
PUBLISH: 1
run: |
npm run build
- name: Build docs

View File

@ -4,6 +4,7 @@ The following versions of Chromium are supported, mapped to Puppeteer version:
<!-- version-start -->
- [Chrome for Testing](https://goo.gle/chrome-for-testing) 117.0.5938.92 - [Puppeteer v21.3.1](https://pptr.dev/21.3.1)
- [Chrome for Testing](https://goo.gle/chrome-for-testing) 116.0.5845.96 - [Puppeteer v21.1.0](https://pptr.dev/21.1.0)
- [Chrome for Testing](https://goo.gle/chrome-for-testing) 115.0.5790.170 - [Puppeteer v21.0.2](https://pptr.dev/21.0.2)
- [Chrome for Testing](https://goo.gle/chrome-for-testing) 115.0.5790.102 - [Puppeteer v21.0.0](https://pptr.dev/21.0.0)

View File

@ -92,7 +92,7 @@ function spliceIntoSection(
);
} else if (semver.gte(puppeteerVersion, '15.3.0')) {
buffer.push(
` * Chromium ${chromiumVersion} - [Puppeteer ${puppeteerVersion}](https://pptr.dev/${puppeteerVersion.slice(
` * [Chrome for Testing](https://goo.gle/chrome-for-testing) ${chromiumVersion} - [Puppeteer ${puppeteerVersion}](https://pptr.dev/${puppeteerVersion.slice(
1
)})`
);

View File

@ -17,7 +17,7 @@
const versionsPerRelease = new Map([
// This is a mapping from Chrome version => Puppeteer version.
// In Chrome roll patches, use `NEXT` for the Puppeteer version.
['117.0.5938.92', 'NEXT'],
['117.0.5938.92', 'v21.3.1'],
['116.0.5845.96', 'v21.1.0'],
['115.0.5790.170', 'v21.0.2'],
['115.0.5790.102', 'v21.0.0'],