chore(deps): update dependency @cypress/vite-dev-server to v4 #2651

Merged
konrad merged 1 commits from renovate/cypress-vite-dev-server-4.x into main 2022-11-07 16:17:24 +00:00
Member

This PR contains the following updates:

Package Type Update Change
@cypress/vite-dev-server (source) devDependencies major 3.4.0 -> 4.0.0

Release Notes

cypress-io/cypress

v4.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.

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, click this checkbox.

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [@cypress/vite-dev-server](https://github.com/cypress-io/cypress/tree/develop/npm/vite-dev-server#readme) ([source](https://github.com/cypress-io/cypress)) | devDependencies | major | [`3.4.0` -> `4.0.0`](https://renovatebot.com/diffs/npm/@cypress%2fvite-dev-server/3.4.0/4.0.0) | --- ### Release Notes <details> <summary>cypress-io/cypress</summary> ### [`v4.0.0`](https://github.com/cypress-io/cypress/releases/tag/v4.0.0) [Compare Source](https://github.com/cypress-io/cypress/compare/v3.4.0...v4.0.0) *Released 2/6/2020* **Summary:** Cypress 4.0.0 includes support for [Mozilla Firefox](https://www.mozilla.org/firefox/) browsers (beta support) and [Microsoft Edge](https://www.microsoft.com/edge) (Chromium based) browsers which is a big step forward for [Cross Browser Testing](https://on.cypress.io/cross-browser-testing) in Cypress. We've also updated many of the [underlying tools](https://on.cypress.io/bundled-tools) behind Cypress that bring new powerful features. **Breaking Changes:** **:warning: Please read our [Migration Guide](https://on.cypress.io/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 [#&#8203;2528](https://github.com/cypress-io/cypress/issues/2528), [#&#8203;2529](https://github.com/cypress-io/cypress/issues/2529), [#&#8203;2866](https://github.com/cypress-io/cypress/issues/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 [#&#8203;6306](https://github.com/cypress-io/cypress/issues/6306). - We updated the [Cypress browser objects](https://on.cypress.io/browser-launch-api) of all Chromium-based browsers, including Electron, to have `chromium` set as their `family` field. Addresses [#&#8203;6243](https://github.com/cypress-io/cypress/issues/6243). - The [`--browser` flag](https://on.cypress.io/command-line#cypress-run-browser-lt-browser-name-or-path-gt) 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 [#&#8203;6243](https://github.com/cypress-io/cypress/issues/6243). - [`cy.writeFile()`](https://on.cypress.io/writefile) now yields `null` instead of the contents written to the file in order to more align with the behavior of `fs`. Addresses [#&#8203;2466](https://github.com/cypress-io/cypress/issues/2466). - Installing Cypress on your system now requires Node.js 8+. Addresses [#&#8203;5632](https://github.com/cypress-io/cypress/issues/5632). - Cypress no longer support CJSX. Addresses [#&#8203;3469](https://github.com/cypress-io/cypress/issues/3469). **Features:** - [Mozilla Firefox](https://www.mozilla.org/firefox/) browsers now have beta support. Addresses [#&#8203;1096](https://github.com/cypress-io/cypress/issues/1096). - [Microsoft Edge](https://www.microsoft.com/edge) (Chromium based) browsers are now supported. Addresses [#&#8203;5433](https://github.com/cypress-io/cypress/issues/5433). - There is a new [`Cypress.isBrowser()`](https://on.cypress.io/isbrowser) utility function. Addresses [#&#8203;2023](https://github.com/cypress-io/cypress/issues/2023). - We updated the [`Cypress.browser`](https://on.cypress.io/browser) object with a new `channel` property which contains the release channel of the detected browser. Addresses [#&#8203;6243](https://github.com/cypress-io/cypress/issues/6243). - Appending `.only` to multiple tests or suites will now run all tests with the `.only` property. Addresses [#&#8203;2828](https://github.com/cypress-io/cypress/issues/2828). - The [`isFinite` assertion](https://on.cypress.io/assertions) is now supported. Addresses [#&#8203;5669](https://github.com/cypress-io/cypress/issues/5669). - The `empty` assertion is now supported when used against Map objects. Addresses [#&#8203;6072](https://github.com/cypress-io/cypress/issues/6072). - The `nested` assertion chainer property is now supported. Addresses [#&#8203;3080](https://github.com/cypress-io/cypress/issues/3080) and [#&#8203;5004](https://github.com/cypress-io/cypress/issues/5004). **Bugfixes:** - A test or suite appended with an `.only` when multiple tests or suites contained the same title now run correctly. Fixes [#&#8203;5345](https://github.com/cypress-io/cypress/issues/5345). - The [`.its()`](https://on.cypress.io/its) command now properly supports 0 as a value for indexes or object keys. Fixes [#&#8203;6216](https://github.com/cypress-io/cypress/issues/6216). **Documentation Changes:** - Added [Cross Browser Testing Guide](https://on.cypress.io/cross-browser-testing) with helpful CI strategies to consider when running tests across multiple browsers. - Added [`Cypress.isBrowser()`](https://on.cypress.io/isbrowser) doc. **Misc:** - We now pass through errors caused when attempting to read arguments passed through [`config`](https://on.cypress.io/configuration-api). Addresses [#&#8203;6279](https://github.com/cypress-io/cypress/issues/6279). - We fixed a broken 'Learn more' link within the Node.js Version panel of the Test Runner Settings. Addresses [#&#8203;6237](https://github.com/cypress-io/cypress/issues/6237). - The browser icons in the Test Runner now display as images with the proper branding. Addresses [#&#8203;6188](https://github.com/cypress-io/cypress/issues/6188). - We updated the styling of browser dropdown in the Test Runner to look more like a button. Addresses [#&#8203;6298](https://github.com/cypress-io/cypress/issues/6298). - The timer in the Test Runner now always displays at a consistent length. Addresses [#&#8203;6168](https://github.com/cypress-io/cypress/issues/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](https://on.cypress.io/debugging#Log-memory-and-CPU-usage). Addresses [#&#8203;6169](https://github.com/cypress-io/cypress/issues/6169). - We added types for plugin events. Addresses [#&#8203;6322](https://github.com/cypress-io/cypress/issues/6322). **Dependency Updates** - Added `@benmalka/foxdriver`. Addressed in [#&#8203;1359](https://github.com/cypress-io/cypress/pull/1359). - Upgraded `@cypress/browserify-preprocessor` from `1.1.2` to `2.1.1`. Addressed in [#&#8203;4308](https://github.com/cypress-io/cypress/pull/4308) and [#&#8203;4226](https://github.com/cypress-io/cypress/pull/4226). - Upgraded `bluebird` from `3.5.0` to `3.7.2`. Addressed in [#&#8203;4226](https://github.com/cypress-io/cypress/pull/4226). - Upgraded `cachedir` from `1.3.0` to `2.3.0`. Addressed in [#&#8203;4208](https://github.com/cypress-io/cypress/pull/4208) and [#&#8203;4226](https://github.com/cypress-io/cypress/pull/4226). - Upgraded `chai` from `3.5.0` to `4.2.0`. Addressed in [#&#8203;2862](https://github.com/cypress-io/cypress/pull/2862) and [#&#8203;4226](https://github.com/cypress-io/cypress/pull/4226). - Upgraded `chai-as-promised` from `6.0.0` to `7.1.1`. Addressed in [#&#8203;4226](https://github.com/cypress-io/cypress/pull/4226). - Upgraded `chalk` from `2.4.0` to `3.0.0`. Addressed in [#&#8203;4226](https://github.com/cypress-io/cypress/pull/4226). - Upgraded `commander` from `2.15.1` to `4.0.1`. Addressed in [#&#8203;4208](https://github.com/cypress-io/cypress/pull/4208) and [#&#8203;4226](https://github.com/cypress-io/cypress/pull/4226). - Upgraded `debug` from `2.15.1` to `4.0.1`. Addressed in [#&#8203;4226](https://github.com/cypress-io/cypress/pull/4226). - Upgraded `execa` from `0.10.0` to `3.3.0`. Addressed in [#&#8203;4226](https://github.com/cypress-io/cypress/pull/4226). - Added `firefox-profiler`. Addressed in [#&#8203;1359](https://github.com/cypress-io/cypress/pull/1359). - Added `foxdriver`. Addressed in [#&#8203;1359](https://github.com/cypress-io/cypress/pull/1359). - Upgraded `fs-extra` from `5.0.0` to `8.1.0`. Addressed in [#&#8203;4226](https://github.com/cypress-io/cypress/pull/4226). - Upgraded `getos` from `3.1.1` to `3.1.4`. Addressed in [#&#8203;4226](https://github.com/cypress-io/cypress/pull/4226). - Upgraded `is-ci` from `1.2.1` to `2.0.0`. Addressed in [#&#8203;4226](https://github.com/cypress-io/cypress/pull/4226). - Upgraded `mocha` from `2.5.3` to `7.0.1`. Addressed in [#&#8203;2703](https://github.com/cypress-io/cypress/pull/2703) and [#&#8203;4226](https://github.com/cypress-io/cypress/pull/4226). - Upgraded `listr` from `0.12.0` to `0.14.3`. Addressed in [#&#8203;4226](https://github.com/cypress-io/cypress/pull/4226). - Upgraded `log-symbols` from `2.2.0` to `3.0.0`. Addressed in [#&#8203;4226](https://github.com/cypress-io/cypress/pull/4226). - Added `marionette-client`. Addressed in [#&#8203;1359](https://github.com/cypress-io/cypress/pull/1359). - Upgraded `ramda` from `0.24.1` to `0.26.1`. Addressed in [#&#8203;4226](https://github.com/cypress-io/cypress/pull/4226). - Upgraded `sinon` from `3.2.0` to `8.1.1`. Addressed in [#&#8203;2881](https://github.com/cypress-io/cypress/pull/2881) and [#&#8203;4226](https://github.com/cypress-io/cypress/pull/4226). - Upgraded `strip-ansi` from `3.0.1` to `6.0.0`. Addressed in [#&#8203;1359](https://github.com/cypress-io/cypress/pull/1359). - Added `systeminformation`. Addressed in [#&#8203;1359](https://github.com/cypress-io/cypress/pull/1359). - Upgraded `support-colors` from `5.5.0` to `7.1.0`. Addressed in [#&#8203;4208](https://github.com/cypress-io/cypress/pull/4208) and [#&#8203;4226](https://github.com/cypress-io/cypress/pull/4226). - Upgraded `untildify` from `3.0.3` to `4.0.0`. Addressed in [#&#8203;4226](https://github.com/cypress-io/cypress/pull/4226). </details> --- ### 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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yNDAuMiIsInVwZGF0ZWRJblZlciI6IjMyLjI0MC4yIn0=-->
renovate added the
dependencies
label 2022-11-07 16:04:42 +00:00
renovate added 1 commit 2022-11-07 16:04:43 +00:00
konrad scheduled this pull request to auto merge when all checks succeed 2022-11-07 16:05:00 +00:00
Member

Hi renovate!

Thank you for creating a PR!

I've deployed the changes of this PR on a preview environment under this URL: https://2651-renovate-cypress-vite-dev-server--vikunja-frontend-preview.netlify.app

You can use this url to view the changes live and test them out.
You will need to manually connect this to an api running somehwere. The easiest to use is https://try.vikunja.io/.

Have a nice day!

Beep boop, I'm a bot.

Hi renovate! Thank you for creating a PR! I've deployed the changes of this PR on a preview environment under this URL: https://2651-renovate-cypress-vite-dev-server--vikunja-frontend-preview.netlify.app You can use this url to view the changes live and test them out. You will need to manually connect this to an api running somehwere. The easiest to use is https://try.vikunja.io/. Have a nice day! > Beep boop, I'm a bot.
konrad merged commit e0fd4f216f into main 2022-11-07 16:17:24 +00:00
dpschen deleted branch renovate/cypress-vite-dev-server-4.x 2022-11-07 16:45:57 +00:00
This repo is archived. You cannot comment on pull requests.
No description provided.