chore(deps): update dependency @cypress/vite-dev-server to v3.3.0 #2501

Merged
konrad merged 1 commits from renovate/cypress-vite-dev-server-3.x into main 2022-10-06 20:31:19 +00:00
Member

This PR contains the following updates:

Package Type Update Change
@cypress/vite-dev-server devDependencies minor 3.2.0 -> 3.3.0

Release Notes

cypress-io/cypress

v3.3.0

Compare Source

Released 5/17/2019

Features:

  • Cypress now automatically reads from your system's HTTP_PROXY, HTTPS_PROXY, and NO_PROXY environment variables and proxies traffic accordingly through Cypress based on these values. This includes network traffic within your application under test, when downloading Cypress, and when accessing 'Runs' within the Test Runner. Please read our new Proxy Configuration doc to understand more about proxy configuration in Cypress. Fixes #​672, #​733, #​939, #​1039, #​1459, #​1469, #​1470, #​1541, #​1608, #​2295, #​3855, #​3865, #​1401 and #​3857.
  • Your project's current proxy settings now display in the Settings of the Test Runner. Addresses #​3856.
  • Support for have.focus, not.have.focus, be.focused and not.be.focused assertions have been added. Addresses #​97.
  • We now offer a separate 32bit and 64bit build for Windows. Addresses #​716, #​787, #​2095, #​706, #​3706, and #​4016.
  • Requests that go through cy.visit() or cy.request() are now automatically retried under the hood when the request fails. This more closely reflects Chrome's default behavior on requests. Addresses #​4013, #​898 and #​1013.
  • cy.visit() and cy.request() now support new options retryOnStatusCodeFailure and retryOnNetworkFailure to allow changing Cypress's automatic request retry on status codes and network errors. Addresses #​4013, #​898 and #​1013.
  • .type() now supports the special character sequences {insert}, {pageup}, and {pagedown}. Addresses #​3845.
  • We now indicate which XHRs match which alias in the Command Log on .wait() when they match an alias multiple times. Addresses #​477.
  • The console log when clicking on the cy.visit() command now displays its resolved options arguments. Addresses #​3721.
  • There's a new 'canceled' XHR status shown on the Command Log to indicate the difference between calling xhr.abort() and the browser canceling the request due to page navigation. Addresses #​3973.
  • The Electron browser now runs Chrome Version 61. Addresses #​4000.
  • Running Cypress via cypress run now supports scripts of type="module". Fixes #​3696.
  • Exposed Cypress.isCy() method to check if a value is a valid instance of cy or a cy chainable. Fixes #​3822.
  • There is a new "Download Chromium" menu item in the "Help" menu of the Test Runner links to Cypress's Chromium Download Tool. Addresses #​3977

Bugfixes:

  • Fixed a regression introduced in 3.2.0 that caused an error to throw when visiting domains with certain public suffixes. Fixes #​3717.
  • When running Cypress with NODE_OPTIONS environment variables set, Cypress no longer issues an incorrect 0 exit code. #​1676
  • Fixed a regression introduced in 3.2.0 that caused .its() to no longer retry when it yields undefined. #​3837
  • Fixed a regression introduced in 3.2.0 that caused cy.fixture() to throw a EISDIR error if a directory had the same name as a file within that same directory. Fixes #​3739.
  • user-agent headers sent as arguments to cy.request() and cy.visit() are now properly sent. Fixes #​3873 and #​3719.
  • When a request is proxied through Cypress and there is a network error, we no longer send an HTML response with a 500 status code. We now kill the browser-facing socket and let the network error be handled by the application under test. Fixes #​4101, #​4231, #​1036, #​4231, and #​1398.
  • We changed Cypress's implementation to no longer rely on internal XHR events when the browser navigates. This fixes a a bug in Chrome 71+ that could cause XHRs to pend forever. Fixes #​3973 and #​4130
  • We greatly improved the speed of proxied requests through our network layer. Fixes #​3192 and #​1469.
  • If an error occurs during cypress verify, we now kill the verification process after 10 seconds and print the error message. This should prevent some situations where Cypress would hang during installation or verification and never exit. Fixes #​819.
  • Cypress automatically retries cypress verify and cypress run commands by starting its own Xvfb server on Linux if the first attempt fails due to possible DISPLAY misconfiguration. Addresses #​4034.
  • Cypress now properly handles typing JavaScript object prototype methods (like hasOwnProperty) into .type(). Fixes #​3423.
  • We now set the form option to true if the Content-Type header equals application/x-www-form-urlencoded and json is not already set by a user. This fixes a situation where Cypress would try to parse the body as a string, resulting in a confusing error message. Fixes #​2923.
  • cy.contains() now correctly handles comma delimited arguments passed to the selector argument. Fixes #​2407.
  • Passing a browser path containing spaces now works properly when passed to the --browser argument. Fixes #​3979
  • Fixed display of tooltips when selecting elements from the Selector Playground so that they display at the correct coordinates when scrolling. Fixes #​1351.
  • The lists of spec files now display at the correct indentation level when they are nested more than 5 directories deep. Fixes #​3652.
  • Cypress now properly parses environment variables with empty values. Fixes #​3742.
  • Assertions running outside of a test are now properly handled in Cypress instead of throwing internal errors. Fixes #​3926.
  • Cypress.log() now throws an error when not properly passed an object as its argument. Addresses #​3658.
  • Cypress.log() no longer throws when called before any other Cypress commands. Fixes #​3658.

Misc:

  • We now better support capturing environment variables within Azure DevOps. Addresses #​3657.
  • Cypress now only scans for spec changes when the watcher sees changes, rather than polling to scan. Addresses #​3069.
  • The ability to open the context menu to see "Inspect Element" has been reenabled in the Electron browser. Addresses #​4002.
  • We no longer package non-Windows ffmpeg builds with Windows builds, resulting in a 35-40% reduction in zipped size and a 36-43% reduction in unzipped size of download. Addresses #​3888.
  • The warning messages when going over test recording limits have been updated to correctly display 'monthly tests' and 'private tests' where necessary. Addresses #​4024.
  • When an HTTP request is received by the proxy layer, by default, we send it with a Connection: keep-alive header so that the connection will be reused if possible. Addresses #​3857.
  • Improved accessibility of Test Runner for screen readers. Addresses #​3850.
  • Cypress type definition now allow a timeout option in cy.hash(). Fixes #​3844.
  • Fixed type definition for match assertion so that it now only accepts RegExp type arguments. Fixes #​2578.
  • The .trigger() type definition now expects its options to be ObjectLike. Addressed in #​3809.
  • The cy.clock() type definition now allows for type Date. Fixed in #​4106.
  • Added type definition for undocumented Cypress.LocalStorage.clear method. Fixes #​4070.
  • Added type definition for Cypress.isCy() method. Fixes #​3822.
  • Added missing type definitions for some cy.visit() options. Fixes #​3989.
  • The spinner animation should more smoothly spin when a command is pending in the Test Runner. Addressed in #​4005.

Documentation Changes:

Dependency Updates

  • Upgraded commit-info from 2.1.2 to 2.1.2. Addressed in #​4045
  • Upgraded data-uri-to-buffer from 0.0.4 to 1.2.0. Addresses #​4152.
  • Upgraded electron from 1.8.2 to 2.0.18. Addresses #​4000.
  • Upgraded electron-packager from 9.1.0 to 13.1.1. Addresses #​4155.
  • Upgraded express-handlebars from 3.0.0 to 3.0.2. Addressed in #​4086.
  • Upgraded find-process from 1.2.1 to 1.4.1. Addressed in #​4087.
  • Upgraded getos from 2.8.4 to 3.1.1. Addressed in #​4222.
  • Upgraded http-status-codes from 1.3.0 to 1.3.2. Addressed in #​3949.
  • Upgraded jimp from 0.6.0 to 0.6.4. Addressed in #​4097.
  • Removed method-override. Addressed in #​4209.
  • Upgraded node from 8.2.1 to 8.9.3. Addressed in #​4001.
  • Downgraded parse-domain from 2.1.7 to 2.0.0 to avoid a regression released in parse-domain. Addresses #​3717.
  • Upgraded pluralize from 3.1.0 to 7.0.0. Addressed in #​4205 and #​4206.
  • Upgraded semver from 5.6.0 to 5.7.0. Addressed in #​4112.
  • Upgraded send from 0.16.2 to 0.17.0. Addressed in #​4134.
  • Upgraded supports-color from 5.5.0 to 6.1.0. Addressed in #​4150.
  • Removed tar-fs. Addressed in #​4148.
  • Upgraded term-size from 1.2.0 to 2.0.0. Addressed in #​4148.
  • Upgraded tmp from 0.0.33 to 0.1.0. Addressed in #​4111.
  • Upgraded trash from 4.3.0 to 5.2.0. Addressed in #​4140.
  • Upgraded url-parse from 1.4.4 to 1.4.7. Addressed in #​4110.
  • Upgraded widest-line from 2.0.1 to 3.1.0. Addressed in #​4139.
  • We updated and removed some dependencies used for development.

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) | devDependencies | minor | [`3.2.0` -> `3.3.0`](https://renovatebot.com/diffs/npm/@cypress%2fvite-dev-server/3.2.0/3.3.0) | --- ### Release Notes <details> <summary>cypress-io/cypress</summary> ### [`v3.3.0`](https://github.com/cypress-io/cypress/releases/tag/v3.3.0) [Compare Source](https://github.com/cypress-io/cypress/compare/@cypress/vite-dev-server-v3.2.0...@cypress/vite-dev-server-v3.3.0) *Released 5/17/2019* **Features:** - Cypress now automatically reads from your system's `HTTP_PROXY`, `HTTPS_PROXY`, and `NO_PROXY` environment variables and proxies traffic accordingly through Cypress based on these values. This includes network traffic within your application under test, when downloading Cypress, and when accessing 'Runs' within the Test Runner. Please read our new [Proxy Configuration](https://on.cypress.io/proxy-configuration) doc to understand more about proxy configuration in Cypress. Fixes [#&#8203;672](https://github.com/cypress-io/cypress/issues/672), [#&#8203;733](https://github.com/cypress-io/cypress/issues/733), [#&#8203;939](https://github.com/cypress-io/cypress/issues/939), [#&#8203;1039](https://github.com/cypress-io/cypress/issues/1039), [#&#8203;1459](https://github.com/cypress-io/cypress/issues/1459), [#&#8203;1469](https://github.com/cypress-io/cypress/issues/1469), [#&#8203;1470](https://github.com/cypress-io/cypress/issues/1470), [#&#8203;1541](https://github.com/cypress-io/cypress/issues/1541), [#&#8203;1608](https://github.com/cypress-io/cypress/issues/1608), [#&#8203;2295](https://github.com/cypress-io/cypress/issues/2295), [#&#8203;3855](https://github.com/cypress-io/cypress/issues/3855), [#&#8203;3865](https://github.com/cypress-io/cypress/issues/3865), [#&#8203;1401](https://github.com/cypress-io/cypress/issues/1401) and [#&#8203;3857](https://github.com/cypress-io/cypress/issues/3857). - Your project's current proxy settings now display in the [Settings of the Test Runner](https://on.cypress.io/proxy-configuration#View-proxy-settings-in-Cypress). Addresses [#&#8203;3856](https://github.com/cypress-io/cypress/issues/3856). - Support for `have.focus`, `not.have.focus`, `be.focused` and `not.be.focused` [assertions](https://on.cypress.io/assertions) have been added. Addresses [#&#8203;97](https://github.com/cypress-io/cypress/issues/97). - We now offer a separate 32bit and 64bit build for Windows. Addresses [#&#8203;716](https://github.com/cypress-io/cypress/issues/716), [#&#8203;787](https://github.com/cypress-io/cypress/issues/787), [#&#8203;2095](https://github.com/cypress-io/cypress/issues/2095), [#&#8203;706](https://github.com/cypress-io/cypress/issues/706), [#&#8203;3706](https://github.com/cypress-io/cypress/issues/3706), and [#&#8203;4016](https://github.com/cypress-io/cypress/issues/4016). - Requests that go through [`cy.visit()`](https://on.cypress.io/visit) or [`cy.request()`](https://on.cypress.io/request) are now automatically retried under the hood when the request fails. This more closely reflects Chrome's default behavior on requests. Addresses [#&#8203;4013](https://github.com/cypress-io/cypress/issues/4013), [#&#8203;898](https://github.com/cypress-io/cypress/issues/898) and [#&#8203;1013](https://github.com/cypress-io/cypress/issues/1013). - [`cy.visit()`](https://on.cypress.io/visit) and [`cy.request()`](https://on.cypress.io/request) now support new options `retryOnStatusCodeFailure` and `retryOnNetworkFailure` to allow changing Cypress's automatic request retry on status codes and network errors. Addresses [#&#8203;4013](https://github.com/cypress-io/cypress/issues/4013), [#&#8203;898](https://github.com/cypress-io/cypress/issues/898) and [#&#8203;1013](https://github.com/cypress-io/cypress/issues/1013). - [`.type()`](https://on.cypress.io/type) now supports the special character sequences `{insert}`, `{pageup}`, and `{pagedown}`. Addresses [#&#8203;3845](https://github.com/cypress-io/cypress/issues/3845). - We now indicate which XHRs match which alias in the Command Log on [`.wait()`](https://on.cypress.io/wait) when they match an alias multiple times. Addresses [#&#8203;477](https://github.com/cypress-io/cypress/issues/477). - The console log when clicking on the [`cy.visit()`](https://on.cypress.io/visit) command now displays its resolved `options` arguments. Addresses [#&#8203;3721](https://github.com/cypress-io/cypress/issues/3721). - There's a new 'canceled' XHR status shown on the Command Log to indicate the difference between calling `xhr.abort()` and the browser canceling the request due to page navigation. Addresses [#&#8203;3973](https://github.com/cypress-io/cypress/issues/3973). - The Electron browser now runs Chrome Version 61. Addresses [#&#8203;4000](https://github.com/cypress-io/cypress/issues/4000). - Running Cypress via `cypress run` now supports scripts of `type="module"`. Fixes [#&#8203;3696](https://github.com/cypress-io/cypress/issues/3696). - Exposed [`Cypress.isCy()`](https://on.cypress.io/iscy) method to check if a value is a valid instance of `cy` or a `cy` chainable. Fixes [#&#8203;3822](https://github.com/cypress-io/cypress/issues/3822). - There is a new "Download Chromium" menu item in the "Help" menu of the Test Runner links to Cypress's [Chromium Download Tool](https://on.cypress.io/chromium-downloads). Addresses [#&#8203;3977](https://github.com/cypress-io/cypress/issues/3977) **Bugfixes:** - Fixed a regression introduced in [3.2.0](https://on.cypress.io/changelog#&#8203;3-2-0) that caused an error to throw when visiting domains with certain public suffixes. Fixes [#&#8203;3717](https://github.com/cypress-io/cypress/issues/3717). - When running Cypress with `NODE_OPTIONS` environment variables set, Cypress no longer issues an incorrect 0 exit code. [#&#8203;1676](https://github.com/cypress-io/cypress/issues/1676) - Fixed a regression introduced in [3.2.0](https://on.cypress.io/changelog#&#8203;3-2-0) that caused [`.its()`](https://on.cypress.io/its) to no longer retry when it yields `undefined`. [#&#8203;3837](https://github.com/cypress-io/cypress/issues/3837) - Fixed a regression introduced in [3.2.0](https://on.cypress.io/changelog#&#8203;3-2-0) that caused [`cy.fixture()`](https://on.cypress.io/fixture) to throw a `EISDIR` error if a directory had the same name as a file within that same directory. Fixes [#&#8203;3739](https://github.com/cypress-io/cypress/issues/3739). - `user-agent` headers sent as arguments to [`cy.request()`](https://on.cypress.io/request) and [`cy.visit()`](https://on.cypress.io/visit) are now properly sent. Fixes [#&#8203;3873](https://github.com/cypress-io/cypress/issues/3873) and [#&#8203;3719](https://github.com/cypress-io/cypress/issues/3719). - When a request is proxied through Cypress and there is a network error, we no longer send an HTML response with a 500 status code. We now kill the browser-facing socket and let the network error be handled by the application under test. Fixes [#&#8203;4101](https://github.com/cypress-io/cypress/issues/4101), [#&#8203;4231](https://github.com/cypress-io/cypress/issues/4231), [#&#8203;1036](https://github.com/cypress-io/cypress/issues/1036), [#&#8203;4231](https://github.com/cypress-io/cypress/issues/4231), and [#&#8203;1398](https://github.com/cypress-io/cypress/issues/1398). - We changed Cypress's implementation to no longer rely on internal XHR events when the browser navigates. This fixes a a bug in Chrome 71+ that could cause XHRs to pend forever. Fixes [#&#8203;3973](https://github.com/cypress-io/cypress/issues/3973) and [#&#8203;4130](https://github.com/cypress-io/cypress/issues/4130) - We greatly improved the speed of proxied requests through our network layer. Fixes [#&#8203;3192](https://github.com/cypress-io/cypress/issues/3192) and [#&#8203;1469](https://github.com/cypress-io/cypress/issues/1469). - If an error occurs during `cypress verify`, we now kill the verification process after 10 seconds and print the error message. This should prevent some situations where Cypress would hang during installation or verification and never exit. Fixes [#&#8203;819](https://github.com/cypress-io/cypress/issues/819). - Cypress automatically retries `cypress verify` and `cypress run` commands by starting its own Xvfb server on Linux if the first attempt fails due to possible `DISPLAY` misconfiguration. Addresses [#&#8203;4034](https://github.com/cypress-io/cypress/issues/4034). - Cypress now properly handles typing JavaScript object prototype methods (like `hasOwnProperty`) into [.type()](https://on.cypress.io/type). Fixes [#&#8203;3423](https://github.com/cypress-io/cypress/issues/3423). - We now set the `form` option to `true` if the `Content-Type` header equals `application/x-www-form-urlencoded` and `json` is not already set by a user. This fixes a situation where Cypress would try to parse the `body` as a string, resulting in a confusing error message. Fixes [#&#8203;2923](https://github.com/cypress-io/cypress/issues/2923). - [`cy.contains()`](https://on.cypress.io/contains) now correctly handles comma delimited arguments passed to the selector argument. Fixes [#&#8203;2407](https://github.com/cypress-io/cypress/issues/2407). - Passing a browser path containing spaces now works properly when passed to the `--browser` argument. Fixes [#&#8203;3979](https://github.com/cypress-io/cypress/issues/3979) - Fixed display of tooltips when selecting elements from the Selector Playground so that they display at the correct coordinates when scrolling. Fixes [#&#8203;1351](https://github.com/cypress-io/cypress/issues/1351). - The lists of spec files now display at the correct indentation level when they are nested more than 5 directories deep. Fixes [#&#8203;3652](https://github.com/cypress-io/cypress/issues/3652). - Cypress now properly parses environment variables with empty values. Fixes [#&#8203;3742](https://github.com/cypress-io/cypress/issues/3742). - Assertions running outside of a test are now properly handled in Cypress instead of throwing internal errors. Fixes [#&#8203;3926](https://github.com/cypress-io/cypress/issues/3926). - [`Cypress.log()`](https://on.cypress.io/cypress-log) now throws an error when not properly passed an object as its argument. Addresses [#&#8203;3658](https://github.com/cypress-io/cypress/issues/3658). - [`Cypress.log()`](https://on.cypress.io/cypress-log) no longer throws when called before any other Cypress commands. Fixes [#&#8203;3658](https://github.com/cypress-io/cypress/issues/3658). **Misc:** - We now better support capturing environment variables within Azure DevOps. Addresses [#&#8203;3657](https://github.com/cypress-io/cypress/issues/3657). - Cypress now only scans for spec changes when the watcher sees changes, rather than polling to scan. Addresses [#&#8203;3069](https://github.com/cypress-io/cypress/issues/3069). - The ability to open the context menu to see "Inspect Element" has been reenabled in the Electron browser. Addresses [#&#8203;4002](https://github.com/cypress-io/cypress/issues/4002). - We no longer package non-Windows `ffmpeg` builds with Windows builds, resulting in a 35-40% reduction in zipped size and a 36-43% reduction in unzipped size of download. Addresses [#&#8203;3888](https://github.com/cypress-io/cypress/issues/3888). - The warning messages when going over test recording limits have been updated to correctly display 'monthly tests' and 'private tests' where necessary. Addresses [#&#8203;4024](https://github.com/cypress-io/cypress/issues/4024). - When an HTTP request is received by the proxy layer, by default, we send it with a `Connection: keep-alive` header so that the connection will be reused if possible. Addresses [#&#8203;3857](https://github.com/cypress-io/cypress/issues/3857). - Improved accessibility of Test Runner for screen readers. Addresses [#&#8203;3850](https://github.com/cypress-io/cypress/issues/3850). - Cypress type definition now allow a `timeout` option in [`cy.hash()`](https://on.cypress.io/hash). Fixes [#&#8203;3844](https://github.com/cypress-io/cypress/issues/3844). - Fixed type definition for `match` assertion so that it now only accepts `RegExp` type arguments. Fixes [#&#8203;2578](https://github.com/cypress-io/cypress/issues/2578). - The [`.trigger()`](https://on.cypress.io/trigger) type definition now expects its `options` to be `ObjectLike`. Addressed in [#&#8203;3809](https://github.com/cypress-io/cypress/pull/3809). - The [`cy.clock()`](https://on.cypress.io/clock) type definition now allows for type `Date`. Fixed in [#&#8203;4106](https://github.com/cypress-io/cypress/pull/4106). - Added type definition for undocumented `Cypress.LocalStorage.clear` method. Fixes [#&#8203;4070](https://github.com/cypress-io/cypress/issues/4070). - Added type definition for [`Cypress.isCy()`](https://on.cypress.io/iscy) method. Fixes [#&#8203;3822](https://github.com/cypress-io/cypress/issues/3822). - Added missing type definitions for some [`cy.visit()`](https://on.cypress.io/visit) options. Fixes [#&#8203;3989](https://github.com/cypress-io/cypress/issues/3989). - The spinner animation should more smoothly spin when a command is pending in the Test Runner. Addressed in [#&#8203;4005](https://github.com/cypress-io/cypress/pull/4005). **Documentation Changes:** - New [Proxy Configuration](https://on.cypress.io/proxy-configuration) doc. Addressed in [#&#8203;1486](https://github.com/cypress-io/cypress-documentation/pull/1486). - Added `{insert}`, `{pageup}`, and `{pagedown}` as supported special character sequences to [`.type()`](https://on.cypress.io/type#Arguments). Addressed in [#&#8203;1567](https://github.com/cypress-io/cypress-documentation/pull/1567). - Added newly supported `focus` assertion to [Assertions](https://on.cypress.io/assertions) doc. Addresses [#&#8203;1372](https://github.com/cypress-io/cypress-documentation/pull/1372). - Added new options `retryOnStatusCodeFailure` and `retryOnNetworkFailure` to [`cy.visit()`](https://on.cypress.io/visit) and [`cy.request()`](https://on.cypress.io/request). - Updated [install instructions for Windows](https://on.cypress.io/installing-cypress#Download-URLs) on how to target 64bit and 32bit infrastructures. Addressed in [#&#8203;1568](https://github.com/cypress-io/cypress-documentation/issues/1568). - Updated [`.its()`](https://on.cypress.io/its) and [`.invoke()`](https://on.cypress.io/invoke) docs to better explain how default assertions are handled. Addresses [#&#8203;1643](https://github.com/cypress-io/cypress-documentation/issues/1643). - Updated our [Roadmap](https://on.cypress.io/roadmap) to more closely reflect the work we are doing. Addressed in [#&#8203;1567](https://github.com/cypress-io/cypress-documentation/pull/1639). - Added a section about how to request our new [Open Source Plan](https://on.cypress.io/dashboard-service#Open-Source-Plan) in the Dashboard Service doc. Addressed in [#&#8203;1567](https://github.com/cypress-io/cypress-documentation/pull/1584). **Dependency Updates** - Upgraded `commit-info` from `2.1.2` to `2.1.2`. Addressed in [#&#8203;4045](https://github.com/cypress-io/cypress/pull/4045) - Upgraded `data-uri-to-buffer` from `0.0.4` to `1.2.0`. Addresses [#&#8203;4152](https://github.com/cypress-io/cypress/issues/4152). - Upgraded `electron` from `1.8.2` to `2.0.18`. Addresses [#&#8203;4000](https://github.com/cypress-io/cypress/issues/4000). - Upgraded `electron-packager` from `9.1.0` to `13.1.1`. Addresses [#&#8203;4155](https://github.com/cypress-io/cypress/issues/4155). - Upgraded `express-handlebars` from `3.0.0` to `3.0.2`. Addressed in [#&#8203;4086](https://github.com/cypress-io/cypress/pull/4086). - Upgraded `find-process` from `1.2.1` to `1.4.1`. Addressed in [#&#8203;4087](https://github.com/cypress-io/cypress/pull/4087). - Upgraded `getos` from `2.8.4` to `3.1.1`. Addressed in [#&#8203;4222](https://github.com/cypress-io/cypress/pull/4222). - Upgraded `http-status-codes` from `1.3.0` to `1.3.2`. Addressed in [#&#8203;3949](https://github.com/cypress-io/cypress/pull/3949). - Upgraded `jimp` from `0.6.0` to `0.6.4`. Addressed in [#&#8203;4097](https://github.com/cypress-io/cypress/pull/4097). - Removed `method-override`. Addressed in [#&#8203;4209](https://github.com/cypress-io/cypress/pull/4209). - Upgraded `node` from `8.2.1` to `8.9.3`. Addressed in [#&#8203;4001](https://github.com/cypress-io/cypress/pull/4001). - Downgraded `parse-domain` from 2.1.7 to 2.0.0 to avoid a regression released in `parse-domain`. Addresses [#&#8203;3717](https://github.com/cypress-io/cypress/issues/3717). - Upgraded `pluralize` from `3.1.0` to `7.0.0`. Addressed in [#&#8203;4205](https://github.com/cypress-io/cypress/pull/4205) and [#&#8203;4206](https://github.com/cypress-io/cypress/pull/4206). - Upgraded `semver` from `5.6.0` to `5.7.0`. Addressed in [#&#8203;4112](https://github.com/cypress-io/cypress/pull/4112). - Upgraded `send` from `0.16.2` to `0.17.0`. Addressed in [#&#8203;4134](https://github.com/cypress-io/cypress/pull/4134). - Upgraded `supports-color` from `5.5.0` to `6.1.0`. Addressed in [#&#8203;4150](https://github.com/cypress-io/cypress/pull/4150). - Removed `tar-fs`. Addressed in [#&#8203;4148](https://github.com/cypress-io/cypress/pull/4148). - Upgraded `term-size` from `1.2.0` to `2.0.0`. Addressed in [#&#8203;4148](https://github.com/cypress-io/cypress/pull/4148). - Upgraded `tmp` from `0.0.33` to `0.1.0`. Addressed in [#&#8203;4111](https://github.com/cypress-io/cypress/pull/4111). - Upgraded `trash` from `4.3.0` to `5.2.0`. Addressed in [#&#8203;4140](https://github.com/cypress-io/cypress/pull/4140). - Upgraded `url-parse` from `1.4.4` to `1.4.7`. Addressed in [#&#8203;4110](https://github.com/cypress-io/cypress/pull/4110). - Upgraded `widest-line` from `2.0.1` to `3.1.0`. Addressed in [#&#8203;4139](https://github.com/cypress-io/cypress/pull/4139). - We updated and removed some dependencies used for development. </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:eyJjcmVhdGVkSW5WZXIiOiIzMi4xNTMuNCIsInVwZGF0ZWRJblZlciI6IjMyLjE1My40In0=-->
renovate added the
dependencies
label 2022-10-06 19:03:27 +00:00
renovate added 1 commit 2022-10-06 19:03:28 +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://2501-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://2501-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 b62ec79939 into main 2022-10-06 20:31:19 +00:00
konrad deleted branch renovate/cypress-vite-dev-server-3.x 2022-10-06 20:31:19 +00:00
This repo is archived. You cannot comment on pull requests.
No description provided.