Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Oct 9, 2021

This PR contains the following updates:

Package Change Age Confidence Type Update
@types/node (source) ^17.0.9 -> ^22.0.0 age confidence devDependencies major
@vitejs/plugin-react (source) ^1.1.4 -> ^4.0.0 age confidence devDependencies major
actions/checkout v2.4.0 -> v4.2.2 age confidence action major
actions/setup-node v2.5.1 -> v4.4.0 age confidence action major
eslint-config-prettier ^8.3.0 -> ^10.0.0 age confidence devDependencies major
eslint-plugin-jest ^25.7.0 -> ^29.0.0 age confidence devDependencies major
husky ^7.0.4 -> ^9.0.0 age confidence devDependencies major
lint-staged ^12.1.7 -> ^16.0.0 age confidence devDependencies major
node (source) 14 -> 22 age confidence major
prettier (source) ^2.5.1 -> ^3.0.0 age confidence devDependencies major
rimraf ^3.0.2 -> ^6.0.0 age confidence devDependencies major
typescript (source) ^4.5.4 -> ^5.0.0 age confidence devDependencies major
vite (source) ^2.7.12 -> ^7.0.0 age confidence devDependencies major

Release Notes

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: false 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.

v4.2.1

Compare Source

Remove generic parameter on Plugin to avoid type error with Rollup 4/Vite 5 and skipLibCheck: false.

I expect very few people to currently use this feature, but if you are extending the React plugin via api object, you can get back the typing of the hook by importing ViteReactPluginApi:

import type { Plugin } from 'vite'
import type { ViteReactPluginApi } from '@&#8203;vitejs/plugin-react'

export const somePlugin: Plugin = {
  name: 'some-plugin',
  api: {
    reactBabel: (babelConfig) => {
      babelConfig.plugins.push('some-babel-plugin')
    },
  } satisfies ViteReactPluginApi,
}

v4.2.0

Compare Source

Update peer dependency range to target Vite 5

There were no breaking change that impacted this plugin, so any combination of React plugins and Vite core version will work.

Align jsx runtime for optimized dependencies

This will only affect people using internal libraries that contains untranspiled JSX. This change aligns the optimizer with the source code and avoid issues when the published source don't have React in the scope.

Reminder: While being partially supported in Vite, publishing TS & JSX outside of internal libraries is highly discouraged.

v4.1.1

Compare Source

  • Enable retainLines to get correct line numbers for jsxDev (fix #​235)

v4.1.0

Compare Source

  • Add @types/babel__cores to dependencies (fix #​211)
  • Improve build perf when not using Babel plugins by lazy loading @babel/core #​212
  • Better invalidation message when an export is added & fix HMR for export of nullish values #​215
  • Include non-dev jsx runtime in optimizeDeps & support HMR for JS files using the non dev runtime #​224
  • The build output now contains a index.d.cts file so you don't get types errors when setting moduleResolution to node16 or nodenext in your tsconfig (we recommend using bundler which is more close to how Vite works)

v4.0.4

Compare Source

  • Fix #​198: Enable Babel if presets list is not empty

v4.0.3

Compare Source

  • Revert #​108: Remove throw when refresh runtime is loaded twice to enable usage in micro frontend apps. This was added to help fix setup usage, and this is not worth an annoying warning for others or a config parameter.

v4.0.2

Compare Source

  • Fix fast-refresh for files that are transformed into jsx (#​188)

v4.0.1

Compare Source

v4.0.0

Compare Source

This major version include a revamp of options:

  • include/exclude now allow to completely override the files processed by the plugin (#​122). This is more in line with other Rollup/Vite plugins and simplify the setup of enabling Fast Refresh for .mdx files. This can be done like this:
export default defineConfig({
  plugins: [
    { enforce: 'pre', ...mdx() },
    react({ include: /\.(mdx|js|jsx|ts|tsx)$/ }),
  ],
})

These changes also allow to apply Babel plugins on files outside Vite root (expect in node_modules), which improve support for monorepo (fix #​16).

With these changes, only the file extensions is used for filtering processed files and the query param fallback is removed.

  • fastRefresh is removed (#​122). This should be correctly activated by plugin without configuration.
  • jsxPure is removed. This is a niche use case that was just passing down the boolean to esbuild.jsxSideEffects. (#​129)

The support for React auto import whe using classic runtime is removed. This was prone to errors and added complexity for no good reason given the very wide support of automatic runtime nowadays. This migration path should be as simple as removing the runtime option from the config.

This release goes in hand with the upcoming Vite 4.3 release focusing on performances:

  • Cache plugin load (#​141)
  • Wrap dynamic import to speedup analysis (#​143)

Other notable changes:

  • Silence "use client" warning (#​144, fix #​137)
  • Fast Refresh is applied on JS files using automatic runtime (#​122, fix #​83)
  • Vite 4.2 is required as a peer dependency (#​128)
  • Avoid key collision in React refresh registration (a74dfef, fix #​116)
  • Throw when refresh runtime is loaded twice (#​108, fix #​101)
  • Don't force optimization of jsx-runtime (#​132)

v3.1.0

Compare Source

  • doc: add jsxImportSource option (38d71f6)
  • chore: bump release-scripts, typecheck package in CI, remove cache for eslint (9af763d)
  • fix: fast-refresh explain link (#​97) (6097795), closes #​97

v3.0.1

Compare Source

v3.0.0

Compare Source

v2.2.0

Compare Source

v2.1.0

Compare Source

v2.0.1

Compare Source

v2.0.0

Compare Source

v1.3.2

Compare Source

v1.3.1

Compare Source

v1.3.0

v1.2.0

Features
  • plugin-react: ensure overrides array exists before api.reactBabel hooks are called (#​6750) (104bdb5)

1.1.4 (2022-01-04)

Bug Fixes
Features
  • plugin-react: check for api.reactBabel on other plugins (#​5454) (2ab41b3)

1.1.3 (2021-12-13)

Bug Fixes

1.1.2 (2021-12-13)

Bug Fixes

1.1.1 (2021-12-07)

actions/checkout (actions/checkout)

v4.2.2

Compare Source

v4.2.1

Compare Source

v4.2.0

Compare Source

v4.1.7

Compare Source

v4.1.6

Compare Source

v4.1.5

Compare Source

v4.1.4

Compare Source

v4.1.3

Compare Source

v4.1.2

Compare Source

v4.1.1

Compare Source

v4.1.0

Compare Source

v4.0.0

Compare Source

v3.6.0

Compare Source

v3.5.3

Compare Source

v3.5.2

Compare Source

v3.5.1

Compare Source

v3.5.0

Compare Source

v3.4.0

Compare Source

v3.3.0

Compare Source

v3.2.0

Compare Source

v3.1.0

Compare Source

v3.0.2

Compare Source

v3.0.1

Compare Source

v3.0.0

Compare Source

v2.7.0

Compare Source

What's Changed

Full Changelog: actions/checkout@v2.6.0...v2.7.0

v2.6.0

Compare Source

What's Changed

Full Changelog: actions/checkout@v2.5.0...v2.6.0

v2.5.0

Compare Source

What's Changed

Full Changelog: actions/checkout@v2...v2.5.0

v2.4.2

Compare Source

What's Changed

Full Changelog: actions/checkout@v2...v2.4.2

v2.4.1

Compare Source

  • Fixed an issue where checkout failed to run in container jobs due to the new git setting safe.directory
actions/setup-node (actions/setup-node)

v4.4.0

Compare Source

What's Changed
Bug fixes:
Enhancement:
Dependency update:
New Contributors

Full Changelogactions/setup-node@v4...v4.4.0

v4.3.0

Compare Source

What's Changed
Dependency updates
Ne

Configuration

📅 Schedule: Branch creation - "every weekend" in timezone Europe/Berlin, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, 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 force-pushed the renovate/major-all branch from e8fde91 to 0714324 Compare October 10, 2021 10:33
@renovate renovate bot changed the title chore(deps): update dependency eslint to v8 chore(deps): update all (major) Oct 10, 2021
@renovate renovate bot force-pushed the renovate/major-all branch from 0714324 to 86294a7 Compare October 26, 2021 01:30
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from 6828c5c to 886c3fd Compare November 6, 2021 22:40
@renovate renovate bot changed the title chore(deps): update all (major) chore(deps): update node.js to v16 Nov 6, 2021
@renovate renovate bot force-pushed the renovate/major-all branch 3 times, most recently from c61a8bf to a6edf66 Compare November 13, 2021 18:57
@renovate renovate bot changed the title chore(deps): update node.js to v16 chore(deps): update all (major) Nov 13, 2021
@renovate renovate bot force-pushed the renovate/major-all branch from a6edf66 to 6742524 Compare January 18, 2022 13:07
@renovate renovate bot changed the title chore(deps): update all (major) chore(deps): update node.js to v16 Jan 18, 2022
@renovate renovate bot force-pushed the renovate/major-all branch 3 times, most recently from e6fc647 to fc16bf4 Compare January 24, 2022 14:34
@renovate renovate bot changed the title chore(deps): update node.js to v16 chore(deps): update all (major) Jan 24, 2022
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from d3ed837 to ea65adb Compare March 1, 2022 19:11
@renovate renovate bot force-pushed the renovate/major-all branch from ea65adb to c3f78bc Compare April 24, 2022 21:39
@renovate renovate bot force-pushed the renovate/major-all branch from c3f78bc to b0bdd9a Compare May 16, 2022 02:07
@renovate renovate bot force-pushed the renovate/major-all branch from b0bdd9a to 26e24e8 Compare June 18, 2022 19:04
@renovate renovate bot force-pushed the renovate/major-all branch from 26e24e8 to bd3226b Compare September 25, 2022 12:32
@renovate renovate bot force-pushed the renovate/major-all branch from bd3226b to 26de233 Compare November 20, 2022 10:12
@renovate renovate bot force-pushed the renovate/major-all branch from 26de233 to 7ed70e7 Compare March 16, 2023 17:52
@renovate renovate bot force-pushed the renovate/major-all branch from 7ed70e7 to edd0c14 Compare March 24, 2023 22:36
@renovate renovate bot force-pushed the renovate/major-all branch from edd0c14 to 1c1ef81 Compare April 17, 2023 11:58
@renovate renovate bot force-pushed the renovate/major-all branch from 1c1ef81 to 48f3dc5 Compare May 28, 2023 12:00
@renovate renovate bot force-pushed the renovate/major-all branch from 48f3dc5 to 834ab2f Compare June 9, 2023 17:05
@renovate renovate bot force-pushed the renovate/major-all branch from 834ab2f to d6cae43 Compare July 5, 2023 15:16
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from 8a2af30 to 475c6bd Compare April 10, 2024 19:40
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from d788b45 to 9cca43d Compare April 25, 2024 16:29
@renovate renovate bot force-pushed the renovate/major-all branch from 9cca43d to 9f6a6c5 Compare May 8, 2024 22:35
@renovate renovate bot force-pushed the renovate/major-all branch from 9f6a6c5 to f61d8dc Compare May 17, 2024 01:11
@renovate renovate bot force-pushed the renovate/major-all branch from f61d8dc to 03f8842 Compare June 12, 2024 19:57
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from bbed72b to 4489fde Compare July 9, 2024 15:24
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from cbb2cb0 to 315f35d Compare September 25, 2024 18:38
@renovate renovate bot force-pushed the renovate/major-all branch from 315f35d to 3384428 Compare October 7, 2024 17:03
@renovate renovate bot force-pushed the renovate/major-all branch 4 times, most recently from c3508aa to 30d4862 Compare October 29, 2024 17:53
@renovate renovate bot force-pushed the renovate/major-all branch from 30d4862 to f384790 Compare November 26, 2024 11:20
@renovate renovate bot force-pushed the renovate/major-all branch from f384790 to 5d3ce7e Compare January 13, 2025 14:50
@renovate renovate bot force-pushed the renovate/major-all branch from 5d3ce7e to c3f8821 Compare January 27, 2025 06:41
@renovate renovate bot force-pushed the renovate/major-all branch from c3f8821 to dbd2de0 Compare March 17, 2025 05:09
@renovate renovate bot force-pushed the renovate/major-all branch from dbd2de0 to 409105f Compare April 14, 2025 04:43
@renovate renovate bot force-pushed the renovate/major-all branch from 409105f to 7275c44 Compare May 10, 2025 20:59
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from 9418801 to 3bc1c54 Compare June 24, 2025 09:38
@renovate renovate bot force-pushed the renovate/major-all branch 3 times, most recently from 8fbf492 to 9f37bc4 Compare July 29, 2025 21:43
@renovate renovate bot force-pushed the renovate/major-all branch from 9f37bc4 to 43c8118 Compare July 31, 2025 20:08
@renovate renovate bot force-pushed the renovate/major-all branch from 43c8118 to 41c4e03 Compare August 3, 2025 19:31
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.

2 participants