Skip to content

Releases: puppeteer/puppeteer

v10.1.0

29 Jun 07:27
6b13a17

Choose a tag to compare

10.1.0 (2021-06-29)

Features

Bug Fixes

  • remove redundant await while fetching target (#7351) (083b297)

v10.0.0

31 May 12:40
9df7b71

Choose a tag to compare

v10.0.0 (2021-05-31)

⚠ BREAKING CHANGES

  • Node.js 10 is no longer supported.

Features

  • chromium: roll to Chromium 92.0.4512.0 (r884014) (#7288) (f863f4b)
  • requestinterception: remove cacheSafe flag (#7217) (d01aa6c)
  • expose other sessions from connection (#6863) (cb285a2)
  • launcher: add new launcher option waitForInitialPage (#7105) (2605309), closes #3630

Bug Fixes

v9.1.1

05 May 08:40
d615dd3

Choose a tag to compare

9.1.1 (2021-05-05)

Bug Fixes

v9.1.0

03 May 12:11
1d473bc

Choose a tag to compare

9.1.0 (2021-05-03)

Features

Bug Fixes

v9.0.0

21 Apr 11:25
5872e71

Choose a tag to compare

9.0.0 (2021-04-21)

⚠ BREAKING CHANGES

  • filechooser: FileChooser.cancel() is now synchronous.

Features

Bug Fixes

v8.0.0

26 Feb 08:34
0b5969d

Choose a tag to compare

8.0.0 (2021-02-26)

⚠ BREAKING CHANGES

  • renamed type ChromeArgOptions to BrowserLaunchArgumentOptions
  • renamed type BrowserOptions to BrowserConnectOptions

Features

Bug Fixes

v7.1.0

12 Feb 10:55
a681aac

Choose a tag to compare

7.1.0 (2021-02-12)

TypeScript fixes

Thanks for your patience as we iterate and improve our TypeScript setup. We now should support TypeScript properly across all environments - we do not use export = which caused issues when compiling TS to ESM. Missing types such as Permission and ScreenshotOptions are now present, and we fixed an incorrect type for jsonValue().

emulateMediaFeatures color-gamut support

You can now pass color-gamut options into Page.emulateMediaFeatures:

await page.emulateMediaFeatures([
  { name: 'color-gamut', value: 'p3' },
]);
await page.evaluate(() => matchMedia('(color-gamut: srgb)').matches);

Features

  • page: add color-gamut support to Page.emulateMediaFeatures (#6857) (ad59357), closes #6761

Bug Fixes

v7.0.4

09 Feb 12:35
db2b489

Choose a tag to compare

7.0.4 (2021-02-09)

We had issues with our automated release bot which meant the right set of compiled output (.d.ts files) were not included in the published build.

Bug Fixes

  • make publish bot run full build, not just tsc (#6848) (f718b14)

v7.0.3

09 Feb 08:51
27eaf60

Choose a tag to compare

7.0.3 (2021-02-09)

This is a quick follow-up to 7.0.2 to fix lib/types.d.ts not being included in the final published module on npm.

Bug Fixes

v7.0.2

09 Feb 08:28
ff50c86

Choose a tag to compare

7.0.2 (2021-02-09)

This release fixes how the TS definitions are shipped and used within Puppeteer. This should fix a number of issues we've seen with our initial attempt to ship TS. Thanks for your patience whilst we figure this out and please continue to report issues for any TS issues you come across.

Bug Fixes