Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 15, 2025

Bumps the react-ecosystem group with 3 updates in the / directory: react, react-dom and react-grid-layout.

Updates react from 19.2.1 to 19.2.3

Release notes

Sourced from react's releases.

19.2.3 (December 11th, 2025)

React Server Components

19.2.2 (December 11th, 2025)

React Server Components

Commits

Updates react-dom from 19.2.1 to 19.2.3

Release notes

Sourced from react-dom's releases.

19.2.3 (December 11th, 2025)

React Server Components

19.2.2 (December 11th, 2025)

React Server Components

Commits

Updates react-grid-layout from 1.5.2 to 2.1.0

Release notes

Sourced from react-grid-layout's releases.

2.1.0

React-Grid-Layout v2.1.0

This release adds powerful new features for large-scale layouts and custom constraints, along with several bug fixes.

✨ New Features

Pluggable Layout Constraints System

A new constraints system allows custom validation and transformation of layout items during drag and resize operations. Build aspect ratio locks, snap-to-grid, boundary restrictions, and more. #2190

import { 
  createConstraintEnforcer, 
  aspectRatioConstraint, 
  positionConstraint,
  sizeConstraint 
} from "react-grid-layout/core";
const enforcer = createConstraintEnforcer([
aspectRatioConstraint(16 / 9),        // Lock to 16:9 ratio
positionConstraint({ minX: 0, maxX: 10 }),  // Restrict X position
sizeConstraint({ minW: 2, maxH: 4 })  // Limit dimensions
]);
<GridLayout constraintEnforcer={enforcer} />

Fast Compactors for Large Layouts

New O(n log n) compactors in react-grid-layout/extras dramatically improve performance for dashboards with 200+ widgets:

Items Standard Fast Speedup
50 112 µs 19 µs 6x
200 821 µs 51 µs 16x
500 5.7 ms 129 µs 45x
import { fastVerticalCompactor, fastHorizontalCompactor } from "react-grid-layout/extras";
<GridLayout compactor={fastVerticalCompactor} />

Wrap Compactor

New wrapCompactor for paragraph-style layouts where items flow left-to-right and wrap to the next row, similar to CSS flexbox. #2186

... (truncated)

Changelog

Sourced from react-grid-layout's changelog.

2.1.0 (Dec 14, 2025)

New Features

Pluggable Layout Constraints System

A new constraints system allows custom validation and transformation of layout items during drag and resize operations. #2190

import { createConstraintEnforcer, aspectRatioConstraint, positionConstraint } from "react-grid-layout/core";
const enforcer = createConstraintEnforcer([
aspectRatioConstraint(16 / 9),
positionConstraint({ minX: 0, maxX: 10 })
]);
<GridLayout constraintEnforcer={enforcer} />

Fast Compactors for Large Layouts

New O(n log n) compactors in react-grid-layout/extras for layouts with 200+ items:

  • fastVerticalCompactor - Up to 45x faster than standard vertical compaction. #2184
  • fastHorizontalCompactor - Up to 74x faster than standard horizontal compaction. #2189, #2193
import { fastVerticalCompactor, fastHorizontalCompactor } from "react-grid-layout/extras";
<GridLayout compactor={fastVerticalCompactor} />

Wrap Compactor

New wrapCompactor for paragraph-style layouts where items flow left-to-right and wrap to the next row. #2186

import { wrapCompactor } from "react-grid-layout/extras";
<GridLayout compactor={wrapCompactor} />

Improved Examples

  • Added navigable sidebar to examples for easier exploration
  • New grid matrix panel for visualizing layout state. #2197

Bug Fixes

  • WidthProvider: Re-observe element after measureBeforeMount switches from placeholder. #2198

... (truncated)

Commits
  • d53a108 release 2.1.0
  • 6b78db9 chore(ci): improve changelog action for better release notes (#2199)
  • 2bca3ad fix(WidthProvider): re-observe element after measureBeforeMount switches from...
  • 507b33b feat(examples): add navigable sidebar and improve grid matrix panel (#2197)
  • c1b8c02 feat(core): add pluggable layout constraints system (#2190)
  • f584c4d fix: center dropped items on cursor position (#2196)
  • 618a763 fix(calculate): ensure consistent margins between grid items (#2195)
  • a7e38c1 fix(compaction): disable early break optimization when static items present (...
  • 14960f3 fix(extras): improve fast horizontal compactor collision handling (#2193)
  • 3109ed6 feat(extras): add fast horizontal compactor with O(n log n) performance (#2189)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…updates

Bumps the react-ecosystem group with 3 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) and [react-grid-layout](https://github.com/STRML/react-grid-layout).


Updates `react` from 19.2.1 to 19.2.3
- [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.3/packages/react)

Updates `react-dom` from 19.2.1 to 19.2.3
- [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.3/packages/react-dom)

Updates `react-grid-layout` from 1.5.2 to 2.1.0
- [Release notes](https://github.com/STRML/react-grid-layout/releases)
- [Changelog](https://github.com/react-grid-layout/react-grid-layout/blob/master/CHANGELOG.md)
- [Commits](react-grid-layout/react-grid-layout@1.5.2...2.1.0)

---
updated-dependencies:
- dependency-name: react
  dependency-version: 19.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: react-ecosystem
- dependency-name: react-dom
  dependency-version: 19.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: react-ecosystem
- dependency-name: react-grid-layout
  dependency-version: 2.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: react-ecosystem
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 15, 2025

Labels

The following labels could not be found: dependencies, npm. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

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.

1 participant