Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Feb 14, 2024

Note: This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@cypress/code-coverage 3.12.49 -> 3.14.7 age confidence
@vitejs/plugin-react (source) 4.2.1 -> 4.7.0 age confidence
axios (source) 1.6.8 -> 1.13.2 age confidence
cypress (source) 13.8.1 -> 13.17.0 age confidence
eslint-import-resolver-typescript 3.6.3 -> 3.10.1 age confidence
eslint-plugin-import 2.29.1 -> 2.32.0 age confidence
eslint-plugin-jsx-a11y 6.8.0 -> 6.10.2 age confidence
eslint-plugin-prettier 5.1.3 -> 5.5.4 age confidence
eslint-plugin-react 7.34.4 -> 7.37.5 age confidence
prettier (source) 3.2.5 -> 3.7.4 age confidence
vite (source) 5.2.14 -> 5.4.21 age confidence
vite-plugin-checker 0.6.4 -> 0.12.0 age confidence

Release Notes

cypress-io/code-coverage (@​cypress/code-coverage)

v3.14.7

Compare Source

Bug Fixes

v3.14.6

Compare Source

Bug Fixes

v3.14.5

Compare Source

Bug Fixes

v3.14.4

Compare Source

Bug Fixes

v3.14.3

Compare Source

Bug Fixes

v3.14.2

Compare Source

Bug Fixes

v3.14.1

Compare Source

Bug Fixes

v3.14.0

Compare Source

Features
  • add explicit check against codeCoverage.expectFrontendCoverageOnly before attempting to collect backend coverage (#​555) (48cd348)

v3.13.12

Compare Source

Bug Fixes

v3.13.11

Compare Source

Bug Fixes

v3.13.10

Compare Source

Bug Fixes

v3.13.9

Compare Source

Bug Fixes

v3.13.8

Compare Source

Bug Fixes

v3.13.7

Compare Source

Bug Fixes

v3.13.6

Compare Source

Bug Fixes

v3.13.5

Compare Source

Bug Fixes
  • fix: Batch coverage data sent to combineCoverage to prevent timeouts #​877

v3.13.4

Compare Source

Bug Fixes
  • improve performance combining coverage on large codebases (#​753) (bf696bb)

v3.13.3

Compare Source

Bug Fixes

v3.13.2

Compare Source

Bug Fixes

v3.13.1

Compare Source

Bug Fixes

v3.13.0

Compare Source

Features
  • support multiple servers from which to gather code coverage (#​880) (207b027)
vitejs/vite-plugin-react (@​vitejs/plugin-react)

v4.7.0

Compare Source

Add HMR support for compound components (#​518)

HMR now works for compound components like this:

const Root = () => <div>Accordion Root</div>
const Item = () => <div>Accordion Item</div>

export const Accordion = { Root, Item }
Return Plugin[] instead of PluginOption[] (#​537)

The return type has changed from react(): PluginOption[] to more specialized type react(): Plugin[]. This allows for type-safe manipulation of plugins, for example:

// previously this causes type errors
react({ babel: { plugins: ['babel-plugin-react-compiler'] } })
  .map(p => ({ ...p, applyToEnvironment: e => e.name === 'client' }))

v4.6.0

Compare Source

Add raw Rolldown support

This plugin only worked with Vite. But now it can also be used with raw Rolldown. The main purpose for using this plugin with Rolldown is to use react compiler.

v4.5.2

Compare Source

Suggest @vitejs/plugin-react-oxc if rolldown-vite is detected #​491

Emit a log which recommends @vitejs/plugin-react-oxc when rolldown-vite is detected to improve performance and use Oxc under the hood. The warning can be disabled by setting disableOxcRecommendation: true in the plugin options.

Use optimizeDeps.rollupOptions instead of optimizeDeps.esbuildOptions for rolldown-vite #​489

This suppresses the warning about optimizeDeps.esbuildOptions being deprecated in rolldown-vite.

Add Vite 7-beta to peerDependencies range #​497

React plugins are compatible with Vite 7, this removes the warning when testing the beta.

v4.5.1

Compare Source

Add explicit semicolon in preambleCode #​485

This fixes an edge case when using HTML minifiers that strips line breaks aggressively.

v4.5.0

Compare Source

Add filter for rolldown-vite #​470

Added filter so that it is more performant when running this plugin with rolldown-powered version of Vite.

Skip HMR for JSX files with hooks #​480

This removes the HMR warning for hooks with JSX.

v4.4.1

Compare Source

Fix type issue when using moduleResolution: "node" in tsconfig #​462

v4.4.0

Compare Source

Make compatible with rolldown-vite

This plugin is now compatible with rolldown-powered version of Vite.
Note that currently the __source property value position might be incorrect. This will be fixed in the near future.

v4.3.4

Compare Source

Add Vite 6 to peerDependencies range

Vite 6 is highly backward compatible, not much to add!

Force Babel to output spec compliant import attributes #​386

The default was an old spec (with type: "json"). We now enforce spec compliant (with { type: "json" })

v4.3.3

Compare Source

React Compiler runtimeModule option removed

React Compiler was updated to accept a target option and runtimeModule was removed. vite-plugin-react will still detect runtimeModule for backwards compatibility.

When using a custom runtimeModule or target !== '19', the plugin will not try to pre-optimize react/compiler-runtime dependency.

The react-compiler-runtime is now available on npm can be used instead of the local shim for people using the compiler with React < 19.

Here is the configuration to use the compiler with React 18 and correct source maps in development:

npm install babel-plugin-react-compiler react-compiler-runtime @&#8203;babel/plugin-transform-react-jsx-development
export default defineConfig(({ command }) => {
  const babelPlugins = [['babel-plugin-react-compiler', { target: '18' }]]
  if (command === 'serve') {
    babelPlugins.push(['@&#8203;babel/plugin-transform-react-jsx-development', {}])
  }

  return {
    plugins: [react({ babel: { plugins: babelPlugins } })],
  }
})

v4.3.2

Compare Source

Ignore directive sourcemap error #​369

v4.3.1

Compare Source

Fix support for React Compiler with React 18

The previous version made this assumption that the compiler was only usable with React 19, but it's possible to use it with React 18 and a custom runtimeModule: https://gist.github.com/poteto/37c076bf112a07ba39d0e5f0645fec43

When using a custom runtimeModule, the plugin will not try to pre-optimize react/compiler-runtime dependency.

Reminder: Vite expect code outside of node_modules to be ESM, so you will need to update the gist with import React from 'react'.

v4.3.0

Compare Source

Fix support for React compiler

Don't set retainLines: true when the React compiler is used. This creates whitespace issues and the compiler is modifying the JSX too much to get correct line numbers after that. If you want to use the React compiler and get back correct line numbers for tools like vite-plugin-react-click-to-component to work, you should update your config to something like:

export default defineConfig(({ command }) => {
  const babelPlugins = [['babel-plugin-react-compiler', {}]]
  if (command === 'serve') {
    babelPlugins.push(['@&#8203;babel/plugin-transform-react-jsx-development', {}])
  }

  return {
    plugins: [react({ babel: { plugins: babelPlugins } })],
  }
})
Support HMR for class components

This is a long overdue and should fix some issues people had with HMR when migrating from CRA.

axios/axios (axios)

v1.13.2

Compare Source

Bug Fixes
  • http: fix 'socket hang up' bug for keep-alive requests when using timeouts; (#​7206) (8d37233)
  • http: use default export for http2 module to support stubs; (#​7196) (0588880)
Performance Improvements
Contributors to this release

v1.13.1

Compare Source

Bug Fixes
  • http: fixed a regression that caused the data stream to be interrupted for responses with non-OK HTTP statuses; (#​7193) (bcd5581)
Contributors to this release

v1.13.0

Compare Source

Bug Fixes
Features
Contributors to this release

1.12.2 (2025-09-14)

Bug Fixes
  • fetch: use current global fetch instead of cached one when env fetch is not specified to keep MSW support; (#​7030) (cf78825)
Contributors to this release

1.12.1 (2025-09-12)

Bug Fixes
Contributors to this release

v1.12.2

Compare Source

Bug Fixes
  • fetch: use current global fetch instead of cached one when env fetch is not specified to keep MSW support; (#​7030) (cf78825)
Contributors to this release

v1.12.1

Compare Source

Bug Fixes
Contributors to this release

v1.12.0

Compare Source

Bug Fixes
Features
  • adapter: surface low‑level network error details; attach original error via cause (#​6982) (78b290c)
  • fetch: add fetch, Request, Response env config variables for the adapter; (#​7003) (c959ff2)
  • support reviver on JSON.parse (#​5926) (2a97634), closes #​5924
  • types: extend AxiosResponse interface to include custom headers type (#​6782) (7960d34)
Contributors to this release

v1.11.0

Compare Source

Bug Fixes
Contributors to this release

v1.10.0

Compare Source

Bug Fixes
  • adapter: pass fetchOptions to fetch function (#​6883) (0f50af8)
  • form-data: convert boolean values to strings in FormData serialization (#​6917) (5064b10)
  • package: add module entry point for React Native; (#​6933) (3d343b8)
Features
Contributors to this release

v1.9.0

Compare Source

Bug Fixes
  • core: fix the Axios constructor implementation to treat the config argument as optional; (#​6881) (6c5d4cd)
  • fetch: fixed ERR_NETWORK mapping for Safari browsers; (#​6767) (dfe8411)
  • headers: allow iterable objects to be a data source for the set method; (#​6873) (1b1f9cc)
  • headers: fix getSetCookie by using 'get' method for caseless access; (#​6874) (d4f7df4)
  • headers: fixed support for setting multiple header values from an iterated source; (#​6885) (f7a3b5e)
  • http: send minimal end multipart boundary (#​6661) (987d2e2)
  • types: fix autocomplete for adapter config (#​6855) (e61a893)
Features
  • AxiosHeaders: add getSetCookie method to retrieve set-cookie headers values (#​5707) (80ea756)
Contributors to this release

1.8.4 (2025-03-19)

Bug Fixes
  • buildFullPath: handle allowAbsoluteUrls: false without baseURL (#​6833) (f10c2e0)
Contributors to this release

1.8.3 (2025-03-10)

Bug Fixes
  • add missing type for allowAbsoluteUrls (#​6818) (10fa70e)
  • xhr/fetch: pass allowAbsoluteUrls to buildFullPath in xhr and fetch adapters (#​6814) (ec159e5)
Contributors to this release

1.8.2 (2025-03-07)

Bug Fixes
  • http-adapter: add allowAbsoluteUrls to path building (#​6810) (fb8eec2)
Contributors to this release

1.8.1 (2025-02-26)

Bug Fixes
  • utils: move generateString to platform utils to avoid importing crypto module into client builds; (#​6789) (36a5a62)
Contributors to this release

v1.8.4

Compare Source

Bug Fixes
  • core: fix the Axios constructor implementation to treat the config argument as optional; (#​6881) (6c5d4cd)
  • fetch: fixed ERR_NETWORK mapping for Safari browsers; (#​6767) (dfe8411)
  • headers: allow iterable objects to be a data source for the set method; (#​6873) (1b1f9cc)
  • headers: fix getSetCookie by using 'get' method for caseless access; (#​6874) (d4f7df4)
  • headers: fixed support for setting multiple header values from an iterated source; (#​6885) (f7a3b5e)
  • http: send minimal end multipart boundary (#​6661) (987d2e2)
  • types: fix autocomplete for adapter config (#​6855) (e61a893)
Features
  • AxiosHeaders: add getSetCookie method to retrieve set-cookie headers values (#​5707) (80ea756)
Contributors to this release

1.8.4 (2025-03-19)

Bug Fixes
  • buildFullPath: handle allowAbsoluteUrls: false without baseURL (#​6833) (f10c2e0)
Contributors to this release

1.8.3 (2025-03-10)

Bug Fixes
  • add missing type for allowAbsoluteUrls (#​6818) (10fa70e)
  • xhr/fetch: pass allowAbsoluteUrls to buildFullPath in xhr and fetch adapters (#​6814) (ec159e5)
Contributors to this release

1.8.2 (2025-03-07)

Bug Fixes

Configuration

📅 Schedule: Branch creation - On day 1 of the month ( * * 1 * * ) (UTC), Automerge - At 12:00 AM through 04:59 AM and 10:00 PM through 11:59 PM, Monday through Friday ( * 0-4,22-23 * * 1-5 ), Only on Sunday and Saturday ( * * * * 0,6 ) (UTC).

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

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Feb 14, 2024
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 2 times, most recently from 3190ba1 to 8e1df86 Compare February 17, 2024 22:35
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 8e1df86 to f7c0c41 Compare February 27, 2024 01:51
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 4 times, most recently from a54c6a7 to aa078f6 Compare March 20, 2024 17:13
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 6 times, most recently from 582a403 to f816896 Compare March 28, 2024 18:42
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 3 times, most recently from 3774ea0 to 4af1d35 Compare April 3, 2024 17:25
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 2 times, most recently from 6af1080 to 476b3e7 Compare April 16, 2024 09:34
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 3 times, most recently from eb19857 to 21e69f9 Compare April 23, 2024 21:46
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 2 times, most recently from af67e4b to c3fdb40 Compare May 8, 2024 15:33
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 3 times, most recently from 3503a8b to d5036d4 Compare May 28, 2024 14:43
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 3 times, most recently from 4445258 to f00d79d Compare June 5, 2024 09:19
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 3 times, most recently from da2c603 to 3baece8 Compare July 23, 2025 15:53
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 3baece8 to f0be8fd Compare July 29, 2025 13:54
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 2 times, most recently from 7fe87ee to 11eb145 Compare August 10, 2025 15:45
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 3 times, most recently from 54552ef to 3ac7434 Compare August 19, 2025 20:05
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 2 times, most recently from 7db7287 to 65f568b Compare August 31, 2025 12:01
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 3 times, most recently from 6f0d5e6 to 9349f92 Compare September 14, 2025 14:25
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 2 times, most recently from 4a5dd53 to d4d5121 Compare September 29, 2025 11:44
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from d4d5121 to 783a2a4 Compare October 8, 2025 19:33
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 2 times, most recently from c10353f to 9fd57d5 Compare October 27, 2025 20:48
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 2 times, most recently from dcff7d5 to c4a0a15 Compare November 5, 2025 00:45
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from c4a0a15 to 2e336ed Compare November 10, 2025 22:37
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 2e336ed to c265c1d Compare November 18, 2025 23:47
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 5 times, most recently from ae2e5b2 to 613b889 Compare December 3, 2025 16:43
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 613b889 to ba23109 Compare December 8, 2025 16:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant