stevenvachon / universal-url

WHATWG URL for Node & Browser.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

An in-range update of puppeteer is breaking the build 🚨

greenkeeper opened this issue · comments

Version 1.8.0 of puppeteer was just published.

Branch Build failing 🚨
Dependency puppeteer
Current Version 1.7.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

puppeteer is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • continuous-integration/travis-ci/push: The Travis CI build could not complete due to an error (Details).

Release Notes v1.8.0

Big Changes

API Changes

Changed:

  • PUPPETEER_CHROMIUM_REVISION and PUPPETEER_EXECUTABLE_PATH environment variables will now not only affect puppeteer installation but your scripts as well. (28d9211)
  • page.goto now accepts a referer argument. (cbce839)

Added:

Bug Fixes

  • #317 - Response improvements
  • #846 - How to catch a "Permission request" dialog event?
  • #1077 - Support for geolocation mock?
  • #1159 - ignoreHTTPSErrors is not working when request interception is on
  • #2171 - Can I get Remote Address with puppteer?
  • #2764 - Some URLs sequence makes next responses to be null
  • #2925 - puppeteer@next is not autoupdated
  • #3090 - Referrer should be parameter, not extra header
  • #3106 - Calling a exposed function inside an evaluateOnNewDocument function does not work on Chrome 70

Raw Notes

42fde9b - chore: another attempt to fix pptr@next (#3210)
b7e922b - chore: fix puppeteer@next race condition (#3209)
f230722 - refactor: avoid dynamic requires in lib/ folder (#3208)
d54c7ed - fix(page): Page.goto should properly handle historyAPI in beforeunload (#3198)
28d9211 - feat(puppeteer): support convenience env variables (#3190)
7f9e276 - feat(network): introduce Response.statusText() (#3193)
84c2621 - refactor(network): Create Request class right away from payload (#3194)
7db4f0f - chore: preserve links to master version of API from README.md (#3197)
3364659 - docs(api.md): Added cutoff values for scale option in page.pdf function (#3201)
e07567f - docs(api.md): fix a typo (#3196)
1ba2b85 - feat(network): introduce Response.remoteAddress() (#3192)
52cf16c - refactor(network): Create Response class right away from payload (#3191)
22c0ce6 - test: cleanup newly added test for navigation referer (#3179)
2de5a42 - docs(api.md): expand on puppeteer-core vs puppeteer (#3189)
93f267b - docs(api.md): re-factor api.md heading (#3185)
cbce839 - docs(api.md): small typo (#3188)
32c0363 - feat(chromium): roll Chromium to r588429 (#3181)
464f3b4 - feat(page): Add 'referer' as a parameter to Page.goto() (#3128)
1702928 - feat(page): Introduce page.setGeolocation method (#3160)
1000997 - docs(api.md): page.hover typo (#3165)
50d6c2d - feat(browsercontext): implement BrowserContext.overridePermissions (#3159)
df459ba - feat(chromium): roll Chromium to r587164 (#3153)
bfed64f - docs(readme.md): change Megabits to Megabytes.
3d7ae2a - fix: fix null-type bugs (#3137)
d1105af - Revert "Add Puppeteer Recorder extension to docs" (#3102)
ce64ae2 - test: add test for request interception with 302 after POST (#3105)
d6eb3b4 - refactor: drop object factory from execution context (#3099)
73c43be - docs: Add Puppeteer Recorder extension to docs (#3088)
395c506 - docs(troubleshooting): add libatk-bridge2.0-0 to ubuntu dependencies (#3096)
ce78327 - feat(chromium): roll Chromium to r583214 (#3092)
b8e0d62 - docs(readme): refer to awesome-puppeteer (#3062)
3ae85e4 - docs: mention puppeteer-core (#3061)
af361c8 - chore: bump version to v1.7.0-post (#3060)

Commits

The new version differs by 34 commits.

  • aeb6a99 chore: mark version v1.8.0 (#3211)
  • 42fde9b chore: another attempt to fix pptr@next (#3210)
  • b7e922b chore: fix puppeteer@next race condition (#3209)
  • f230722 refactor: avoid dynamic requires in lib/ folder (#3208)
  • d54c7ed fix(page): Page.goto should properly handle historyAPI in beforeunload (#3198)
  • 28d9211 feat(puppeteer): support convenience env variables (#3190)
  • 7f9e276 feat(network): introduce Response.statusText() (#3193)
  • 84c2621 refactor(network): Create Request class right away from payload (#3194)
  • 7db4f0f chore: preserve links to master version of API from README.md (#3197)
  • 3364659 docs(api.md): Added cutoff values for scale option in page.pdf function (#3201)
  • e07567f docs(api.md): fix a typo (#3196)
  • 1ba2b85 feat(network): introduce Response.remoteAddress() (#3192)
  • 52cf16c refactor(network): Create Response class right away from payload (#3191)
  • 22c0ce6 test: cleanup newly added test for navigation referer (#3179)
  • 2de5a42 docs(api.md): expand on puppeteer-core vs puppeteer (#3189)

There are 34 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

After pinning to 1.7.0 your tests are passing again. Downgrade this dependency 📌.

  • The devDependency puppeteer was updated from 1.8.0 to 1.9.0.

Your tests are passing again with this update. Explicitly upgrade to this version 🚀

Release Notes for v1.9.0

Big Changes

API Changes

Added:

Bug Fixes

  • #2374 - feat(browser): Run puppeteer in browser (POC)
  • #2377 - Certificates error using puppeteer
  • #2721 - page.goto doesn't clear internal timeout when the browser is closed
  • #2888 - Cannot read property '_bodyLoadedPromiseFulfill' of null
  • #2918 - Support waitForNavigation for frames
  • #3104 - Full page screenshot fails when defaultViewport is null
  • #3109 - Is it clear what <...Type> means in the docs?
  • #3204 - docs: mention require('puppeteer-core')
  • #3221 - As for puppeteer to emulate the movement of the mouse while pressing?
  • #3232 - Add documentation and examples for iframe API.
  • #3234 - Black render with omitBackground: true
  • #3340 - Does --filter=SomeTest do anything when running npm run unit

Raw Notes

4abf7d1 - docs(bundling): add docs about bundling for web (#3348)
8becb31 - test: add failing test for page.select (#3346)
5ebfe1a - docs(contributing): remove the --filter note (#3342)
cd54ce3 - fix(types): upgrade node types to 8.10.34 (#3341)
c9657f8 - docs(api.md): minor grammar and consistency fixes (#3320)
c237947 - chore(types): upgrade to TypeScript 3.1.1 (#3331)
842fee8 - fix(page): full page screenshot when defaultViewport is null (#3306)
e75e36b - feat(chromium): roll Chromium to r594312 (#3310)
85aca8e - chore(testserver): prepare test server (#3294)
9c89090 - chore(testrunner): fix readme description (#3293)
12e317c - chore: add .npmignore for testrunner (#3290)
5b3ddf5 - chore(testrunner): bump version to v0.5.0-post (#3291)
907d9be - chore: prepare testrunner to be published to npm (#3289)
4e48dfc - feat(launcher): add experimental "transport" option to pptr.connect (#3265)
5acf953 - feat(frame): introduce Frame.goto and Frame.waitForNavigation (#3276)
ad49f79 - docs(api.md): Fix description of SecurityDetails class (#3277)
0b9d8a6 - feat: async stacks for all "async" public methods (#3262)
9223bca - refactor: move navigation management to FrameManager (#3266)
27477a1 - docs(api.md): Fix typo (#3273)
b97bddf - refactor: unify response tracking in page.goto and waitForNavigation (#3258)
a1a211d - chore: nicer stack highlight (#3259)
a4abb4a - feat(chromium): Roll Chromium to r591618 (#3263)
7f00860 - fix(browserfetcher): Fix windows fetching (#3256)
f5d388a - docs(api.md): add example for Mouse class (#3244)
d547b9d - fix(browser): browser closing/disconnecting should abort navigations (#3245)
f0beabd - chore: drop DEBUG for public API calls (#3246)
d929f7e - fix: set JPG background to white when omitBackground option is used (#3240)
6ec3ce6 - chore: make sure Puppeteer bundling works (#3239)
f49687f - docs(api.md): add frame example (#3237)
a582acd - feat(chromium): roll Chromium to r590951 (#3236)
7ec0801 - fix: expect Network.responseReceived event is never dispatched (#3233)
c644a3b - test: make sure zero-width screenshots don't hang (#3214)
9c4b6d0 - refactor: use browser-compliant interface of 'ws' (#3218)
56b3bd8 - docs(readme.md): Added yarn guide also to puppeteer-core (#3227)
6581ee9 - docs: add ndb as a debugging tip (#3195)
1b2c811 - refactor: move Connection to use ConnectionTransport (#3217)
c967aeb - docs(api.md): add an include statement for puppeteer-core (#3213)
c5511ec - docs(api.md): Clarify how to call page.setCookie (#3215)
78e9d5c - chore: bump version to v1.8.0-post (#3212)

Commits

The new version differs by 40 commits.

  • f6c05e6 chore: mark version v1.9.0 (#3350)
  • 4abf7d1 docs(bundling): add docs about bundling for web (#3348)
  • 8becb31 test: add failing test for page.select (#3346)
  • 5ebfe1a docs(contributing): remove the --filter note (#3342)
  • cd54ce3 fix(types): upgrade node types to 8.10.34 (#3341)
  • c9657f8 docs(api.md): minor grammar and consistency fixes (#3320)
  • c237947 chore(types): upgrade to TypeScript 3.1.1 (#3331)
  • 842fee8 fix(page): full page screenshot when defaultViewport is null (#3306)
  • e75e36b feat(chromium): roll Chromium to r594312 (#3310)
  • 85aca8e chore(testserver): prepare test server (#3294)
  • 9c89090 chore(testrunner): fix readme description (#3293)
  • 12e317c chore: add .npmignore for testrunner (#3290)
  • 5b3ddf5 chore(testrunner): bump version to v0.5.0-post (#3291)
  • 907d9be chore: prepare testrunner to be published to npm (#3289)
  • 4e48dfc feat(launcher): add experimental "transport" option to pptr.connect (#3265)

There are 40 commits in total.

See the full diff

  • The devDependency puppeteer was updated from 1.9.0 to 1.10.0.

Your tests are passing again with this update. Explicitly upgrade to this version 🚀

Release Notes for v1.10.0

Big Changes

API Changes

Added:

Bug Fixes

  • #921 - userDataDir + headless = lost authorization #921
  • #2033 - Feature request: Inspect screen reader output #2033
  • #3303 - docs: Add an example of chrome extension testing on CI
  • #3455 - No errors are thrown on asyncawait check. #3455

Raw Notes

cffcaad - chore: mark version v1.10.0
9ba3261 - feat(accessibility): snapshot the accessibility tree (#3470)
eca3c6b - test(cookies): cookies from headful now work in headless (#3481)
3596c5f - fix(page.evaluate): better function serialization (#3480)
e061007 - docs(api.md): update compatibility table
4110087 - docs(puppeteer-web): a note about running inside extension (#3477)
8e93eab - docs(api.md): add example to override request headers (#3475)
2a88690 - fix(launcher): add flags to improve reliability (#3474)
3dd5c28 - fix(pipe): dispatch "disconnected" event when browser is terminated (#3472)
9800b2c - docs(api.md): Fix missing await in extension example (#3447)
81edbbb - fix(clicking): handle negative area results in computeQuadArea (#3413)
fae441c - docs(troubleshooting): add workarounds for code transpilation (#3399)
cf8c62e - docs(api.md): Fix ElementHandle example (#3401)
d025d1f - fix(csscoverage): don't prematurely disable the CSS domain (#3418)
a4cebd8 - feat(chromium): roll Chromium to r599821 (#3414)
0fd3bfb - test(CSSCoverage): failing test when a stylesheet was recently added (#3400)
a04dedc - docs(troubleshooting.md): run non-headless on CI (#3353)
0bb462c - docs(readme): clarify SPA and SSR (#3363)
6ac66c3 - feat: browser.waitForTarget (#3356)
07febb6 - fix: add missing location property to some key descriptors (#3354)
90d1fe8 - docs(api): fixed grammatical error (it's -> its) #3352
af4209f - chore: bump version to v1.9.0-post (#3351)

Commits

The new version differs by 62 commits.

  • e9d89a2 chore: mark version v1.10.0 (#3482)
  • 9ba3261 feat(accessibility): snapshot the accessibility tree (#3470)
  • eca3c6b test(cookies): cookies from headful now work in headless (#3481)
  • 3596c5f fix(page.evaluate): better function serialization (#3480)
  • e061007 docs(api.md): update compatibility table
  • 4110087 docs(puppeteer-web): a note about running inside extension (#3477)
  • 8e93eab docs(api.md): add example to override request headers (#3475)
  • 2a88690 fix(launcher): add flags to improve reliability (#3474)
  • 3dd5c28 fix(pipe): dispatch "disconnected" event when browser is terminated (#3472)
  • 9800b2c docs(api.md): Fix missing await in extension example (#3447)
  • 81edbbb fix(clicking): handle negative area results in computeQuadArea (#3413)
  • fae441c docs(troubleshooting): add workarounds for code transpilation (#3399)
  • cf8c62e docs(api.md): Fix ElementHandle example (#3401)
  • d025d1f fix(csscoverage): don't prematurely disable the CSS domain (#3418)
  • a4cebd8 feat(chromium): roll Chromium to r599821 (#3414)

There are 62 commits in total.

See the full diff