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

chore(deps): update dependency puppeteer to v5 #1619

Merged
merged 3 commits into from Jul 10, 2020
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 6, 2020

This PR contains the following updates:

Package Type Update Change
puppeteer devDependencies major 4.0.1 -> 5.0.0

Release Notes

puppeteer/puppeteer

v5.0.0

Compare Source

Breaking changes

Removal of page.emulateMedia (#​6084)

This method was deprecated and is now removed from Puppeteer. Swap to page.emulateMediaType which behaves identically.

Removal of require('puppeteer/DeviceDescriptors') (#​6043)

This top level file has been removed from the Puppeteer package. The same data is exposed via puppeteer.devices, so swap to that:

// before
const devices = require('puppeteer/DeviceDescriptors');

// after
const puppeteer = require('puppeteer');
const devices = puppeteer.devices
Removal of require('puppeteer/Errors') (#​6043)

This top level file has been removed from the Puppeteer package. The same data is exposed via puppeteer.errors, so swap to that:

// before
const errors = require('puppeteer/Errors');

// after
const puppeteer = require('puppeteer');
const errors = puppeteer.errors

Behind the scenes

  • We've continued our drive to migrate to a new documentation system using TSDoc. These docs are available in the new-docs directory on GitHub. These aren't ready for use just yet but we're making great progress. You can track this work in #​6118.

  • We've continued improving our TypeScript definitions. Our tests are now migrated to TypeScript (#​5830) so that we're consuming our own API. Work continues to ship built-in type definitions in a future version. You can track this work in #​6124.

  • We've started restructuring Puppeteer to work towards being able to better support an environment agnostic Puppeteer module. You can track this work in #​6125.

Raw notes

85d8dbf - chore: mark v5.0.0
29f7e16 - chore(docs): reduce warnings when generating docs (#​6138)
221d172 - chore: add typecheck command (#​6140)
6474edb - feat(types): add types for $eval (#​6135)
8370ec8 - feat(types): add (and fix) evaluateHandle types (#​6130)
3c0dc45 - chore: update Windows skipped tests. (#​6133)
9f19862 - chore(docs): mark JSHandle properties as internal (#​6126)
8026ca9 - docs(api): fix overview diagram for pptr.dev (#​6128)
9d79cc8 - chore: fix Firefox install checker (#​6129)
1f5e333 - chore: Don't store revisions in package.json (#​6109)
123c377 - docs(new): Add TSDoc to Coverage class (#​6106)
3760302 - docs(api): fix broken links in api.md (#​6113)
adeffba - docs(new): migrate Page.ts to TSDoc (part 0 / 2) (#​6104)
df96f16 - docs(new): migrate JSHandle docs to TSDoc (#​6102)
1c0009d - chore(agnostic): ship CJS and ESM builds (#​6095)
46fc6ca - feat(types): improve typing of .evaluate() (#​6096)
a4d12a2 - chore: remove helper.promisify (#​6100)
5b6d2bf - docs(new): add TSDoc comments to Keyboard (#​6099)
4696f7a - docs(new): migrate HTTPResponse docs to TSDoc (#​6085)
b993adb - chore(agnostic): Migrate DOMWorld (#​6054)
c149034 - chore: remove hardcoded ?hl=en from docs (#​6097)
48c5a8e - docs(new): add TSDoc comments to Puppeteer (#​6032) (#​6094)
f1f7339 - docs(new): add TSDoc comments to Puppeteer (#​6032)
a46c78f - docs(new): Adds TSDoc to Tracing class (#​6088)
60904da - docs(new): migrate FileChooser docs to TSDoc (#​6092)
7855519 - chore: tidy up TODO from TS tests migration (#​6090)
f481922 - docs(new): Adds TSDoc to Mouse class (#​6086)
2ad42dc - docs(new): migrate Touchscreen docs to TSDoc (#​6087)
73b9795 - docs(new): add TSDoc comments to BrowserFetcher (#​6078)
37f6032 - feat(api): remove emulateMedia method (#​6084)
1ee379c - chore: avoid disabling prettier (#​6079)
381b0f8 - chore: declare toBeGolden to TypeScript (#​6080)
70a900e - chore: fix ESLint violation and lessen rule strictness (#​6081)
fdc6fda - docs: fix effect -> affect typos (#​5985)
4659ee8 - docs(new): add TSDoc comments to BrowserContext (#​6066)
ccae546 - docs(new): migrate Browser docs to TSDoc (#​6070)
28797de - chore: migrate tests to TypeScript (#​6075)
2090676 - docs: fix broken link to DeviceDescriptors.ts (#​6076)
6657364 - docs(new): migrate ElementHandle to TSDoc (#​6073)
7025f1c - docs(new): migrate Target to TSDoc (#​6067)
819afbe - docs(new): migrate ConsoleMessage docs to TSDoc (#​6065)
983a7b6 - docs(new): migrate CDPSession to TSDoc (#​6064)
1cf3f06 - docs(new): migrate TimeoutError to TSDoc (#​6062)
ace31d6 - chore: pin TSDoc related dependencies (#​6063)
750f5ee - docs: fix broken link to USKeyboardLayout file (#​6059)
e7b91a7 - chore: enforce a max line length on comments (#​6055)
7978315 - docs(new): migrate SecurityDetails docs to TSDoc (#​6053)
7a4170f - chore: remove top level errors and DeviceDescriptors (#​6043)
5ff698e - chore: move index.js into src and TS-ify (#​6049)
940a570 - chore: exclude api.ts from dependency graph (#​6052)
759b280 - chore: upgrade to Mocha v8 (#​5997)
9522f80 - chore: create common directory (#​6042)
f6af7b8 - chore: fix dependency chart generation (#​6039)
90b0934 - chore: create node directory for Node-only files (#​6041)
ce34c0a - fix: page.goto options type should be optional (#​6038)
44402b7 - feat(new-docs): add tsdoc comments to WebWorker (#​6029)
64c9c70 - chore: add dependency chart generation as script (#​6034)
547f4ea - chore: create new debug module (#​6028)
56742eb - chore: bump version to v4.0.0-post (#​6024)
e4de5f1 - chore: move assert into its own module (#​6021)
f1ec6a3 - chore: update references to branch names (#​6022)


Renovate configuration

📅 Schedule: "before 3am on Monday" (UTC).

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

♻️ Rebasing: Whenever PR becomes conflicted, 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 🤖 Type: Dependencies Dependency updates or something similar label Jul 6, 2020
@changeset-bot
Copy link

changeset-bot bot commented Jul 6, 2020

💥 No Changeset

Latest commit: d9c6906

Merging this PR will not cause any packages to be released. If these changes should not cause updates to packages in this repo, this is fine 🙂

If these changes should be published to npm, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@vercel
Copy link

vercel bot commented Jul 6, 2020

This pull request is being automatically deployed with Vercel (learn more).
To see the status of your deployment, click below or on the icon next to each commit.

🔍 Inspect: https://vercel.com/commercetools/merchant-center-application-kit/l729o8iqs
✅ Preview: https://merchant-center-application-kit-git-renovate-puppeteer-5x.commercetools.vercel.app

@renovate renovate bot force-pushed the renovate/puppeteer-5.x branch from 48e5e99 to 5e78d77 Compare July 6, 2020 11:05
@vercel vercel bot temporarily deployed to Preview July 6, 2020 11:05 Inactive
@vercel vercel bot temporarily deployed to Preview July 10, 2020 06:56 Inactive
@renovate
Copy link
Contributor Author

renovate bot commented Jul 10, 2020

PR has been edited

👷 This PR has received other commits, so Renovate will stop updating it to avoid conflicts or other problems. If you wish to abandon your changes and have Renovate start over you may click the "rebase" checkbox in the PR body/description.

If you think this comment is in error and the branch is not modified, try deleting this comment. If it comes back again the next time Renovate runs, please submit an issue or seek config help.

@vercel vercel bot temporarily deployed to Preview July 10, 2020 06:59 Inactive
@emmenko
Copy link
Member

emmenko commented Jul 10, 2020

Looks like something related to latest google chrome version: puppeteer/puppeteer#6192

I'll try pointing it to use google-chrome-stable.

@vercel vercel bot temporarily deployed to Preview July 10, 2020 07:52 Inactive
@emmenko emmenko merged commit b616363 into master Jul 10, 2020
@emmenko emmenko deleted the renovate/puppeteer-5.x branch July 10, 2020 08:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🤖 Type: Dependencies Dependency updates or something similar
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants