NagRock / ts-mockito

Mocking library for TypeScript
MIT License
969 stars 93 forks source link

Bump puppeteer from 0.12.0 to 5.2.1 #202

Closed dependabot[bot] closed 3 years ago

dependabot[bot] commented 3 years ago

Bumps puppeteer from 0.12.0 to 5.2.1.

Release notes

Sourced from puppeteer's releases.

v5.2.1

Highlights

  • Chromium 85.0.4182.0 (r782078)
  • We now allow configuring the browser debug logging behavior (#6210)

Raw notes

4ee4649d - chore: mark v5.2.1 (#6254) e89e264a - feat(chromium): roll Chromium to r782078 (#6250) b2f69183 - fix: configure debug logging in browser (#6210) 040f37ec - docs: fix link text (#6245) 9fdf2ba2 - chore(docs): migrate page.pdf() docs (#6228) 23315844 - docs(troubleshooting): install libXss in Dockerfile (#6236) 042c4a23 - chore: mark 5.2.0-post (#6240)

v5.2.0

Feature changes

The experimental API for registering custom query handlers is slightly changed such that one registers query handlers containing two strategies: one for querying a single element and one for querying all matching elements.

The API for custom query handlers is unchanged:

__experimental_registerCustomQueryHandler(name: string, queryHandler: QueryHandler): void;
__experimental_unregisterCustomQueryHandler(name: string): void;
__experimental_customQueryHandlers(): Map<string, QueryHandler>;
__experimental_clearQueryHandlers(): void;

but QueryHandler is now defined as:

export interface QueryHandler {
  queryOne?: (element: Element | Document, selector: string) => Element | null;
  queryAll?: (element: Element | Document, selector: string) => Element[] | NodeListOf<Element>;
}

Bug fixes and improvements

  • The ESM build now includes file extensions in its import statements to match the ESM spec. Note that the ESM build is still considered experimental and should not be relied on.
  • The docs on running Firefox Nightly are now much clearer.
  • We now vendor in common dependencies such as Mitt so they can be used more easily outside of the Node module resolution ecosystem.

Raw notes

028f1442 - chore: mark v5.2.0 (#6238) 313774c5 - feat: change QueryHandler to contain QueryOne and QueryAll methods (#6218) 82645e85 - docs: better describe how to install Firefox Nightly with Puppeteer (#6226) f1a6b8d6 - chore: vendor Mitt & update project structure (#6209) fb806109 - docs(troubleshooting): drops obsolete dependencies (#5354)

Commits
Maintainer changes

This version was pushed to npm by jobay, a new releaser for puppeteer since your current version.


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/NagRock/ts-mockito/network/alerts).
codecov-commenter commented 3 years ago

Codecov Report

Merging #202 into master will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##           master     #202   +/-   ##
=======================================
  Coverage   93.55%   93.55%           
=======================================
  Files          34       34           
  Lines         652      652           
  Branches       80       80           
=======================================
  Hits          610      610           
  Misses         30       30           
  Partials       12       12           

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 6637048...91325d1. Read the comment docs.

dependabot[bot] commented 3 years ago

Looks like puppeteer is up-to-date now, so this is no longer needed.