Skip to content

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Feb 24, 2025

Note

Mend has cancelled the proposed renaming of the Renovate GitHub app being renamed to mend[bot].

This notice will be removed on 2025-10-07.


This PR contains the following updates:

Package Change Age Confidence
@emotion/react (source) ^11.11.1 -> ^11.14.0 age confidence
@fortawesome/react-fontawesome ^0.2.0 -> ^0.2.6 age confidence
@types/react (source) ^18.2.15 -> ^18.3.25 age confidence
@types/react-dom (source) ^18.2.7 -> ^18.3.7 age confidence
@vitejs/plugin-react (source) ^4.0.3 -> ^4.7.0 age confidence
react (source) ^18.2.0 -> ^18.3.1 age confidence
react-bootstrap (source) ^2.9.1 -> ^2.10.10 age confidence
react-dom (source) ^18.2.0 -> ^18.3.1 age confidence
react-markdown ^9.0.1 -> ^9.1.0 age confidence
react-router-dom (source) ^6.21.3 -> ^6.30.1 age confidence

Release Notes

emotion-js/emotion (@​emotion/react)

v11.14.0

Compare Source

Minor Changes
  • #​3281 fc4d7bd Thanks @​Andarist! - Source code has been migrated to TypeScript. From now on type declarations will be emitted based on that, instead of being hand-written.
Patch Changes

v11.13.5

Compare Source

Patch Changes
  • #​3270 77d930d Thanks @​emmatown! - Fix inconsistent hashes using development vs production bundles/exports conditions when using @emotion/babel-plugin with sourceMap: true (the default). This is particularly visible when using Emotion with the Next.js Pages router where the development condition is used when bundling code but not when importing external code with Node.js.

  • Updated dependencies [77d930d]:

v11.13.3

Compare Source

Patch Changes

v11.13.0

Compare Source

Minor Changes
  • #​3198 d8ff8a5 Thanks @​Andarist! - Migrated away from relying on process.env.NODE_ENV checks to differentiate between production and development builds.

    Development builds (and other environment-specific builds) can be used by using proper conditions (see here). Most modern bundlers/frameworks already preconfigure those for the user so no action has to be taken.

    Default files should continue to work in all environments.

  • #​3215 a9f6912 Thanks @​Andarist! - Added edge-light and workerd conditions to package.json manifest to better serve users using Vercel Edge and Cloudflare Workers.

Patch Changes

v11.12.0

Compare Source

Minor Changes
  • #​2558 85772c3 Thanks @​emmatown! - Source code has been migrated to TypeScript. From now on type declarations will be emitted based on that, instead of being hand-written.
Patch Changes

v11.11.4

Compare Source

Patch Changes
  • #​3159 5b82631d Thanks @​iegik! - Renamed an internal hasOwnProperty to hasOwn. This avoids problems in CommonJS environments when the consumer tries to prevent prototype pollution with Object.freeze(Object.prototype).

v11.11.3

Compare Source

Patch Changes
FortAwesome/react-fontawesome (@​fortawesome/react-fontawesome)

v0.2.6

Compare Source

Fixed

  • check for existence of process before reading process.env (#​585)

Full Changelog: FortAwesome/react-fontawesome@0.2.5...0.2.6

v0.2.5

Compare Source

What's Changed

New Contributors

Full Changelog: FortAwesome/react-fontawesome@0.2.4...0.2.5

v0.2.3

Compare Source

Changed
  • Font Awesome Pro+ icons are now available with an active Pro+ subscription.

  • Removed example directory and files

  • Deprecated fa-fw prop

Added
  • Added widthAuto prop

  • Added rotateBy prop

v0.2.2

Compare Source

Fixed
  • Props with nullable/undefined values no longer throw an error #​562 #​560

v0.2.1

Compare Source

Changed
  • Remove defaultProps to be compatible with React 19
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.

facebook/react (react)

v18.3.1

Compare Source

  • Export act from react f1338f

v18.3.0

Compare Source

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React
  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #​25383
  • Warn for deprecated defaultProps for function components #​25699
  • Warn when spreading key #​25697
  • Warn when using act from test-utils d4ea75
React DOM
  • Warn for deprecated unmountComponentAtNode 8a015b
  • Warn for deprecated renderToStaticNodeStream #​28874
react-bootstrap/react-bootstrap (react-bootstrap)

v2.10.10

Compare Source

Bug Fixes

v2.10.9

Compare Source

BREAKING CHANGES
  • Switch from classnames to clsx
  • Offcanvas will always be rendered inline in the DOM and not at the body using a portal
  • Remove prop-types
  • Extract the useCol and useAccordionButton from Col.tsx and AccordionButton.tsx so the CJS default export is consistent with other components
  • Support only React 18+. Updates internal code for React 19 and remove deprecated methods.
  • Add package.json exports map and remove proxy directories. Removes SSR utilities.

2.10.9 (2025-01-30)

Bug Fixes

2.10.8 (2025-01-21)

Bug Fixes

2.10.7 (2024-12-15)

Bug Fixes

2.10.6 (2024-11-25)

Bug Fixes

2.10.5 (2024-09-26)

Bug Fixes

2.10.4 (2024-06-30)

Bug Fixes

2.10.3 (2024-06-19)

Bug Fixes

2.10.2 (2024-03-18)

Bug Fixes

2.10.1 (2024-02-10)

Bug Fixes

v2.10.8

Compare Source

BREAKING CHANGES
  • Switch from classnames to clsx
  • Offcanvas will always be rendered inline in the DOM and not at the body using a portal
  • Remove prop-types
  • Extract the useCol and useAccordionButton from Col.tsx and AccordionButton.tsx so the CJS default export is consistent with other components
  • Support only React 18+. Updates internal code for React 19 and remove deprecated methods.
  • Add package.json exports map and remove proxy directories. Removes SSR utilities.

2.10.9 (2025-01-30)

Bug Fixes

2.10.8 (2025-01-21)

Bug Fixes

2.10.7 (2024-12-15)

Bug Fixes

2.10.6 (2024-11-25)

Bug Fixes

2.10.5 (2024-09-26)

Bug Fixes

2.10.4 (2024-06-30)

Bug Fixes

2.10.3 (2024-06-19)

Bug Fixes

2.10.2 (2024-03-18)

Bug Fixes

2.10.1 (2024-02-10)

Bug Fixes

v2.10.7

Compare Source

BREAKING CHANGES
  • Switch from classnames to clsx
  • Offcanvas will always be rendered inline in the DOM and not at the body using a portal
  • Remove prop-types
  • Extract the useCol and useAccordionButton from Col.tsx and AccordionButton.tsx so the CJS default export is consistent with other components
  • Support only React 18+. Updates internal code for React 19 and remove deprecated methods.
  • Add package.json exports map and remove proxy directories. Removes SSR utilities.

2.10.9 (2025-01-30)

Bug Fixes

2.10.8 (2025-01-21)

Bug Fixes

2.10.7 (2024-12-15)

Bug Fixes

2.10.6 (2024-11-25)

Bug Fixes

2.10.5 (2024-09-26)

Bug Fixes

2.10.4 (2024-06-30)

Bug Fixes

2.10.3 (2024-06-19)

Bug Fixes

2.10.2 (2024-03-18)

Bug Fixes

2.10.1 (2024-02-10)

Bug Fixes

v2.10.6

Compare Source

BREAKING CHANGES
  • Switch from classnames to clsx
  • Offcanvas will always be rendered inline in the DOM and not at the body using a portal
  • Remove prop-types
  • Extract the useCol and useAccordionButton from Col.tsx and AccordionButton.tsx so the CJS default export is consistent with other components
  • Support only React 18+. Updates internal code for React 19 and remove deprecated methods.
  • Add package.json exports map and remove proxy directories. Removes SSR utilities.

[2.10.9](https://redirect.github.


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

Copy link

netlify bot commented Feb 24, 2025

Deploy Preview for oasisprotocol-playground ready!

Name Link
🔨 Latest commit 55c5c56
🔍 Latest deploy log https://app.netlify.com/projects/oasisprotocol-playground/deploys/68dd7bc1071f4e000896c5fd
😎 Deploy Preview https://deploy-preview-108--oasisprotocol-playground.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@renovate renovate bot force-pushed the renovate/react-dependencies branch from cb9020b to 00d4ae0 Compare February 27, 2025 19:54
@renovate renovate bot force-pushed the renovate/react-dependencies branch 3 times, most recently from 6299572 to 01bbd81 Compare March 25, 2025 14:06
@renovate renovate bot force-pushed the renovate/react-dependencies branch from 01bbd81 to 5e920c0 Compare April 4, 2025 08:04
@renovate renovate bot force-pushed the renovate/react-dependencies branch 2 times, most recently from 978139e to 7cbb12b Compare April 20, 2025 23:26
@renovate renovate bot force-pushed the renovate/react-dependencies branch from 7cbb12b to a2abe77 Compare May 1, 2025 03:55
@renovate renovate bot force-pushed the renovate/react-dependencies branch from a2abe77 to aead7e0 Compare May 10, 2025 03:47
@renovate renovate bot force-pushed the renovate/react-dependencies branch 3 times, most recently from d95a260 to 41b73ec Compare May 23, 2025 16:04
@renovate renovate bot force-pushed the renovate/react-dependencies branch from 41b73ec to e6ecd4d Compare May 27, 2025 14:56
@renovate renovate bot force-pushed the renovate/react-dependencies branch from e6ecd4d to 7914fb6 Compare June 3, 2025 20:14
@renovate renovate bot force-pushed the renovate/react-dependencies branch from 7914fb6 to 920e49e Compare June 14, 2025 12:13
@renovate renovate bot force-pushed the renovate/react-dependencies branch from 920e49e to b61f03c Compare June 28, 2025 18:32
@renovate renovate bot changed the title fix(deps): update react dependencies Update react dependencies Jul 2, 2025
@renovate renovate bot force-pushed the renovate/react-dependencies branch from b61f03c to f5ad800 Compare July 18, 2025 19:01
@renovate renovate bot force-pushed the renovate/react-dependencies branch from f5ad800 to 146eae6 Compare July 27, 2025 16:08
@renovate renovate bot force-pushed the renovate/react-dependencies branch 2 times, most recently from 7dbb1cf to 73f9651 Compare August 14, 2025 16:01
@renovate renovate bot force-pushed the renovate/react-dependencies branch 2 times, most recently from bc63286 to 82605c7 Compare August 24, 2025 03:59
@renovate renovate bot force-pushed the renovate/react-dependencies branch from 82605c7 to 96854f1 Compare September 1, 2025 10:55
@renovate renovate bot force-pushed the renovate/react-dependencies branch from 96854f1 to 8876ac3 Compare September 27, 2025 02:53
@renovate renovate bot force-pushed the renovate/react-dependencies branch from 8876ac3 to 55c5c56 Compare October 1, 2025 19:06
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.

0 participants