Skip to content

build(deps): bump the react group across 1 directory with 4 updates#3590

Closed
dependabot[bot] wants to merge 1 commit into
trunkfrom
dependabot/npm_and_yarn/react-957cd16a7a
Closed

build(deps): bump the react group across 1 directory with 4 updates#3590
dependabot[bot] wants to merge 1 commit into
trunkfrom
dependabot/npm_and_yarn/react-957cd16a7a

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 22, 2026

Bumps the react group with 4 updates in the / directory: react, react-dom, react-colorful and react-day-picker.

Updates react from 18.3.1 to 19.2.6

Release notes

Sourced from react's releases.

19.2.6 (May 6th, 2026)

React Server Components

19.2.5 (April 8th, 2026)

React Server Components

19.2.4 (January 26th, 2026)

React Server Components

19.2.3 (December 11th, 2025)

React Server Components

19.2.2 (December 11th, 2025)

React Server Components

19.2.1 (December 3rd, 2025)

React Server Components

19.2.0 (Oct 1, 2025)

Below is a list of all new features, APIs, and bug fixes.

Read the React 19.2 release post for more information.

New React Features

  • <Activity>: A new API to hide and restore the UI and internal state of its children.
  • useEffectEvent is a React Hook that lets you extract non-reactive logic into an Effect Event.
  • cacheSignal (for RSCs) lets your know when the cache() lifetime is over.
  • React Performance tracks appear on the Performance panel’s timeline in your browser developer tools

New React DOM Features

  • Added resume APIs for partial pre-rendering with Web Streams:
  • Added resume APIs for partial pre-rendering with Node Streams:

... (truncated)

Changelog

Sourced from react's changelog.

19.2.1 (Dec 3, 2025)

React Server Components

19.2.0 (October 1st, 2025)

Below is a list of all new features, APIs, and bug fixes.

Read the React 19.2 release post for more information.

New React Features

  • <Activity>: A new API to hide and restore the UI and internal state of its children.
  • useEffectEvent is a React Hook that lets you extract non-reactive logic into an Effect Event.
  • cacheSignal (for RSCs) lets your know when the cache() lifetime is over.
  • React Performance tracks appear on the Performance panel’s timeline in your browser developer tools

New React DOM Features

  • Added resume APIs for partial pre-rendering with Web Streams:
  • Added resume APIs for partial pre-rendering with Node Streams:
  • Updated prerender APIs to return a postponed state that can be passed to the resume APIs.

Notable changes

  • React DOM now batches suspense boundary reveals, matching the behavior of client side rendering. This change is especially noticeable when animating the reveal of Suspense boundaries e.g. with the upcoming <ViewTransition> Component. React will batch as much reveals as possible before the first paint while trying to hit popular first-contentful paint metrics.
  • Add Node Web Streams (prerender, renderToReadableStream) to server-side-rendering APIs for Node.js
  • Use underscore instead of : IDs generated by useId

All Changes

React

... (truncated)

Commits

Updates react-dom from 18.3.1 to 19.2.6

Release notes

Sourced from react-dom's releases.

19.2.6 (May 6th, 2026)

React Server Components

19.2.5 (April 8th, 2026)

React Server Components

19.2.4 (January 26th, 2026)

React Server Components

19.2.3 (December 11th, 2025)

React Server Components

19.2.2 (December 11th, 2025)

React Server Components

19.2.1 (December 3rd, 2025)

React Server Components

19.2.0 (Oct 1, 2025)

Below is a list of all new features, APIs, and bug fixes.

Read the React 19.2 release post for more information.

New React Features

  • <Activity>: A new API to hide and restore the UI and internal state of its children.
  • useEffectEvent is a React Hook that lets you extract non-reactive logic into an Effect Event.
  • cacheSignal (for RSCs) lets your know when the cache() lifetime is over.
  • React Performance tracks appear on the Performance panel’s timeline in your browser developer tools

New React DOM Features

  • Added resume APIs for partial pre-rendering with Web Streams:
  • Added resume APIs for partial pre-rendering with Node Streams:

... (truncated)

Changelog

Sourced from react-dom's changelog.

19.2.1 (Dec 3, 2025)

React Server Components

19.2.0 (October 1st, 2025)

Below is a list of all new features, APIs, and bug fixes.

Read the React 19.2 release post for more information.

New React Features

  • <Activity>: A new API to hide and restore the UI and internal state of its children.
  • useEffectEvent is a React Hook that lets you extract non-reactive logic into an Effect Event.
  • cacheSignal (for RSCs) lets your know when the cache() lifetime is over.
  • React Performance tracks appear on the Performance panel’s timeline in your browser developer tools

New React DOM Features

  • Added resume APIs for partial pre-rendering with Web Streams:
  • Added resume APIs for partial pre-rendering with Node Streams:
  • Updated prerender APIs to return a postponed state that can be passed to the resume APIs.

Notable changes

  • React DOM now batches suspense boundary reveals, matching the behavior of client side rendering. This change is especially noticeable when animating the reveal of Suspense boundaries e.g. with the upcoming <ViewTransition> Component. React will batch as much reveals as possible before the first paint while trying to hit popular first-contentful paint metrics.
  • Add Node Web Streams (prerender, renderToReadableStream) to server-side-rendering APIs for Node.js
  • Use underscore instead of : IDs generated by useId

All Changes

React

... (truncated)

Commits

Updates react-colorful from 5.6.1 to 5.7.0

Release notes

Sourced from react-colorful's releases.

v5.7.0 (onChangeEnd)

Added onChangeEnd callback that fires when the user finishes changing a color (on mouse up, touch end, or arrow key up). Useful for undo/redo, saving to a database, or other expensive operations. (via #230)

<HexColorPicker
  color={color}
  onChange={setColor}
  onChangeEnd={(color) => saveToDatabase(color)}
/>

v5.6.2 (React 19 support)

Fix React 19 TypeScript compatibility (via #229)

Commits

Updates react-day-picker from 9.8.1 to 9.14.0

Release notes

Sourced from react-day-picker's releases.

v9.14.0

This release introduces a new resetOnSelect prop and adds support for the Hijri calendar.

Resetting Selections in Range Mode

When in range selection mode, use the new resetOnSelect prop to start a new range when a full range is already selected.

Hijri Calendar

To use the Hijri (Umm al-Qura) calendar, import DayPicker from react-day-picker/hijri:

import { DayPicker } from "react-day-picker/hijri";
export function HijriCalendar() {
return <DayPicker />;
}

Read more in the documentation and play with it in playground.

What's Changed

New Contributors

Full Changelog: gpbl/react-day-picker@v9.13.2...v9.14.0

v9.13.2

What's Changed

New Contributors

Full Changelog: gpbl/react-day-picker@v9.13.1...v9.13.2

v9.13.1

Persian calendar improvements.

What's Changed

New Contributors

... (truncated)

Changelog

Sourced from react-day-picker's changelog.

v9.14.0

Release date: 2026-02-26

This release introduces a new resetOnSelect prop and adds support for the Hijri calendar.

Resetting Selections in Range Mode

When in range selection mode, use the resetOnSelect prop to start a new range when a full range is already selected.

Hijri Calendar

To use the Hijri (Umm al-Qura) calendar, import DayPicker from react-day-picker/hijri:

import { DayPicker } from "react-day-picker/hijri";
export function HijriCalendar() {
return <DayPicker />;
}

Read more in the documentation and play with it in playground.

What's Changed

  • feat: add Hijri calendar support (Umm al-Qura) by @​ws-rush in #2904
  • feat: add resetOnSelect prop to reset date range when selecting date with completed range by @​rodgobbi in #2906
  • feat: add default lang prop to DayPicker root element by @​gpbl in #2907

v9.13.2

Release date: 2026-02-10

This release fixes the style.css type declaration export and corrects labels for Northern Sami (se) and Japanese Hiragana (ja-Hira) locales.

What's Changed

  • fix(build): add correct type declaration for style.css export by @​NotNestor in #2897
  • fix(locale): correct Northern Sami (se) and Japanese Hiragana (ja-Hira) labels by @​gpbl in #2898

v9.13.0

Release date: 2025-12-18

This release introduces an experimental noonSafe prop to help deal with historical time zones with second offsets. See https://github.com/gpbl/react-day-picker/blob/main/packages/react-day-picker/localization/setting-time-zone#noonsafe for more details.

What's Changed

  • feat: add experimental noonSafe prop for timezone offsets by @​gpbl in #2879

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for react-day-picker since your current version.


@dependabot dependabot Bot added dependencies Pull requests that update a dependency file. javascript Pull requests that update javascript code. labels May 22, 2026
@github-actions
Copy link
Copy Markdown
Contributor

⚠️ This PR updates production dependencies and requires manual review before merging.

@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/react-957cd16a7a branch from 21c781f to 5ad45d0 Compare May 22, 2026 07:31
@github-actions
Copy link
Copy Markdown
Contributor

⚠️ This PR updates production dependencies and requires manual review before merging.

@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/react-957cd16a7a branch from 5ad45d0 to a9a2ee0 Compare May 28, 2026 17:31
@github-actions
Copy link
Copy Markdown
Contributor

⚠️ This PR updates production dependencies and requires manual review before merging.

@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/react-957cd16a7a branch from a9a2ee0 to 247ac66 Compare May 29, 2026 06:57
@github-actions
Copy link
Copy Markdown
Contributor

⚠️ This PR updates production dependencies and requires manual review before merging.

Bumps the react group with 4 updates in the / directory: [react](https://github.com/facebook/react/tree/HEAD/packages/react), [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom), [react-colorful](https://github.com/omgovich/react-colorful) and [react-day-picker](https://github.com/gpbl/react-day-picker/tree/HEAD/packages/react-day-picker).


Updates `react` from 18.3.1 to 19.2.6
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.6/packages/react)

Updates `react-dom` from 18.3.1 to 19.2.6
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.6/packages/react-dom)

Updates `react-colorful` from 5.6.1 to 5.7.0
- [Release notes](https://github.com/omgovich/react-colorful/releases)
- [Changelog](https://github.com/omgovich/react-colorful/blob/master/CHANGELOG.md)
- [Commits](https://github.com/omgovich/react-colorful/commits/5.7.0)

Updates `react-day-picker` from 9.8.1 to 9.14.0
- [Release notes](https://github.com/gpbl/react-day-picker/releases)
- [Changelog](https://github.com/gpbl/react-day-picker/blob/main/packages/react-day-picker/CHANGELOG.md)
- [Commits](https://github.com/gpbl/react-day-picker/commits/v9.14.0/packages/react-day-picker)

---
updated-dependencies:
- dependency-name: react
  dependency-version: 19.2.6
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: react
- dependency-name: react-colorful
  dependency-version: 5.7.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: react
- dependency-name: react-day-picker
  dependency-version: 9.14.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: react
- dependency-name: react-dom
  dependency-version: 19.2.6
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: react
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/react-957cd16a7a branch from 247ac66 to f084469 Compare May 29, 2026 07:34
@github-actions
Copy link
Copy Markdown
Contributor

⚠️ This PR updates production dependencies and requires manual review before merging.

wojtekn added a commit that referenced this pull request May 29, 2026
…sions (#3642)

## Related issues

Closes #3590
Closes #3637

## How AI was used in this PR

This PR was created with Claude Code. All changes were reviewed and
verified with passing typecheck and full test suite.

## Proposed Changes

This PR combines two Dependabot PRs (#3590 and #3637) that have a
circular dependency — the new `@wordpress/components@34`,
`@wordpress/element@7`, `@wordpress/compose@8`, and
`@wordpress/dataviews@15` all require React 19 as a peer dependency,
making them impossible to land independently.

**Package upgrades:**
- `react` / `react-dom`: 18.2.0 → 19.2.6
- `@types/react` / `@types/react-dom`: 18.x → 19.x
- `@wordpress/components`: 33.0.0 → 34.0.0
- `@wordpress/compose`: 7.36.0 → 8.0.0
- `@wordpress/element`: 6.39.0 → 7.0.0
- `@wordpress/dataviews`: 14.2.0 → 15.0.0
- `@wordpress/icons`: 13.1.0 → 13.2.0 (unpinned — the prior pin was a
pre-React 19 workaround)
- `@wordpress/i18n`, `@wordpress/react-i18n`, and several `apps/ui` WP
packages bumped
- `@rive-app/react-canvas`: 4.12.0 → 4.18.0 (adds React 19 peer dep
support)
- `date-fns`: ^3.3.1 → ^4.1.0 in `tools/common` and `apps/studio` —
required so `@wordpress/components@34`

**Patch file:**
- Renamed `@wordpress+components+33.0.0.patch` →
`@wordpress+components+34.0.0.patch`

**TypeScript fixes for React 19 breaking changes:**
- `useRef<T>()` → `useRef<T>(undefined)` (no-arg overload removed for
non-DOM refs)
- `ForwardRefRenderFunction` second param updated to
`React.ForwardedRef<T>`
- `RefObject<T | null>` propagated through prop types (React 19
`useRef(null)` is now nullable)
- Dropped `ref` from react-markdown `ExtraProps` spreads to avoid
v18/v19 `LegacyRef` mismatch
- `allowpopups="true"` → `allowpopups={true}` (boolean attribute)
- `Tooltip.Popup side` prop migrated to `positioner={<Tooltip.Positioner
side={...} />}` (@wordpress/ui 0.14 API change)
- `JSX.Element` → `ReactElement`, `JSX.IntrinsicElements` →
`React.ComponentPropsWithRef` (global JSX namespace removed in React 19)

## Testing Instructions

- `npm run typecheck` — passes clean
- `npm test` — 1941/1941 tests pass
- `npm start` — app starts locally and sites run normally

## Pre-merge Checklist

- [x] Have you checked for TypeScript, React or other console errors?
- [x] Unit tests pass (`npm test`)

---------

Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github May 29, 2026

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/react-957cd16a7a branch May 29, 2026 17:59
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. javascript Pull requests that update javascript code.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant