Update dependency cypress to v6.1.0 #325

Merged
konrad merged 1 commits from renovate/cypress-6.x into master 2020-12-10 15:36:09 +00:00
Member

This PR contains the following updates:

Package Type Update Change
cypress devDependencies minor 6.0.0 -> 6.1.0

Release Notes

cypress-io/cypress

v6.1.0

Compare Source

Released 12/07/2020

Features:

  • There's a new scrollBehavior configuration option that controls the viewport position when an element is scrolled prior to action commands. Possible values are 'top', 'bottom', 'center', 'nearest', and false, with 'top' being the default. scrollBehavior: false disables scrolling altogether. scrollBehavior can be specified in global configuration, test configuration or individual action commands via options. Addresses #​871 and #​4356.
  • The Tests tab in the Test Runner now orders folders before files. This matches the ordering of most IDEs' file explorers. Addresses #​7334.

Bugfixes:

  • Responses stubbed from cy.intercept() will now automatically set Access-Control-Allow-Origin and Access-Control-Allow-Credentials to permissive values unless explicitly overridden. Fixes #​9264.
  • The Cannot read property "fireChangeEvent" of undefined error will no longer throw during a race condition when using cy.intercept(). #​9170
  • HTTP responses that cannot have a body (like HTTP 304 and HTTP 204) can now be awaited using cy.intercept(). Fixes #​8934 and #​8999.
  • We fixed an issue where HTTP redirects could not be awaited using cy.intercept() unless dynamically intercepted. Addressed in #​9097.
  • Tests will no longer hang in certain situations when there's an error in a before() hook. Fixes #​9162.
  • We no longer strip / from URLs when they are explicitly passed with query paramaters. Fixes #​9360.

Deprecations:

Deprecations still work as before but will be removed from Cypress in a future release. We encourage you to update your code now to remove uses of deprecations.

  • Cypress.moment has been deprecated and will be replaced in a future release. Consider migrating to a different datetime formatter. Addresses #​8714.

Misc:

  • We collect more environment variables from Bitbucket to better detect reruns. Addresses #​9309.
  • waitForAnimations and animationDistanceThreshold types are now included for all actionable commands. Addresses #​8854.

Dependency Updates:

  • Upgraded mocha-junit-reporter from 1.23.1 to 2.0.0. Addressed in #​9528.

v6.0.1

Compare Source

Released 11/30/2020

Bugfixes:

  • Chromium based browsers on version 87 will no longer show recorded videos as frozen or blank. Fixes #​9265.
  • We fixed a regression introduced in 5.0.0 that would cause an Option 'sourceMap' cannot be specified with option 'inlineSourceMap' error to throw when setting sourceMap in your tsconfig. Fixes #​8477.
  • cy.screenshot() no longer throws an "offset" is out of range error when Cypress attempts to crop the image. Fixes #​2034.
  • cy.screenshot() types won't mistakenly display the command as deprecated. Fixes #​9303.
  • Lower-cased HTTP methods can now be used with cy.intercept(). Fixes #​9313.

Renovate configuration

📅 Schedule: At any time (no schedule defined).

🚦 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 Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [cypress](https://github.com/cypress-io/cypress) | devDependencies | minor | [`6.0.0` -> `6.1.0`](https://renovatebot.com/diffs/npm/cypress/6.0.0/6.1.0) | --- ### Release Notes <details> <summary>cypress-io/cypress</summary> ### [`v6.1.0`](https://github.com/cypress-io/cypress/releases/v6.1.0) [Compare Source](https://github.com/cypress-io/cypress/compare/v6.0.1...v6.1.0) _Released 12/07/2020_ **Features:** - There's a new `scrollBehavior` configuration option that controls the viewport position when an element is scrolled prior to action commands. Possible values are `'top'`, `'bottom'`, `'center'`, `'nearest'`, and `false`, with `'top'` being the default. `scrollBehavior: false` disables scrolling altogether. `scrollBehavior` can be specified in [global configuration](https://on.cypress.io/configuration#Actionability), [test configuration](https://on.cypress.io/writing-and-organizing-tests#Test-Configuration) or individual [action commands](https://on.cypress.io/interacting-with-elements) via `options`. Addresses [#&#8203;871](https://github.com/cypress-io/cypress/issues/871) and [#&#8203;4356](https://github.com/cypress-io/cypress/issues/4356). - The **Tests** tab in the Test Runner now orders folders before files. This matches the ordering of most IDEs' file explorers. Addresses [#&#8203;7334](https://github.com/cypress-io/cypress/issues/7334). **Bugfixes:** - Responses stubbed from [`cy.intercept()`](https://on.cypress.io/intercept) will now automatically set `Access-Control-Allow-Origin` and `Access-Control-Allow-Credentials` to permissive values unless explicitly overridden. Fixes [#&#8203;9264](https://github.com/cypress-io/cypress/issues/9264). - The `Cannot read property "fireChangeEvent" of undefined` error will no longer throw during a race condition when using [`cy.intercept()`](https://on.cypress.io/intercept). [#&#8203;9170](https://github.com/cypress-io/cypress/issues/9170) - HTTP responses that cannot have a body (like HTTP 304 and HTTP 204) can now be awaited using [`cy.intercept()`](https://on.cypress.io/intercept). Fixes [#&#8203;8934](https://github.com/cypress-io/cypress/issues/8934) and [#&#8203;8999](https://github.com/cypress-io/cypress/issues/8999). - We fixed an issue where HTTP redirects could not be awaited using [`cy.intercept()`](https://on.cypress.io/intercept) unless dynamically intercepted. Addressed in [#&#8203;9097](https://github.com/cypress-io/cypress/issues/9097). - Tests will no longer hang in certain situations when there's an error in a `before()` hook. Fixes [#&#8203;9162](https://github.com/cypress-io/cypress/issues/9162). - We no longer strip `/` from URLs when they are explicitly passed with query paramaters. Fixes [#&#8203;9360](https://github.com/cypress-io/cypress/issues/9360). **Deprecations:** Deprecations still work as before but will be removed from Cypress in a future release. We encourage you to update your code now to remove uses of deprecations. - [`Cypress.moment`](https://on.cypress.io/moment) has been deprecated and will be replaced in a future release. Consider migrating to a different datetime formatter. Addresses [#&#8203;8714](https://github.com/cypress-io/cypress/issues/8714). **Misc:** - We collect more environment variables from Bitbucket to better detect reruns. Addresses [#&#8203;9309](https://github.com/cypress-io/cypress/issues/9309). - `waitForAnimations` and `animationDistanceThreshold` types are now included for all actionable commands. Addresses [#&#8203;8854](https://github.com/cypress-io/cypress/issues/8854). **Dependency Updates:** - Upgraded `mocha-junit-reporter` from `1.23.1` to `2.0.0`. Addressed in [#&#8203;9528](https://github.com/cypress-io/cypress/issues/9528). ### [`v6.0.1`](https://github.com/cypress-io/cypress/releases/v6.0.1) [Compare Source](https://github.com/cypress-io/cypress/compare/v6.0.0...v6.0.1) _Released 11/30/2020_ **Bugfixes:** - Chromium based browsers on version 87 will no longer show recorded videos as frozen or blank. Fixes [#&#8203;9265](https://github.com/cypress-io/cypress/issues/9265). - We fixed a regression introduced in [5.0.0](https://on.cypress.io/changelog#&#8203;5-0-0) that would cause an `Option 'sourceMap' cannot be specified with option 'inlineSourceMap'` error to throw when setting `sourceMap` in your tsconfig. Fixes [#&#8203;8477](https://github.com/cypress-io/cypress/issues/8477). - [`cy.screenshot()`](https://on.cypress.io/screenshot) no longer throws an `"offset" is out of range` error when Cypress attempts to crop the image. Fixes [#&#8203;2034](https://github.com/cypress-io/cypress/issues/2034). - [`cy.screenshot()`](https://on.cypress.io/screenshot) types won't mistakenly display the command as deprecated. Fixes [#&#8203;9303](https://github.com/cypress-io/cypress/issues/9303). - Lower-cased HTTP methods can now be used with [`cy.intercept()`](https://on.cypress.io/intercept). Fixes [#&#8203;9313](https://github.com/cypress-io/cypress/issues/9313). </details> --- ### Renovate configuration 📅 **Schedule**: At any time (no schedule defined). 🚦 **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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
renovate added the
dependencies
label 2020-12-10 14:01:55 +00:00
renovate added 1 commit 2020-12-10 14:01:56 +00:00
continuous-integration/drone/pr Build is passing Details
47d46ac42a
Update dependency cypress to v6.1.0
konrad merged commit 8915cdd9ef into master 2020-12-10 15:36:09 +00:00
This repo is archived. You cannot comment on pull requests.
No description provided.