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 cypress to v9.7.0 (master) #1474

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 12, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
cypress 9.5.3 -> 9.7.0 age adoption passing confidence

Release Notes

cypress-io/cypress

v9.7.0

Compare Source

Released 5/23/2022

Features:

  • The Electron version and shipped Chromium browser version has been updated.
    Addressed in #​21418.

Deprecations:

  • The Cypress.Cookies.preserveOnce() and Cypress.Cookies.defaults() Cypress
    APIs have been deprecated. In a future release, support for
    Cypress.Cookies.preserveOnce() and Cypress.Cookies.defaults() will be
    removed. Consider using the experimental
    cy.session() command instead to cache and restore
    cookies and other sessions details between tests. Fixed
    #​21333.

Bugfixes:

  • Updated the cy.contains() command to correctly
    error and retry if the provided regex pattern begins with an equal sign and a
    match was not initially found. Previously the command would incorrectly fail
    with a syntax error. Fixed
    #​21108.
  • Corrected the cy.session() command log grouping and validation verbiage.
    This change provides better insights to logs associated with the command.
    Fixed #​21377.
  • Removed eventemitter2 third-party type definitions from cy and Cypress
    that were unintentionally exposed. Fixed
    #​20556.

Dependency Updates:

  • Upgraded the bundled node version shipped with Cypress from 16.5.0 to
    16.13.2. Addressed in
    #​21418.
  • Upgraded the Chromium browser version used during cypress run and when
    selecting Electron browser in cypress open from 94.0.4606.81 to
    100.0.4896.75. Addressed in
    #​21418.
  • Upgraded electron dependency from 15.5.1 to 18.0.4. Addressed in
    #​21418.

v9.6.1: 9.6.1

Compare Source

Released 5/9/2022

Bugfixes:

  • Cypress can now launch on systems where Firefox is installed via Snapcraft.
    Fixed #​19793.
  • Updates were made to ensure XHR calls are properly displaying the response
    body in the command log. Fixed
    #​21361.
  • Fixed cy.contains() and
    .should('contain', ...) to handle finding text that
    contains backslash characters. Fixed
    #​19116
  • Updated .type('{enter}') to support sending the Enter
    keystroke to submit buttons that are not rendered within a form html element,
    but are associated with a form via the form attribute. Fixed
    #​21163.
  • Fixed an issue with cy.session() such that re-running tests in open mode
    will now correctly recreate a session. Before this change, an error was thrown
    indicating the saved setup function was not a function because it was
    serialized. Fixed
    #​17805.

v9.6.0: 9.6.0

Compare Source

Released 4/25/2022

Features:

  • Now you can easily test multi-domain workflows by using the experimental
    cy.origin() command. This feature allows you to test
    across different origins or domains within a single test. This experiment was
    designed to work side-by-side with the cy.session()
    experimental feature. You can turn on use of this command by setting the
    experimentalSessionAndOrigin configuration
    option to true. For more details, read
    our blog post.
    Addressed #​17336 and
    #​944.
    • Added a new configuration option called experimentalSessionAndOrigin. This
      option enables support for cy.session() and
      cy.origin().
    • The experimentalSessionSupport configuration option has been removed and
      replaced by the experimentalSessionAndOrigin configuration option. Please
      update your configuration to use the new experimentalSessionAndOrigin
      option to continue to opt-in to this experimental feature.
    • When experimentalSessionAndOrigin is enabled, cross-origin requests will
      no longer immediately fail, but instead, time out based on the
      pageLoadTimeout
      configuration. This allows the request to be appropriately handled by the
      cy.origin() command.
    • When experimentalSessionAndOrigin is enabled, Cypress will no longer wait
      on page loads between hooks before moving on to the next test.

Bugfixes:

  • Fixed an issue with Firefox 98+ where the Enter keystroke was not being sent
    to an input element when using .type('{enter}'). Fixed
    #​21033.
  • We now verify if an interruption while running tests was signaled by the user
    or if it came from an error in a plugin before showing the error message.
    Fixed #​21010.
  • Improved the error message observed on Windows platforms when unzipping the
    Cypress binary and the max file length is exceeded. Fixed in
    #​21047.
  • Updated the Cypress.Commands.add() TypeScript types to better reflect the
    attributes of the .add() utility and the JQuery element, a possible previous
    subject type. #​20376.

Dependency Updates:

  • Upgraded electron dependency from 15.3.5 to 15.5.1 to consume fixes
    related to
    improve performance on
    macOS Big Sur and later. Addressed
    #​21068.

v9.5.4: 9.5.4

Compare Source

Released 4/11/2022

Bugfixes:

  • Updates were made to silence Electron warnings related to being unable to
    connect to dbus. These errors are normal and expected, and do not result in
    test failures. Because they are always present when running Electron inside
    docker containers, it has incorrectly led people to believe it is the
    root-cause of an error within their test run. By silencing these errors, it
    will improve the debug experience to allow users to focus on meaningful
    warning and error messages. Fixed
    #​19299.
  • Updates were made to ensure that all *.enable events are sent if Cypress
    becomes disconnected from the Chrome DevTools Protocol and must re-establish a
    connection to ensure all command logs are displayed to the user. This fixes an
    issue where some command logs, like download or network events, are missing
    once Cypress has disconnected and then reconnected to the Chrome DevTools
    Protocol. Fixed #​20618.
  • Fixed an issue where cy.type('{enter}') was not sending the Enter key for
    Firefox v98+. This was not an issue with Firefox v97 and below. Fixed
    #​20562.
  • Fixed a regression in 9.3.0 where glob
    patterns provided to the --spec CLI parameter was incorrectly splitting the
    patterns in unexpected places when it should have split on commas. Fixes
    #​20794.
  • Fixed an issue with cy.root() to respect the
    timeout option passed to the command.
    Previously, when the timeout option was provided, it was ignored and the
    default timeout was used. Fixed
    #​19985.
  • Updates were made to decrease the length of the Cypress cache path for Windows
    to ensure
    installing pre-release versions
    of the Cypress binary are within the maximum path length of 260 characters.
    Fixed in #​20961.
  • Fixed a regression in 8.6.0 which
    prevented .pause() from correctly executing when passing the
    --headed --no-exit CLI flags to cypress run. Fixed
    #​20745.
  • Fixed a regression in 9.2.0 which would
    sometimes throw an expected error on navigation with cy.back() and
    cy.go(). Fixed #​19749
    and #​20539.
  • Corrected the Typescript type for a cookie which was incorrectly typed as
    any when the correct type is Cookie. Fixed in
    #​20513.
  • Added the missing Cypress.Command.addAll() Typescript types. Fixed
    #​18886.
  • Fixed an uncommon error observed in cy.session() where an error was thrown
    when no cookies had been set for the session and the user clicks the session
    command log to view additional details in the DevTools console. Fixed in
    #​20946.

Misc:

  • A minor visual update was made to the cy.session() command log visuals.
    Fixed #​20433.

Dependency Updates:

  • Upgraded ansi-regex dependency from 4.1.0 to 4.1.1 to address the
    CVE-2021-3807 NVD security
    vulnerability. Addressed in
    #​20807.
  • Upgraded plist dependency from 3.0.4 to 3.0.5 to address the
    CVE-2022-22912 NVD security
    vulnerability. Addressed in
    #​20808.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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 Mend Renovate. View repository job log here.

@renovate
Copy link
Contributor Author

renovate bot commented Apr 12, 2022

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: package-lock.json
npm ERR! code ERESOLVE
npm ERR! ERESOLVE could not resolve
npm ERR! 
npm ERR! While resolving: @material-ui/[email protected]
npm ERR! Found: [email protected]
npm ERR! node_modules/react
npm ERR!   dev react@"17.0.2" from the root project
npm ERR!   peer react@">=16.3.0" from @emotion/[email protected]
npm ERR!   node_modules/@emotion/core
npm ERR!     @emotion/core@"10.3.1" from the root project
npm ERR!     peer @emotion/core@"^10.0.27" from @emotion/[email protected]
npm ERR!     node_modules/@emotion/styled
npm ERR!       @emotion/styled@"^10.0.17" from @storybook/[email protected]
npm ERR!       node_modules/@storybook/addon-info/node_modules/@storybook/theming
npm ERR!         @storybook/theming@"6.0.0-alpha.2" from @storybook/[email protected]
npm ERR!         node_modules/@storybook/addon-info
npm ERR!         2 more (@storybook/api, @storybook/components)
npm ERR!       1 more (@storybook/theming)
npm ERR!     7 more (@emotion/styled-base, @storybook/theming, ...)
npm ERR!   45 more (@emotion/styled, @emotion/styled-base, ...)
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer react@"^16.8.0" from @material-ui/[email protected]
npm ERR! node_modules/@material-ui/core
npm ERR!   @material-ui/core@"^4.9.1" from the root project
npm ERR!   peer @material-ui/core@"^4.0.0" from @material-ui/[email protected]
npm ERR!   node_modules/@material-ui/icons
npm ERR!     @material-ui/icons@"^4.9.1" from the root project
npm ERR!     2 more (@travi/travi.org-core-components, @travi/travi.org-theme-components)
npm ERR!   3 more (@material-ui/lab, @travi/travi.org-core-components, @travi/travi.org-theme-components)
npm ERR! 
npm ERR! Conflicting peer dependency: [email protected]
npm ERR! node_modules/react
npm ERR!   peer react@"^16.8.0" from @material-ui/[email protected]
npm ERR!   node_modules/@material-ui/core
npm ERR!     @material-ui/core@"^4.9.1" from the root project
npm ERR!     peer @material-ui/core@"^4.0.0" from @material-ui/[email protected]
npm ERR!     node_modules/@material-ui/icons
npm ERR!       @material-ui/icons@"^4.9.1" from the root project
npm ERR!       2 more (@travi/travi.org-core-components, @travi/travi.org-theme-components)
npm ERR!     3 more (@material-ui/lab, @travi/travi.org-core-components, @travi/travi.org-theme-components)
npm ERR! 
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR! 
npm ERR! See /tmp/renovate-cache/others/npm/eresolve-report.txt for a full report.

npm ERR! A complete log of this run can be found in:
npm ERR!     /tmp/renovate-cache/others/npm/_logs/2022-05-23T20_16_50_182Z-debug-0.log

@renovate renovate bot force-pushed the renovate/master-cypress-9.x branch from 8303049 to cff6255 Compare April 13, 2022 10:12
@renovate renovate bot force-pushed the renovate/master-cypress-9.x branch from cff6255 to 09fc2e2 Compare April 25, 2022 20:40
@renovate renovate bot changed the title chore(deps): update dependency cypress to v9.5.4 (master) chore(deps): update dependency cypress to v9.6.0 (master) Apr 25, 2022
@renovate renovate bot force-pushed the renovate/master-cypress-9.x branch from 09fc2e2 to ae30bd5 Compare May 9, 2022 17:25
@renovate renovate bot changed the title chore(deps): update dependency cypress to v9.6.0 (master) chore(deps): update dependency cypress to v9.6.1 (master) May 9, 2022
@renovate renovate bot force-pushed the renovate/master-cypress-9.x branch from ae30bd5 to 39c2e18 Compare May 23, 2022 20:17
@renovate renovate bot changed the title chore(deps): update dependency cypress to v9.6.1 (master) chore(deps): update dependency cypress to v9.7.0 (master) May 23, 2022
@renovate
Copy link
Contributor Author

renovate bot commented Mar 24, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant