Skip to content

Update cypress (main)#259024

Open
elastic-renovate-prod[bot] wants to merge 1 commit into
mainfrom
renovate/main-cypress
Open

Update cypress (main)#259024
elastic-renovate-prod[bot] wants to merge 1 commit into
mainfrom
renovate/main-cypress

Conversation

@elastic-renovate-prod
Copy link
Copy Markdown
Contributor

@elastic-renovate-prod elastic-renovate-prod Bot commented Mar 23, 2026

This PR contains the following updates:

Package Type Update Change Pending
@cypress/grep (source) devDependencies major 5.1.0 -> 6.0.0 6.0.1
@cypress/webpack-preprocessor (source) devDependencies major 6.0.2 -> 7.1.0 7.1.1
cypress (source) devDependencies minor 15.12.0 -> 15.15.0 15.16.0
cypress-data-session dependencies major 2.8.7 -> 3.0.0
cypress-network-idle devDependencies major 1.15.0 -> 2.0.1
cypress-recurse devDependencies patch 1.37.1 -> 1.37.2
eslint-plugin-cypress devDependencies major 3.6.0 -> 6.4.1
find-cypress-specs devDependencies patch 1.54.6 -> 1.54.12

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

cypress-io/cypress (@​cypress/grep)

v6.0.0: 6.0.0

Compare Source

Released 11/23/2020

Summary:

Cypress now offers full network stubbing support with the introduction of the cy.intercept() command (previously cy.route2()). With cy.intercept() your tests can intercept, modify and wait on any type of HTTP request originating from your app.

Breaking Changes:

Please read our Migration Guide which explains the changes in more detail and how to change your code to migrate to Cypress 6.0.

  • Cypress now always throws an error when asserting on an element that doesn't exist in the DOM (unless you're asserting that the element should not.exist). Assertions such as not.visible, not.contains, not.have.class, etc will now fail when used on non-existent DOM elements. Addresses #​205.
  • DOM elements where the CSS style (or ancestors) are opacity: 0 are no longer considered visible. However these are still considered actionable and "any action commands" interacting-with-elements#Actionability used to interact with the element will perform the action. This matches browser's implementation on how they regard elements with opacity: 0. Addresses #​4474.
  • The type yielded by cy.wait(alias) has changed in order to support use of cy.intercept(). Addressed in #​9266.
  • The experimentalNetworkStubbing option has been removed and made the default behavior. You can safely removed this configuration option. Addressed in #​9185.
  • When using .type() and .click() on elements inside a contenteditable element, the events are now properly triggered on the inside elements. This may cause unintended consequences if you were relying on the previous behavior. Addressed in #​9066.
  • We removed several deprecation errors around APIs that were removed in versions of Cypress prior to 4.0.0. This will not cause any changes for anyone upgrading from a 4.0+ version of Cypress. For a full list of all APIs affected see #​8946.
  • We updated our HTTP status codes and reason phrases to match Node.js http.STATUS_CODES. If you have code that relies on a reason phrase, then this could affect you. Addressed in #​8969.
  • JSON request and response bodies captured by cy.intercept() are now automatically parsed, removing the need to manually do JSON.parse. Addressed in #​9280.

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.

  • cy.server() and cy.route() have been deprecated. In a future release, support for cy.server() and cy.route() will be moved to a plugin. We encourage you to use cy.intercept() instead. Addressed in #​9185.
  • experimentalFetchPolyfill has been deprecated. We encourage you to use cy.intercept() to intercept requests using the Fetch API instead.
  • cy.route2() was renamed to cy.intercept(). We encourage you to update usages of cy.route2() to use cy.intercept(). Addressed in #​9182.

Features:

  • The new cy.intercept() command can be used to manage the behavior of HTTP requests at the network layer. Addressed in #​9182.
  • We now pass —disable-dev-shm-usage to the Chrome browser flags by default. This will write shared memory files into /tmp instead of /dev/shm. If you're passing this flag in your plugins file, you can now remove this code. Addresses #​5336.
  • A warning is now displayed when passing invalid configuration keys through the CLI. Addresses #​428.
  • The cypress version command now also displays the current Electron and bundled Node versions. Addresses #​9180.
  • The cypress version command now accepts a --component flag that allows you to print the version of specific components of Cypress. ie Electron, Node, etc. Addresses #​9214.

Bugfixes:

  • We fixed a regression introduced in 3.5.0 that would cause .type() to not type the entire string when focus was called away from the target element. Fixes #​9254.
  • .type() and .click() now properly work on elements inside a contenteditable element. Fixes #​2717 and #​7721.
  • We fixed a regression introduced in 5.6.0 that would cause the Test Runner to crashes and display a white page when switching tabs while tests are running. Fixes #​9151.
  • Fixed an issue where Content-Length for cy.route2 request bodies could be incorrectly recalculated. Fixes #​9166.

Documentation Changes:

Misc:

  • Added the type of redirects and changed redirectedToUrl optional for Response types. Addresses #​9275.

Dependency Updates

  • Upgraded Chrome browser version used during cypress run and when selecting Electron browser in cypress open from 85 to 87. Addressed in #​9222.
  • Upgraded bundled Node.js version from 12.16.3 to 12.18.3. Addressed in #​9222.
  • Upgraded electron from 10.1.5 to 11.0.2. Addressed in #​9222.
bahmutov/cypress-data-session (cypress-data-session)

v3.0.0

Compare Source

Features
BREAKING CHANGES
  • requires Cypress v15.10+

  • feat: do not use Cypress.env

  • set up node version

  • bump cypress-plugin-config

v2.8.8

Compare Source

Bug Fixes
bahmutov/cypress-network-idle (cypress-network-idle)

v2.0.1

Compare Source

Bug Fixes
  • add node setup for the release job (5ee119d)
bahmutov/cypress-recurse (cypress-recurse)

v1.37.2

Compare Source

Bug Fixes
cypress-io/eslint-plugin-cypress (eslint-plugin-cypress)

v6.4.1

Compare Source

Bug Fixes

v6.4.0

Compare Source

Features
  • support chains started of helper functions in unsafe-to-chain-command (#​307) (bdf94f2)

v6.3.1

Compare Source

Bug Fixes

v6.3.0

Compare Source

Features
  • added no-and rule to ensure .and() follows certain commands (#​310) (c0b7e3b)

v6.2.3

Compare Source

Bug Fixes
  • no-unnecessary-waiting flag identifiers defined in object/array patterns (#​308) (f5ccf77)

v6.2.2

Compare Source

Bug Fixes

v6.2.1

Compare Source

Bug Fixes
  • conditional expressions are now checked by require-data-selectors (#​305) (d69d417)

v6.2.0

Compare Source

Features
  • require-data-selector uses consistent rules with assignments (#​302) (de98a5d)

v6.1.0

Compare Source

Features

v6.0.0

Compare Source

Features
  • publish v6 with ESLint v10 migration completion (#​298)
BREAKING CHANGES
  • Remove deprecated eslint-plugin-cypress/flat configuration
  • Use eslint-plugin-cypress instead
  • Update globals to 17.3.0

Other changes:

  • Add package type commonjs
  • Documentation updates related to flat configuration
  • Update Node.js to 24.13.1

v5.4.0: (DEPRECATED)

Compare Source

Deprecated: Accidentally includes breaking changes from 6.0.0

v5.3.0

Compare Source

Features

v5.2.1

Compare Source

Bug Fixes

v5.2.0

Compare Source

Features

v5.1.1

Compare Source

Bug Fixes

v5.1.0

Compare Source

Features

v5.0.1

Compare Source

Bug Fixes
  • stylistic: apply javascript formatting conventions (#​262) (bbd33fd)

v5.0.0

Compare Source

Breaking Changes
  • Support for non-flat legacy configurations is removed. The default configuration eslint-plugin-cypress now resolves to the flat configuration instead of to the legacy configuration
Deprecations
  • eslint-plugin-cypress/flat is deprecated and should be replaced by eslint-plugin-cypress
Other
  • remove legacy eslintrc configuration (#​260) (618bd21)
  • globals dependency is updated to 16.2.0
  • semantic-release dependency is update to 24.2.5

v4.3.0

Compare Source

Features

v4.2.1

Compare Source

Bug Fixes
  • deps: update all dependencies (5b827eb)

v4.2.0

Compare Source

Bug Fixes
Features
  • add rule disallow usage of cypress-xpath (1ae902a)

v4.1.0

Compare Source

Features
  • docs: publish updated readme (2bc8d5a)

v4.0.0

Compare Source

Features
  • minimum version eslint v9 (b50181a)
BREAKING CHANGES
  • Support ESLint v9 and above only

Support for ESlint v7 & v8 is removed
languageOptions ecmaVersion: 2019 and sourceType: module are removed from eslint-plugin-cypress/flat config
globals is updated to 15.11.0
eslint-plugin-n is updated to 17.11.1

bahmutov/find-cypress-specs (find-cypress-specs)

v1.54.12

Compare Source

Bug Fixes
  • permissions for the release process (571b395)

v1.54.11

Compare Source

Bug Fixes

v1.54.10

Compare Source

Bug Fixes

v1.54.9

Compare Source

Bug Fixes

v1.54.8

Compare Source

Bug Fixes
  • deps: update dependency find-test-names to v1.29.19 (#​385) (8c26ede)

v1.54.7

Compare Source

Bug Fixes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - 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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@elastic-renovate-prod elastic-renovate-prod Bot added backport:all-open Backport to all branches that could still receive a release buildkite-ci ci:all-cypress-suites release_note:skip Skip the PR/issue when compiling release notes labels Mar 23, 2026
@elastic-renovate-prod elastic-renovate-prod Bot requested a review from a team March 23, 2026 09:37
@elastic-renovate-prod elastic-renovate-prod Bot added the backport:all-open Backport to all branches that could still receive a release label Mar 23, 2026
@elastic-renovate-prod elastic-renovate-prod Bot force-pushed the renovate/main-cypress branch 6 times, most recently from 4e6fe95 to 17ef0d7 Compare March 26, 2026 20:28
@elastic-renovate-prod elastic-renovate-prod Bot force-pushed the renovate/main-cypress branch 3 times, most recently from 646ccf3 to e3db3cd Compare April 7, 2026 18:16
@elastic-renovate-prod elastic-renovate-prod Bot added the Team:Operations Kibana-Operations Team label Apr 16, 2026
@elasticmachine
Copy link
Copy Markdown
Contributor

Pinging @elastic/kibana-operations (Team:Operations)

@macroscopeapp
Copy link
Copy Markdown
Contributor

macroscopeapp Bot commented Apr 16, 2026

Approvability

Verdict: Would Approve

This PR contains only dependency version updates for Cypress and related testing packages in package.json and yarn.lock. These are mechanical changes to test infrastructure with no production runtime impact.

Macroscope would have approved this PR. A repo admin can enable approvability here.

@elastic-renovate-prod elastic-renovate-prod Bot force-pushed the renovate/main-cypress branch 4 times, most recently from b3235b8 to fc80677 Compare April 23, 2026 06:17
@elastic-renovate-prod elastic-renovate-prod Bot force-pushed the renovate/main-cypress branch 4 times, most recently from 964fa10 to f8a7009 Compare April 30, 2026 18:25
@elastic-renovate-prod elastic-renovate-prod Bot force-pushed the renovate/main-cypress branch from f8a7009 to 6450b04 Compare May 5, 2026 18:22
@elastic-renovate-prod elastic-renovate-prod Bot force-pushed the renovate/main-cypress branch 5 times, most recently from f4ecd88 to cbb3e42 Compare May 13, 2026 18:24
@elastic-renovate-prod elastic-renovate-prod Bot force-pushed the renovate/main-cypress branch 2 times, most recently from 8bd1446 to bbc8fed Compare May 20, 2026 15:42
@elastic-renovate-prod elastic-renovate-prod Bot force-pushed the renovate/main-cypress branch from bbc8fed to cdbf182 Compare May 26, 2026 17:52
@elastic-renovate-prod elastic-renovate-prod Bot force-pushed the renovate/main-cypress branch from cdbf182 to e6a09c2 Compare May 26, 2026 21:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

backport:all-open Backport to all branches that could still receive a release buildkite-ci ci:all-cypress-suites release_note:skip Skip the PR/issue when compiling release notes Team:Operations Kibana-Operations Team

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant