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

fix(deps): update dependency puppeteer to v4 - autoclosed #454

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 20, 2020

This PR contains the following updates:

Package Type Update Change
puppeteer dependencies major 2.1.1 -> 4.0.1

Release Notes

puppeteer/puppeteer

v4.0.1

Compare Source

Bug fixes

  • The link the troubleshooting docs is now fixed and links to the main branch, not the removed master branch. Fixes #​6082.

Raw notes

16972ca - pull in master => main renaming
b537a67 - chore: mark v4.0.1

v4.0.0

Compare Source

Breaking change: Puppeteer no longer uses Node’s EventEmitter library

As part of our work to make Puppeteer agnostic of its environment we are removing the dependency on Node’s EventEmitter in favour of an event emitter that is not tied to Node. Under the hood we use Mitt, but we extend Mitt with additional functionality to match most of the methods that Node’s EventEmitter provides. The following methods have been removed from Puppeteer classes that extend EventEmitter:

  • eventNames()
  • getMaxListeners()
  • listeners(eventName)
  • prependListener
  • prependOnceListener
  • setMaxListeners(n)
  • rawListeners(eventName)

Additionally all the static methods on the EventEmitter class are not supported:

  • listenerCount(emitter, eventName)
  • defaultMaxListeners
  • errorMonitor

Node’s EventEmitter emitted a newListener event when a listener was added and a removeListener event when one was removed. These are not supported and will not be emitted.

New features and improvements

  • Send/receive debug logs are now split out into separate channels making the logs much clearer (#​6017)
  • You can now call isJavaScriptEnabled() on a Puppeteer page to find out if JS is enabled on the page (#​5993)

Bug fixes

  • Puppeteer is now much better at killing lingering browser processes, especially when you exit a test run with Ctrl-C (#​6011)

Behind the scenes

  • We've started work on a new documentation system that uses TSDoc to generate documentation from our source code and have been porting documentation into code accordingly.

Raw notes

5493494 - chore: mark version 4.0.0
03ab1c1 - fix: improve Ctrl + C support (#​6011)
b659969 - chore: migrate away from Node's EventEmitter (#​5979)
6e060ce - fix(connection): separate send/receive debug logging (#​6017)
c701ea1 - chore: fix npm test command (#​6010)
398c16d - chore: fix docs linter (#​6009)
4205ff7 - docs(api): remove subheader for non-namespace
3d56a9e - chore: add test configuration options for running tests against multiple products (#​5964)
5c91dfb - chore: move index.js into src (#​6007)
8a099a0 - docs: replace @​return with @​returns (#​6006)
23f18d8 - docs(new): start documenting the Page class (#​6001)
c1d7be3 - docs(api): add copy-pasting text example to Mouse class (#​6000)
91eb745 - chore: ensure new-docs are up to date (#​5994)
b86ff21 - feat(api): add Page.isJavaScriptEnabled + mark properties as private (#​5993)
354f942 - feat: improve error reporting on aarch64 (#​5167)
9c656d4 - chore: remove prefers-color-scheme: no-preference (#​5990)
83c29d9 - chore: clean lib when running tsc (#​5982)
ca8b0d6 - feat(new-docs): migrate Dialog documentation to TSDoc (#​5981)
0b3d52a - feat(new-docs): add TSDoc comments to Accessibility (#​5971)
086c089 - chore: commit base new-docs (#​5973)
0032420 - chore: Introduce API Extractor and start generating documentation (#​5967)
ef63c64 - test: check installation with Firefox (#​5965)
c2d32b1 - chore: rename image assets
a84e07c - chore: increase readability of Puppeteer diagram (#​5947)
58d1eab - chore: mark version v3.3.0-post (#​5960)

v3.3.0

Compare Source

Highlights

  • The migration from Node's EventEmitter to the Mitt library has been reverted in this release. We're sorry for causing unexpected issues in the 3.2.0 release. If you were unable to upgrade from 3.1.0 to 3.2.0, you will be able to upgrade straight to 3.3.0 and not have any issues.

Behind the scenes

  • The Puppeteer Response class was renamed HTTPResponse to avoid a clash with the TS Response type. We don't expose this class on the main Puppeteer instance so this shouldn't affect any of your code.
  • Similarly we have renamed Worker to WebWorker to avoid a clash with the TS Worker type.

Raw Notes

34c0f9b - chore: mark version v3.3.0
309d811 - chore: Revert Mitt due to breaking changes (#​5952)
81e3248 - chore: Defer Windows FF tests for longer (#​5954)
b874cac - chore: rename Worker to WebWorker (#​5941)
7862484 - chore: update request and response references in docs (#​5942)
232def0 - chore: rename Response to HTTPResponse (#​5940)
cfd72ac - chore: bump version to v3.2.0-post (#​5938)

v3.2.0

Compare Source

Highlights

  • We now support emulating vision deficiency types within Puppeteer using page.emulateVisionDeficiency. You can read more about these on the DevTools update blog post.

  • We now use Mitt as the Event Emitter that backs many of Puppeteer's classes rather than the EventEmitter module that ships with Node. This is potentially a breaking change if you rely on some of the less popular EventEmitter methods as Puppeteer's EventEmitter does not support the entire suite of NodeJS EventEmitter functions. We think it's unlikely anyone has relied on these; we were able to swap out the EventEmitter in Puppeteer without any unit tests needing to change.

  • Puppeteer now recognises webviews as regular pages which means you can control them just like you would control a regular page.

Behind the scenes

  • The Request class has been renamed to HTTPRequest to avoid a clash with TypeScript's Request type. We'll be making similar changes to Response and Worker. This is not a breaking change as Puppeteer doesn't directly expose these classes so you shouldn't be referring to them by name in your code.

Raw Notes

1d4d25a - chore: use Mitt as the Event Emitter (#​5907)
a2ba6f0 - feat: recognize webviews as regular pages (#​5905)
8e8a9df - chore: rename Request class to HTTPRequest (#​5934)
9737059 - chore: remove doclint generate_types code (#​5932)
7eab7f8 - feat(api): add page.emulateVisionDeficiency(type) (#​5901)
24ac11e - chore: fix undefined rm in mocha-utils (#​5920)
6cfe142 - chore: don't use expect within Promises (#​5466) (#​5473)
dfb2e60 - chore: stop Protocol types being globally available (#​5899)
d8e0557 - chore: update Travis to run latest macOS and fix HTTPS test (#​5903)
9a08d31 - chore: error if coverage couldn't find the given class (#​5863)
caaf4d2 - fix: support async functions as an argument for waitForFunction (#​5682)
e6c22da - chore: bump version to v3.1.0-post (#​5884)

v3.1.0

Compare Source

Big changes

  • Chromium 83.0.4103.0 (r756035)
  • New API to get SAN added to SecurityDetails (SecurityDetails.subjectAlternativeNames())

Raw notes

8ba3675 - chore: mark version v3.1.0 (#​5883)
a17bd89 - feat: add securityDetails.subjectAlternativeNames() #​5628 (#​5881)
e823289 - feat(chromium): roll Chromium to r756035 (#​5879)
ad3613d - docs(contributing): clarify list of Chromium versions (#​5878)
dc26b8d - docs(examples): add cucumber-puppeteer-example for integration testing (#​5875)
3e76554 - chore: fix async dialog specs when they fail (#​5859)
b2552e4 - chore: restore page.setUserAgent test (#​5868)
39f1b13 - chore: extract Request and Response into its own module (#​5861)
b510c35 - chore: fetch Firefox from JSON source instead of RegExp (#​5864)
69c38fc - chore: extract ConsoleMessage and FileChooser into its own module (#​5856)
0aba6df - chore: force Mocha to exit on CI (#​5862)
9368edb - chore: upgrade TypeScript to 3.9 (#​5860)
5f42547 - chore: extract SecurityDetails into its own module (#​5858)
f5d2597 - chore: add running TSC to test README (#​5852)
c6d01c9 - chore: extract BrowserRunner into its own module (#​5850)
b38bb43 - Warn when given unsupported product name. (#​5845)
6099272 - chore: add @​types/proxy-from-env (#​5831)
5343c7a - chore: private-ise src/Accessibility.ts (#​5832)
ce09742 - feat: add more options to check_availability script (#​5827)
5103540 - chore: add command to run eslint with --fix flag (#​5829)
49ce659 - chore: remove src/TaskQueue (#​5826)
4fdb1e3 - chore: add Prettier (#​5825)
ae576af - chore: mark v3.0.4-post (#​5824)

v3.0.4

Compare Source

Highlights

  • As of Node.js v14.1.0 the bug that prevented Puppeteer working on Node.js 14.0.x has been fixed. The code that tried to debug this and show a useful error has been removed (#​5816). Puppeteer should install and run just fine on Node.js v14.1.0 and beyond.

Behind the scenes

  • We now run unit tests on Node.js v14 (#​5821).

Raw notes

c214d20 - chore: mark version v3.0.4 (#​5823)
17bb660 - chore: remove unused mime-types dependency (#​5819)
70340de - chore: add Node.js 12 & 14 to CI (#​5821)
70d5c7f - fix: remove node@14 specific extract timeout (#​5816)
5115482 - chore: bump version to 3.0.3-post (#​5814)

v3.0.3

Compare Source

Highlights

Behind the scenes

  • src/ is now 100% TypeScript! This now lays a baseline to start working on improving Puppeteer docs by automatically generating them, shipping type definitions built in (for now we recommend @types/puppeteer).

Raw notes

b2488eb - chore: mark version v3.0.3
ae7483d - chore: remove src/externs.d.ts (#​5811)
de4f08d - chore: migrate src/Page.js to TypeScript (#​5809)
eed7d94 - chore: improve readability for path strings (#​5805)
d8d1f6f - chore: migrate src/api.js to TypeScript (#​5808)
890c215 - chore: migrate src/Puppeteer to TypeScript (#​5789)
209e25c - docs(readme): syntax-highlight nested snippets in debugging section (#​5799)
53d6fab - docs(api.md): improve emulateMediaFeatures section (#​5807)
ec91eca - chore: migrate src/Launcher to TypeScript (#​5775)
5518bac - chore: update how we track coverage during unit tests (#​5779)
4a47867 - feat: add support for string-based custom queries (#​5753)
c212126 - chore: turn on Travis retries (#​5787)
3116bb9 - chore: log product + binary on unit test runs (#​5785)
541281b - chore: fix doclint issues (#​5784)
32c8c69 - chore: enable mocha retries (#​5782)
5fb399d - docs(contributing): update per recent changes (#​5778)
8654d63 - chore: migrate src/NetworkManager to TypeScript (#​5774)
862eea8 - chore: disable flaky setUserAgent test in Firefox (#​5780)
a8908cf - chore: update incorrect link for DeviceDescriptors (#​5777)
af2e458 - chore: migrate src/Target to TypeScript (#​5771)
8a5008e - chore: migrate src/FrameManager to TypeScript (#​5773)
c5c97b0 - chore: remove DOMWorld definition from externs.d.ts (#​5767)
da6e6c0 - chore: migrate src/EmulationManager to TypeScript (#​5766)
0157844 - chore: migrate src/DOMWorld to TypeScript (#​5764)
d69fbb9 - chore: Enforce array type styles in TypeScript (#​5765)
1ccfbcb - chore: enforce naming of errors in catch blocks (#​5763)
3bf9bd1 - chore: enforce src/protocol.d.ts is in sync (#​5762)
06d62c0 - chore: migrate src/Browser to TS (#​5761)
e03113e - chore: Update protocol.d.ts (#​5760)
8ddf4f3 - chore: bump version to 3.0.2-post (#​5759)

v3.0.2

Compare Source

Highlights

  • uploadFile now throws for non-existent files (#​5733)
  • Puppeteer currently fails to extract Chromium when installing on Node 14 (see tracking bug: #​5719). We now detect if you're on Node 14 and log a helpful error (#​5732).

Behind the scenes

  • Many more files have been migrated to TypeScript and we're continuing with the goal of the src directory being 100% TypeScript.

Raw notes

4e8f091 - chore: mark version v3.0.2
3911836 - chore: small CI tidy ups (#​5751)
5e2a029 - chore: use Node's promisify function (#​5748)
1b9d9e9 - chore: log useful error for Node v14 breakage (#​5732)
a7d2485 - chore: split out CI into unit tests + extra checks (#​5749)
3ed2f6b - chore: remove puppeteer-web (#​5750)
1358b45 - chore: migrate src/LifecycleWatcher (#​5734)
79e82e5 - fix: make uploadFile throw for non-existent files (#​5733)
1a4e260 - chore: migrate src/BrowserFetcher to TypeScript (#​5727)
8509f46 - chore: migrate src/Accessibility to TypeScript (#​5726)
930cc32 - chore: migrate src/Errors to TypeScript (#​5725)
30aff82 - chore: migrate src/Events to TypeScript (#​5724)
1823828 - chore: migrate src/Tracing to TypeScript (#​5723)
3050196 - fix: update clipboard read write permissions after upstream change (#​5721)
0731049 - chore: update pngjs to 5.0.0 and jpeg-js to 0.3.7 (#​5676)
ddb8ba1 - chore: tidy up and de-duplicate Travis CI config (#​5716)
9d297f0 - chore: bump version to 3.0.1-post (#​5717)
be8f8a2 - chore: add macOS to Travis CI (#​5708)
133abb0 - chore: migrate src/Input to typescript (#​5710)
11bc5a6 - chore: migrate src/Worker to typescript (#​5715)

v3.0.1

Compare Source

Highlights

  • File uploads should be more reliable now (#​5655)
  • The size of the final package is smaller as we explicitly list files to publish (#​5659).
  • The docs now include the libgbm-dev dependency that's needed for Linux builds (#​5667, #​5693)

Behind the scenes

  • We're continuing to migrate to TypeScript and many files within src/ are now TypeScript files. We're working towards a 100% TS codebase which will enable us (amongst other things) to ship high-quality type definitions for TypeScript users.

Raw notes

6029fdd - chore: mark version v3.0.1 (#​5709)
29ebd0b - chore: migrate src/ExecutionContext (#​5705)
69bfa80 - docs(api): fix typo (#​5706)
8d5d76e - chore: migrate src/JSHandle to TS (#​5703)
42893d8 - chore: migrate src/coverage to TypeScript (#​5702)
e3922ea - chore: enforce consistent spacing around object curlys (#​5700)
3600f2f - chore: migrate src/helpers.ts to ESM (#​5699)
f13c30a - chore: migrate src/USKeyboardLayout to typescript (#​5695)
a614bc4 - chore: migrate src/Connection to TypeScript (#​5694)
376d234 - chore: migrate src/WebSocketTransport to TypeScript (#​5696)
5c839f5 - chore(docker): add missing libgbm1 dependency (#​5693)
e7a32a8 - chore: migrate src/pipetransport to typescript (#​5692)
4134b54 - chore: migrate src/helper to typescript (#​5689)
c32b049 - chore: delete src/MultiMap (#​5690)
6638a24 - chore: migrate src/timeoutsettings to typescript (#​5691)
ad6c57a - docs: fix DeviceDescriptor link (#​5683)
c4fe4e4 - chore(ci): re-enable tests on Windows (#​5637)
49ca00f - docs(contributing): update testing section (#​5657)
1a57ba2 - chore: migrate TaskQueue to TypeScript (#​5658)
ef3befa - chore: manage published files via files option (#​5659)
35fc654 - docs: change the Alpine Docker example to use env instead of launch option (#​5666)
20c22ad - chore: fix installing from GitHub URL (#​5669)
46ef9f7 - docs(troubleshooting): list libgbm-dev dependency (#​5667)
532ae57 - fix(JSHandle): restore file upload to its old behavior (#​5655)
3e4c8c9 - chore(typescript): migrate src/Dialog (#​5639)
a9f6a26 - chore: log reminder about tsc if DocLint fails locally (#​5652)
37bae17 - docs(contributing): update npm dist tags section (#​5650)
80348dc - chore: bump version to v3.0.0-post (#​5649)

v3.0.0

Compare Source

Big changes

  • Chromium 81.0.4044.0 (r737027)
  • Puppeteer can now fetch a Firefox Nightly binary for you via PUPPETEER_PRODUCT=firefox npm install. Also, there’s now an example showing how to launch Firefox with Puppeteer.
  • File uploads are generally more reliable (#​5363) and elementHandle.uploadFile(...filePaths) now triggers a change event, matching the old behavior in Puppeteer v1.20.0. (#​5389)
  • Node.js v8.x.x is no longer supported. (#​5136)

Behind the scenes

  • Puppeteer is migrating to TypeScript. Although this doesn't affect the way developers can consume Puppeteer, it improves the quality of the Puppeteer type definitions which can be used by modern editors.
  • Our custom test runner framework has been removed in favor of Mocha, reducing maintenance overhead.
  • Our CI setup and the way we deal with test flakiness is being reworked in order to increase our confidence of landing PRs without breaking anything.

Raw notes

6760b92 - chore: mark version v3.0.0 (#​5642)
3387aab - feat(chromium): roll Chromium to r737027 (#​5644)
c5df490 - docs(readme): update cross-browser FAQ (#​5634)
35989a7 - fix: set revision based on PUPPETEER_PRODUCT (#​5643)
d817ae5 - fix: update preferred revision after Launcher is created (#​5640)
df81250 - chore: update ws library (#​5638)
2529ee6 - chore(eslint): add eslint typescript linting (#​5635)
88d843d - feat(TypeScript): move DeviceDescriptors to TS (#​5595)
1ce4fe7 - chore(deps): update extract-zip to version 2 (#​5610)
0bcc5a7 - chore: migrate remaining tests to Mocha (#​5616)
17cd870 - chore: migrate unit tests to Mocha (#​5600)
262da92 - chore(test): re-enable Firefox testing on CI (#​5608)
83d9d53 - chore: update CI to run Travis + Linux + Chromium (#​5583)
21c2d31 - docs(api): update another emulateMediaType example (#​5607)
fefa8ca - docs(api): update emulateMediaType example (#​5606)
bbdaf92 - docs(README): remove unused badges
efe561e - chore: fix DocLint method diffing (#​5594)
841c2a5 - chore: fix emulateMedia tests (#​5593)
8fa034b - chore: remove flakiness dashboard (#​5592)
4ee2c43 - chore: fix Page.emulateMedia doclint failure (#​5584)
a99a3cf - chore: skip failing cookie tests in Firefox (#​5575)
88446df - chore: fix missed src/ vs lib/ documentation (#​5591)
b3b0dc5 - docs: replace invalid device descriptors link (#​5589)
99ecdba - docs: fix simple typo (#​5585)
7f7887e - docs(puppeteer-firefox): add deprecation warning to README (#​5502)
6522e4f - chore: Use expect for assertions (#​5581)
4c41421 - chore: run Chromium on Node.js 12 on Travis (#​5582)
f434684 - chore: fix link to source files in documentation (#​5576)
2b52b86 - chore: remove travis-autodeploy (#​5580)
7a2a41f - chore: move code to src/ and emit with TypeScript (#​5568)
c82b556 - docs: connect works with any supported browser (#​5572)
d678013 - chore: upgrade TypeScript to 3.8 (#​5566)
3dff24a - chore: upgrade eslint to v6.8.0 (#​5563)
4b0fd8b - chore: upgrade to TypeScript 3.7 (#​5562)
29b626a - chore: upgrade TypeScript to 3.6 (#​5559)
5e8d79b - chore: upgrade to TypeScript 3.5 (#​5556)
b9240b1 - chore: bump rimraf to v3.0.2 (#​5431)
067662c - Emit change event on uploadFile calls (#​5389)
a3d1536 - Bugfix: Docker build failure (#​5400)
33f1967 - (feat) Add option to fetch Firefox Nightly (#​5467)
807fbbd - chore: drop Node.js v8 support (#​5365)
0b1a9ce - chore: Replace Juggler with Firefox Nightly in CI (#​5395)
0b1777e - docs(api) Fix url (#​5367)
5ffcde2 - chore: bump version to v2.1.1.-post (#​5390)
46386eb - chore: mark version v2.1.1 (#​5388)
9923e56 - fix(filechooser): quick fix for the headful file chooser (#​5369)
1a1ef83 - Add FAQ entry on cross-browser support (#​5360)
0d243b7 - feat: make it possible to run install.js script with puppeteer-core (#​5325)
c283fea - docs(api): add example to page.$$eval (#​5200)


Renovate configuration

📅 Schedule: "before 3am on the first day of the month" (UTC).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by WhiteSource Renovate. View repository job log here.

@renovate renovate bot added the renovate label Jun 20, 2020
@renovate renovate bot force-pushed the renovate/puppeteer-4.x branch 7 times, most recently from 16d8d48 to 4215686 Compare June 29, 2020 06:48
@renovate renovate bot force-pushed the renovate/puppeteer-4.x branch 7 times, most recently from 0ce036c to e29ca7c Compare July 1, 2020 19:14
@renovate renovate bot force-pushed the renovate/puppeteer-4.x branch from e29ca7c to 97486a2 Compare July 2, 2020 08:10
@renovate renovate bot changed the title fix(deps): update dependency puppeteer to v4 fix(deps): update dependency puppeteer to v4 - autoclosed Jul 2, 2020
@renovate renovate bot closed this Jul 2, 2020
@renovate renovate bot deleted the renovate/puppeteer-4.x branch July 2, 2020 13:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant