Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 8, 2025

This PR contains the following updates:

Package Change Age Confidence
@cypress/schematic (source) 2.5.2 -> 4.1.4 age confidence

Release Notes

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

v4.1.4

Compare Source

v4.1.3

Compare Source

v4.1.2

Compare Source

v4.1.1

Compare Source

v4.1.0: 4.1.0

Compare Source

Released 2/28/2020

Features:

  • There is a new cypress info command to see the locally detected browsers and other information related to Cypress. Addresses #​4540.
  • You can now click a 'Try Again' button to recheck if the server at the designated baseUrl is running within the warning message during cypress open. Addresses #​3284.
  • There are "collapse all" and "expand all" links in the Test Runner's "Tests" tab to collapse or expand all folders within the "Integration Tests". Addresses #​6282.
  • The plugins file function's config argument now includes projectRoot (absolute path to the root of the project) and configFile (absolute path to the configuration file). Addresses #​5941.

Bugfixes:

  • Fixed a regression where Cypress could throw a "Maximum call stack size exceeded" error when transmitting a circular object over the internal WebSocket. Fixes #​6582.
  • We fixed an issue where using Chromium-family browsers could cause Cypress to throw a "WebSocket is not open: readyState 3" error under certain conditions. Fixes #​5685.
  • We now more thoroughly ensure the parent of an element exists when recursively calling visibility and existence checks in order to prevent some maximum call stack errors. Fixes #​4373.
  • We fixed an issue where a maximum call stack error would throw in some circumstances when xhr.onreadystatechange is accessed. Fixes #​5864.
  • We fixed a regression in 3.5.0 where typing into an iframe with a body element with the contenteditable attribute would throw an error. Fixes #​5930.
  • We now set the default window size when running Chrome headlessly to 1280x720. Fixes #​6210.
  • We fixed an issue where cypress install would not complete on Node.js 8.0.0. Fixes #​6512 and #​6568.
  • {% url "cy.clearLocalStorage()" clearlocalstorage now properly accepts the log option to disable logging. Fixes #​6342.

Misc:

  • The error messages displayed when rerouting to a non same-origin domain has been updated to more accurately reflect the rules around same-origin policy. Addresses #​6048.
  • We fixed an error message that would display the wrong available browser families during validation. Addressed in #​6517.
  • We fixed some typos in some of our error messages. Addressed in #​6508.
  • We're collecting more environment variables when running Cypress with GitLab CI. Addresses #​6231.
  • The typing of cy.$$ has been updated to distinguish differences between it and Cypress.$. "More info here" $#Cypress-vs-cy Addresses #​2027.
  • We're continuing to make progress in converting our codebase from CoffeeScript to JavaScript. Addresses #​2690 in #​6552, #​6523, and #​6545.

Dependency Updates

  • Upgraded electron from 7.1.10 to 7.1.13. Addressed in #​6566.

v4.0.0: 4.0.0

Compare Source

Released 2/6/2020

Summary:

Cypress 4.0.0 includes support for Mozilla Firefox browsers (beta support) and Microsoft Edge (Chromium based) browsers which is a big step forward for Cross Browser Testing in Cypress. We've also updated many of the underlying tools behind Cypress that bring new powerful features.

Breaking Changes:

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

  • Mocha, Chai, and Sinon.JS has been upgraded which includes a number of breaking changes and new features. Addresses #​2528, #​2529, #​2866.
  • During before:browser:launch, we no longer yield the second argument as an array of browser arguments and instead yield an options object with an args property in order to support more advanced browser launch options. Addresses #​6306.
  • We updated the Cypress browser objects of all Chromium-based browsers, including Electron, to have chromium set as their family field. Addresses #​6243.
  • The --browser flag no longer accepts canary as its sole argument to run Chrome Canary. You now have to specify chrome:canary to use the Chrome Canary browser. Addresses #​6243.
  • cy.writeFile() now yields null instead of the contents written to the file in order to more align with the behavior of fs. Addresses #​2466.
  • Installing Cypress on your system now requires Node.js 8+. Addresses #​5632.
  • Cypress no longer support CJSX. Addresses #​3469.

Features:

Bugfixes:

  • A test or suite appended with an .only when multiple tests or suites contained the same title now run correctly. Fixes #​5345.
  • The .its() command now properly supports 0 as a value for indexes or object keys. Fixes #​6216.

Documentation Changes:

Misc:

  • We now pass through errors caused when attempting to read arguments passed through config. Addresses #​6279.
  • We fixed a broken 'Learn more' link within the Node.js Version panel of the Test Runner Settings. Addresses #​6237.
  • The browser icons in the Test Runner now display as images with the proper branding. Addresses #​6188.
  • We updated the styling of browser dropdown in the Test Runner to look more like a button. Addresses #​6298.
  • The timer in the Test Runner now always displays at a consistent length. Addresses #​6168.
  • You can print debug information about the memory & CPU usage of Cypress, which can be accessed by enabling the cypress:server:util:process_profiler debug stream. Addresses #​6169.
  • We added types for plugin events. Addresses #​6322.

Dependency Updates

  • Added @benmalka/foxdriver. Addressed in #​1359.
  • Upgraded @cypress/browserify-preprocessor from 1.1.2 to 2.1.1. Addressed in #​4308 and #​4226.
  • Upgraded bluebird from 3.5.0 to 3.7.2. Addressed in #​4226.
  • Upgraded cachedir from 1.3.0 to 2.3.0. Addressed in #​4208 and #​4226.
  • Upgraded chai from 3.5.0 to 4.2.0. Addressed in #​2862 and #​4226.
  • Upgraded chai-as-promised from 6.0.0 to 7.1.1. Addressed in #​4226.
  • Upgraded chalk from 2.4.0 to 3.0.0. Addressed in #​4226.
  • Upgraded commander from 2.15.1 to 4.0.1. Addressed in #​4208 and #​4226.
  • Upgraded debug from 2.15.1 to 4.0.1. Addressed in #​4226.
  • Upgraded execa from 0.10.0 to 3.3.0. Addressed in #​4226.
  • Added firefox-profiler. Addressed in #​1359.
  • Added foxdriver. Addressed in #​1359.
  • Upgraded fs-extra from 5.0.0 to 8.1.0. Addressed in #​4226.
  • Upgraded getos from 3.1.1 to 3.1.4. Addressed in #​4226.
  • Upgraded is-ci from 1.2.1 to 2.0.0. Addressed in #​4226.
  • Upgraded mocha from 2.5.3 to 7.0.1. Addressed in #​2703 and #​4226.
  • Upgraded listr from 0.12.0 to 0.14.3. Addressed in #​4226.
  • Upgraded log-symbols from 2.2.0 to 3.0.0. Addressed in #​4226.
  • Added marionette-client. Addressed in #​1359.
  • Upgraded ramda from 0.24.1 to 0.26.1. Addressed in #​4226.
  • Upgraded sinon from 3.2.0 to 8.1.1. Addressed in #​2881 and #​4226.
  • Upgraded strip-ansi from 3.0.1 to 6.0.0. Addressed in #​1359.
  • Added systeminformation. Addressed in #​1359.
  • Upgraded support-colors from 5.5.0 to 7.1.0. Addressed in #​4208 and #​4226.
  • Upgraded untildify from 3.0.3 to 4.0.0. Addressed in #​4226.

v3.0.0: 3.0.0

Compare Source

Released 5/29/2018

Summary:

  • There is a new cy.task() command that enables you to go outside the browser to perform tasks directly in node. This will make it easy to setup, scaffold, seed, talk to your database, or anything else useful on a backend.
  • cy.screenshot() has been rewritten from the ground up. It now takes a screenshot of only the application under test by default. It also can take full page screenshots or element only screenshots. This is the first step of Cypress Dashboard support for screenshot diffing.
  • When running with cypress run we now run each spec file in isolation from others. We have rewritten our reporter to provide more details and provide a summary of the run at the bottom.
  • The Dashboard has been upgraded to make it easier to understand the results of each spec run. This was done in anticipation of providing you the ability to parallelize and load balance your spec files automatically in CI.
  • We are now capturing the performance and timings data of every test when using --record mode and are beginning to offer the first analytics and insights into the health of your tests on our Dashboard service.
  • Cypress now caches globally per version which prevents it from being installed multiple times across projects.

Breaking Changes:

  • We now run each spec file in isolation from one another. This shouldn't technically break anything, but if you have set up your tests in a way that requires the state of a previous spec file, this could potentially break your tests. This will go a long ways towards reducing problems we were seeing with long runs in CI. Fixes #​431, #​681, #​1589, #​1539, and #​1692.
  • The environment variable CYPRESS_BINARY_VERSION has been removed. You should use the equivalent environment variable CYPRESS_INSTALL_BINARY instead.
  • The environment variable CYPRESS_SKIP_BINARY_INSTALL has been removed. To skip the binary install, set CYPRESS_INSTALL_BINARY=0.
  • screenshotOnHeadlessFailure has been removed as an option in cypress.json. Instead you can now control this behavior directly with code by setting screenshotOnRunFailure to false within the new Screenshot API. Fixes #​1140 and #​1754.
  • trashAssetsBeforeHeadlessRuns has been renamed to trashAssetsBeforeRuns in our configuration. Fixes #​1754.
  • videoRecording has been renamed to video in our configuration to be clearer and prevent confusion about recording to our Dashboard. Fixes #​562.
  • Cypress no longer copies screenshots and videos to artifacts for CircleCI. Copying artifacts should be left up to the user to handle themselves in their circle.yml file. Fixes #​1592.
  • The standard output has been redesigned to better visualize spec files running in isolation and to be more visually appealing. This may break any specialized logic written that expected the standard output to be structured in a specific way or contain specific words. Fixes #​1588.
  • cy.screenshot() no longer takes a screenshot of the runner by default. Instead it will hide the runner, remove application scaling and then scroll to take a full page picture of your application.
  • before and after hooks within a support file now run before/after every spec file, instead of only once before/after the entire run. #​681

Features:

  • There is a new cy.task() command for executing any arbitrary node code.
  • You can now run multiple specs by passing a glob to the --spec argument of cypress run. Fixes #​263, #​416 and #​681.
  • There is a new Screenshot API and new cy.screenshot() options that allow you set defaults for how screenshots are captured, whether to scale your app, disable timers and animations, or which elements to black out in the screenshot. You can also set defaults for whether to automatically take screenshots when there are test failures or whether to wait for the Command Log to synchronize before taking the screenshot. Fixes #​1424.
  • cy.screenshot() can now be chained off of commands that yield a DOM element and will only take a screenshot that element.
  • During install of cypress, the Cypress binary is now downloaded to a global cache. This prevents multiple projects from downloading the same Cypress version. Fixes #​1300.
  • The seeded example_spec.js file has been replaced by an examples folder with several spec files. This more closely reflects the recommended use of Cypress - as smaller groups of tests split among many files that will now be run in isolation. The tests were also updated from ES5 to ES6. You can see all changes in the cypress-example-kitchensink repo Fixes #​1460.
  • Cypress now watches all the plugins file's entire dependency tree to make iterating on plugins easier. Fixes #​1407.
  • Videos will now be saved locally with a filename named after the associated spec file that it represents. Fixes #​980.
  • The Test Runner now displays skipped tests differently than pending tests. #​244.
  • Standard output now displays the number of skipped tests within the summary output during cypress run. #​1559.
  • The url to view the run in the Dashboard is now printed to output during cypress run. #​494.
  • We now print the browser and browser version run in the output during cypress run. #​833.
  • The build number and url to CI for tests run within Drone are now captured and displayed on the run within the Dashboard. #​1709.

Bugfixes:

  • Cypress no longer crashes when attempting to proxy a websocket connection that fails. Fixes #​556.
  • Asserting that an attribute equals a falsy value no longer fails when the value was falsy. Fixes #​831 and #​1491.
  • Snapshots now ignore stylesheets with media="print". Fixes #​1568.
  • Fixed issue where the Cypress window was being returned instead of AUT's window. Fixes #​1436.
  • The close event now properly fires on file when manually closing the browser. Fixes #​1560.
  • cypress.env.json is now being watched for changes. Fixes #​1464.
  • Fixed issue when using TypeScript that caused namespace errors to be thrown. Fixes #​1627.
  • Fixed error message on .type() and .clear() when typing into non-typeable elements or clearing non-clearable elements to accurately list the elements allowed. Fixes #​1650.
  • Added Chrome flag --disable-blink-features=RootLayerScrolling to prevent the application under test from "shaking" in recent versions of Chrome. Fixes #​1620.
  • Fixed issue where some TTY characters were not properly formatted in the terminal for Windows during cypress run. Fixes #​1143 and #​1550.
  • Removed an extraneous error display from Electron during cypress run about a "transparent titlebar" setting. Fixes #​1745.

Misc:

  • We are now aggressively turning on colors when running in CI. If you're using Jenkins and do not have an ANSI color plugin installed, you can turn off colors with the NO_COLOR=1 environment variable. Fixes #​1747 and #​1748.
  • When running cypress run --record on forked PR's, we now detect that the Record Key is missing and do not fail the build. We will display a warning, but continue running the tests. Fixes #​1193.
  • Searching in the Test Runner now filters out any non-matching folders. Fixes #​1706.
  • Duplicate, subsequent logs in the Command Log are now collapsed and can be expanded to view all logs. Fixes #​1580.
  • We now throw a descriptive error if an alias using .as() was defined starting with the @ character. #​1643.
  • We now pass the --disable-device-discovery-notifications flag automatically. This should prevent Chromium browser from automatically trying to communicate with devices in your network, such as printers, while running tests. Fixes #​1600.
  • We now pass any reporter errors along and provide a stack if a custom reporter you've provided does not exist. Fixes #​1192.
  • You can now pass a normal object to cypress.open() or cypress.run() through the Module API, just as you would from the command line. #​1442.
  • Added type definitions for Cypress.off and Cypress.log. Fixes #​1110 and #​1591.
  • Update type definitions for cy.screenshot() to reflect new changes to command's options. Fixes #​1753.
  • The type definition for .filter() now correctly supports a function argument.
  • The type definition for .scrollIntoView() no longer errors when passed a duration option. Fixes #​1606.
  • NODE_OPTIONS environment variables now print within the cypress:cli logs when running in DEBUG mode. Although using NODE_OPTIONS themselves should not be used due to #​1676. Fixes #​1673.
  • Cypress will error and exit with status 1 if no specs were found during cypress run. Fixes #​1585.
  • We are now counting and aggregating the stats at the end of test runs separately from Mocha. Cypress considers a test to be the it and any accompanying hooks that run before or after a test. Cypress will correctly associate failures in those hooks to the test itself. We believe this more accurately models and just "makes sense". Fixes #​1163.
  • The minimum viewport size has been lowered from 200 pixels to 20 pixels. Fixes #​1169 and #​1444.
  • Internal changes to our API structure and communication. Fixes #​1170, #​1413, #​1415.
  • We output a much more complete test results object when using cypress as a module. Fixes #​1248.
  • Added keywords to Cypress NPM package. Fixes #​1508.
  • Centered the animating icon in the Test runner when 'running'. Fixes #​1695.
  • We made some changes to internal references of headed and headless to be more specific and instead reference run mode and interactive mode. Fixes #​1140.
  • The test name text is now selectable inside the Command Log. Fixes #​1476.
  • Minor improvements to contributing docs and scripts. Fixes #​1665.
  • We now collect Semaphore CI params and provide URL's to click into the builds from the Dashboard. Fixes #​1785.
  • Config overrides coming from the CLI or environment variables are now validated the same way as if they've been set in cypress.json. Fixes #​1783.
  • There is a better / more helpful experience around passing unknown options to the CLI. Fixes #​837.
  • Display an empty message when there is no commit information on recorded runs. Fixes #​1809.

Documentation Changes:


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.

🔕 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/cypress-schematic-4.x branch 2 times, most recently from f49e935 to 20a4a98 Compare August 20, 2025 02:34
@renovate renovate bot force-pushed the renovate/cypress-schematic-4.x branch from 20a4a98 to 4ab763a Compare September 6, 2025 23:38
@renovate renovate bot force-pushed the renovate/cypress-schematic-4.x branch from 4ab763a to 530b9c0 Compare September 19, 2025 02:04
@renovate renovate bot force-pushed the renovate/cypress-schematic-4.x branch from 530b9c0 to 3818954 Compare October 3, 2025 21:36
@cmckni3 cmckni3 closed this Oct 19, 2025
Copy link
Contributor Author

renovate bot commented Oct 19, 2025

Renovate Ignore Notification

Because you closed this PR without merging, Renovate will ignore this update. You will not get PRs for any future 4.x releases. But if you manually upgrade to 4.x then Renovate will re-enable minor and patch updates automatically.

If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.

@renovate renovate bot deleted the renovate/cypress-schematic-4.x branch October 19, 2025 03:23
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