Skip to content

build(deps): Bump the production-dependencies group with 16 updates#4

Closed
dependabot[bot] wants to merge 2 commits intomainfrom
dependabot/npm_and_yarn/production-dependencies-b99b14c423
Closed

build(deps): Bump the production-dependencies group with 16 updates#4
dependabot[bot] wants to merge 2 commits intomainfrom
dependabot/npm_and_yarn/production-dependencies-b99b14c423

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Mar 3, 2026

Bumps the production-dependencies group with 16 updates:

Package From To
@react-spring/three 9.7.5 10.0.3
@react-three/drei 9.122.0 10.7.7
@react-three/fiber 8.18.0 9.5.0
@tiptap/extension-placeholder 3.19.0 3.20.0
@tiptap/pm 3.19.0 3.20.0
@tiptap/react 3.19.0 3.20.0
@tiptap/starter-kit 3.19.0 3.20.0
framer-motion 12.34.0 12.34.4
i18next 23.16.8 25.8.13
lucide-react 0.563.0 0.576.0
react 18.3.1 19.2.4
react-dom 18.3.1 19.2.4
react-i18next 14.1.3 16.5.4
react-router-dom 6.30.3 7.13.1
tailwind-merge 3.4.0 3.5.0
three 0.170.0 0.183.2

Updates @react-spring/three from 9.7.5 to 10.0.3

Release notes

Sourced from @​react-spring/three's releases.

v10.0.3

What's Changed

New Contributors

Full Changelog: pmndrs/react-spring@v10.0.2...v10.0.3

v10.0.2

What's Changed

New Contributors

Full Changelog: pmndrs/react-spring@v10.0.1...v10.0.2

v10.0.1

What's Changed

Full Changelog: pmndrs/react-spring@v10.0.0...v10.0.1

v10.0.0

What's Changed

New Contributors

Full Changelog: pmndrs/react-spring@v9.7.5...v10.0.0

Commits

Updates @react-three/drei from 9.122.0 to 10.7.7

Release notes

Sourced from @​react-three/drei's releases.

v10.7.7

10.7.7 (2025-11-13)

Bug Fixes

v10.7.6

10.7.6 (2025-09-11)

Bug Fixes

  • types: fix usage of ambient THREE namespace (#2517) (3b5d7dc)

v10.7.5

10.7.5 (2025-09-08)

Bug Fixes

v10.7.4

10.7.4 (2025-08-23)

Bug Fixes

v10.7.3

10.7.3 (2025-08-17)

Bug Fixes

v10.7.2

10.7.2 (2025-08-16)

Bug Fixes

v10.7.1

10.7.1 (2025-08-16)

... (truncated)

Commits

Updates @react-three/fiber from 8.18.0 to 9.5.0

Release notes

Sourced from @​react-three/fiber's releases.

v9.5.0

After a bit of research and development, R3F is now compatible with React 19.2, including the Activity feature!

Why did this take some effort, you might wonder? When React bumped to version 19.2.x, they also bumped the internal reconciler up a version which was not backwards compatible with 19.1.x. This put us in an awkward position of either making a breaking change in the middle of R3F v9, bump to another major just because of an internal detail from React or get creative. We chose to get creative and R3F is compatible with all versions of React between 19.0 and 19.2. The downside is we had to bundle the reconciler with R3F, but react-dom already does this so for now it is the best solution available.

Forcing breaking changes on libraries is likely not what the React teams intended so we will be working with them to try to avoid this in the future.

Happy coding.

What's Changed

Full Changelog: pmndrs/react-three-fiber@v9.4.2...v9.5.0

v9.4.2

What's Changed

New Contributors

Full Changelog: pmndrs/react-three-fiber@v9.4.1...v9.4.2

v9.4.1

What's Changed

Full Changelog: pmndrs/react-three-fiber@v9.4.0...v9.4.1

v9.4.0

What's Changed

New Contributors

Full Changelog: pmndrs/react-three-fiber@v9.3.0...v9.4.0

v9.3.0

With this release we have two big fixes.

  1. flushSync now works properly. To prove it we added an example that allows you to React props and then take a screenshot of the R3F canvas with the latest state. This is a pretty advanced use case, but one people might be interested to explore for exporting videos or images using R3F.
  2. React Native support has been fixed for 0.79 and newer when combined with the same update to Drei: pmndrs/drei#2494. A big thanks to @​thejustinwalsh for helping us with this one.

... (truncated)

Commits
  • f51e57e Merge pull request #3606 from pmndrs/feat/react-19-2-vendor-reconciler
  • 9f25968 chore(tests): test dev and prod reconciler bundles
  • 08caa0e chore: restrict peer dep range
  • 48201ea chore(tests): add 19.2 hook smoke test
  • a561419 chore: restore changeset
  • 2e356a3 chore: retry
  • a71f6aa experiment(CI): rollback changes (fail alternate job)
  • f67bb6b experiment(CI): add placeholder 19.2 test
  • a0180ff chore(CI): configure React testing matrix
  • d9b0d40 chore: unpin reconciler types
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by krispyaa, a new releaser for @​react-three/fiber since your current version.


Updates @tiptap/extension-placeholder from 3.19.0 to 3.20.0

Release notes

Sourced from @​tiptap/extension-placeholder's releases.

v3.20.0

@​tiptap/core

Minor Changes

  • Add transformPastedHTML extension API that allows extensions to transform pasted HTML content before it's parsed into the editor, enabling cleanup of styles, removal of dangerous content, and modification of pasted HTML through a chainable transform system.

Patch Changes

  • Fix checking if mark is active and toggling off marks when part of the selection does not allow the mark (e.g. a code block)
  • Global attributes now support shorthand string values for types: use '*' to apply to all nodes and marks, 'nodes' for all nodes (excluding text), or 'marks' for all marks.
  • Fixed a typo in the documentation of editor.view

@​tiptap/extension-drag-handle

Patch Changes

  • Fix drag handle not appearing for atom/leaf nodes like images in both nested and non-nested modes
  • Add table structure rules to prevent drag handle on table rows, cells, and headers, and fix ghost table rows when dragging tables
  • Fix drag position resolving outside the document when dragging an empty text node at the end of the document

@​tiptap/markdown

Patch Changes

  • Fixed getMarkdown() returning   instead of empty string when editor is empty

@​tiptap/extension-bubble-menu

Patch Changes

  • Fix BubbleMenu/FloatingMenu to use pluginKey as the transaction meta key so that multiple instances can be updated independently without affecting each other

@​tiptap/extension-floating-menu

Patch Changes

  • Fix BubbleMenu/FloatingMenu to use pluginKey as the transaction meta key so that multiple instances can be updated independently without affecting each other

@​tiptap/react

Minor Changes

  • Moved BubbleMenu and FloatingMenu to separate @tiptap/react/menus entrypoint to keep floating-ui optional
  • Simplified Tiptap component API with guaranteed non-null editor instance from useTiptap hook

Patch Changes

  • Fix BubbleMenu/FloatingMenu to use pluginKey as the transaction meta key so that multiple instances can be updated independently without affecting each other

... (truncated)

Changelog

Sourced from @​tiptap/extension-placeholder's changelog.

3.20.0

Patch Changes

  • @​tiptap/extensions@​3.20.0
Commits

Updates @tiptap/pm from 3.19.0 to 3.20.0

Release notes

Sourced from @​tiptap/pm's releases.

v3.20.0

@​tiptap/core

Minor Changes

  • Add transformPastedHTML extension API that allows extensions to transform pasted HTML content before it's parsed into the editor, enabling cleanup of styles, removal of dangerous content, and modification of pasted HTML through a chainable transform system.

Patch Changes

  • Fix checking if mark is active and toggling off marks when part of the selection does not allow the mark (e.g. a code block)
  • Global attributes now support shorthand string values for types: use '*' to apply to all nodes and marks, 'nodes' for all nodes (excluding text), or 'marks' for all marks.
  • Fixed a typo in the documentation of editor.view

@​tiptap/extension-drag-handle

Patch Changes

  • Fix drag handle not appearing for atom/leaf nodes like images in both nested and non-nested modes
  • Add table structure rules to prevent drag handle on table rows, cells, and headers, and fix ghost table rows when dragging tables
  • Fix drag position resolving outside the document when dragging an empty text node at the end of the document

@​tiptap/markdown

Patch Changes

  • Fixed getMarkdown() returning   instead of empty string when editor is empty

@​tiptap/extension-bubble-menu

Patch Changes

  • Fix BubbleMenu/FloatingMenu to use pluginKey as the transaction meta key so that multiple instances can be updated independently without affecting each other

@​tiptap/extension-floating-menu

Patch Changes

  • Fix BubbleMenu/FloatingMenu to use pluginKey as the transaction meta key so that multiple instances can be updated independently without affecting each other

@​tiptap/react

Minor Changes

  • Moved BubbleMenu and FloatingMenu to separate @tiptap/react/menus entrypoint to keep floating-ui optional
  • Simplified Tiptap component API with guaranteed non-null editor instance from useTiptap hook

Patch Changes

  • Fix BubbleMenu/FloatingMenu to use pluginKey as the transaction meta key so that multiple instances can be updated independently without affecting each other

... (truncated)

Changelog

Sourced from @​tiptap/pm's changelog.

3.20.0

Commits

Updates @tiptap/react from 3.19.0 to 3.20.0

Release notes

Sourced from @​tiptap/react's releases.

v3.20.0

@​tiptap/core

Minor Changes

  • Add transformPastedHTML extension API that allows extensions to transform pasted HTML content before it's parsed into the editor, enabling cleanup of styles, removal of dangerous content, and modification of pasted HTML through a chainable transform system.

Patch Changes

  • Fix checking if mark is active and toggling off marks when part of the selection does not allow the mark (e.g. a code block)
  • Global attributes now support shorthand string values for types: use '*' to apply to all nodes and marks, 'nodes' for all nodes (excluding text), or 'marks' for all marks.
  • Fixed a typo in the documentation of editor.view

@​tiptap/extension-drag-handle

Patch Changes

  • Fix drag handle not appearing for atom/leaf nodes like images in both nested and non-nested modes
  • Add table structure rules to prevent drag handle on table rows, cells, and headers, and fix ghost table rows when dragging tables
  • Fix drag position resolving outside the document when dragging an empty text node at the end of the document

@​tiptap/markdown

Patch Changes

  • Fixed getMarkdown() returning   instead of empty string when editor is empty

@​tiptap/extension-bubble-menu

Patch Changes

  • Fix BubbleMenu/FloatingMenu to use pluginKey as the transaction meta key so that multiple instances can be updated independently without affecting each other

@​tiptap/extension-floating-menu

Patch Changes

  • Fix BubbleMenu/FloatingMenu to use pluginKey as the transaction meta key so that multiple instances can be updated independently without affecting each other

@​tiptap/react

Minor Changes

  • Moved BubbleMenu and FloatingMenu to separate @tiptap/react/menus entrypoint to keep floating-ui optional
  • Simplified Tiptap component API with guaranteed non-null editor instance from useTiptap hook

Patch Changes

  • Fix BubbleMenu/FloatingMenu to use pluginKey as the transaction meta key so that multiple instances can be updated independently without affecting each other

... (truncated)

Changelog

Sourced from @​tiptap/react's changelog.

3.20.0

Minor Changes

  • 0f28d9c: Moved BubbleMenu and FloatingMenu to separate @tiptap/react/menus entrypoint to keep floating-ui optional
  • 0f28d9c: Simplified Tiptap component API with guaranteed non-null editor instance from useTiptap hook

Patch Changes

  • 253ca1c: Fix BubbleMenu/FloatingMenu to use pluginKey as the transaction meta key so that multiple instances can be updated independently without affecting each other
  • Updated dependencies [4b731e2]
  • Updated dependencies [98546ac]
  • Updated dependencies [57624a1]
  • Updated dependencies [76ce47d]
    • @​tiptap/core@​3.20.0
    • @​tiptap/pm@​3.20.0
Commits
  • 5a123c3 chore(release): publish a new release version (#7519)
  • 75846e5 Merge branch 'develop' of github.com:ueberdosis/tiptap
  • 253ca1c fix: use instance-specific pluginKey as transaction meta key in BubbleMenu/Fl...
  • 0f28d9c fix(react): simplify Tiptap component API and separate menu imports (#7494)
  • See full diff in compare view

Updates @tiptap/starter-kit from 3.19.0 to 3.20.0

Release notes

Sourced from @​tiptap/starter-kit's releases.

v3.20.0

@​tiptap/core

Minor Changes

  • Add transformPastedHTML extension API that allows extensions to transform pasted HTML content before it's parsed into the editor, enabling cleanup of styles, removal of dangerous content, and modification of pasted HTML through a chainable transform system.

Patch Changes

  • Fix checking if mark is active and toggling off marks when part of the selection does not allow the mark (e.g. a code block)
  • Global attributes now support shorthand string values for types: use '*' to apply to all nodes and marks, 'nodes' for all nodes (excluding text), or 'marks' for all marks.
  • Fixed a typo in the documentation of editor.view

@​tiptap/extension-drag-handle

Patch Changes

  • Fix drag handle not appearing for atom/leaf nodes like images in both nested and non-nested modes
  • Add table structure rules to prevent drag handle on table rows, cells, and headers, and fix ghost table rows when dragging tables
  • Fix drag position resolving outside the document when dragging an empty text node at the end of the document

@​tiptap/markdown

Patch Changes

  • Fixed getMarkdown() returning   instead of empty string when editor is empty

@​tiptap/extension-bubble-menu

Patch Changes

  • Fix BubbleMenu/FloatingMenu to use pluginKey as the transaction meta key so that multiple instances can be updated independently without affecting each other

@​tiptap/extension-floating-menu

Patch Changes

  • Fix BubbleMenu/FloatingMenu to use pluginKey as the transaction meta key so that multiple instances can be updated independently without affecting each other

@​tiptap/react

Minor Changes

  • Moved BubbleMenu and FloatingMenu to separate @tiptap/react/menus entrypoint to keep floating-ui optional
  • Simplified Tiptap component API with guaranteed non-null editor instance from useTiptap hook

Patch Changes

  • Fix BubbleMenu/FloatingMenu to use pluginKey as the transaction meta key so that multiple instances can be updated independently without affecting each other

... (truncated)

Changelog

Sourced from @​tiptap/starter-kit's changelog.

3.20.0

Patch Changes

  • Updated dependencies [4b731e2]
  • Updated dependencies [98546ac]
  • Updated dependencies [57624a1]
  • Updated dependencies [76ce47d]
    • @​tiptap/core@​3.20.0
    • @​tiptap/extension-blockquote@​3.20.0
    • @​tiptap/extension-bold@​3.20.0
    • @​tiptap/extension-code@​3.20.0
    • @​tiptap/extension-code-block@​3.20.0
    • @​tiptap/extension-document@​3.20.0
    • @​tiptap/extension-hard-break@​3.20.0
    • @​tiptap/extension-heading@​3.20.0
    • @​tiptap/extension-horizontal-rule@​3.20.0
    • @​tiptap/extension-italic@​3.20.0
    • @​tiptap/extension-link@​3.20.0
    • @​tiptap/extension-list@​3.20.0
    • @​tiptap/extension-paragraph@​3.20.0
    • @​tiptap/extension-strike@​3.20.0
    • @​tiptap/extension-text@​3.20.0
    • @​tiptap/extension-underline@​3.20.0
    • @​tiptap/extensions@​3.20.0
    • @​tiptap/extension-list-item@​3.20.0
    • @​tiptap/extension-list-keymap@​3.20.0
    • @​tiptap/extension-bullet-list@​3.20.0
    • @​tiptap/extension-ordered-list@​3.20.0
    • @​tiptap/extension-dropcursor@​3.20.0
    • @​tiptap/extension-gapcursor@​3.20.0
    • @​tiptap/pm@​3.20.0
Commits

Updates framer-motion from 12.34.0 to 12.34.4

Changelog

Sourced from framer-motion's changelog.

[12.34.4] 2026-03-02

Fixed

  • Ensure onComplete fires at the end of an animation sequence.

[12.34.3] 2026-02-20

Fixed

  • Ensure velocity is never transferred to a time-derived spring.

[12.34.2] 2026-02-18

Fixed

  • Layout animations: Reset motion value velocity when starting a new layout animation.

[12.34.1] 2026-02-17

Fixed

  • useScroll: Ensure animations aren't hardware accelerated when target is set.
  • Improve animatable "none" generation for mask values.
Commits
  • 81005d3 v12.34.4
  • 6cf6b60 Updating changelog
  • e03a253 Merge pull request #3571 from motiondivision/worktree-fix-issue-3563
  • 21869e9 fix: fire onComplete when animate sequence finishes
  • d8b219f Merge pull request #3568 from motiondivision/dependabot/npm_and_yarn/minimatc...
  • 1c293c0 Merge pull request #3567 from motiondivision/dependabot/npm_and_yarn/rollup-4...
  • 337bf8b Merge pull request #3566 from motiondivision/dependabot/npm_and_yarn/devalue-...
  • 12677fd Remove automatic Claude Code review workflow
  • 9a232ec Updating Readmes
  • fef565a chore(deps): bump minimatch from 3.1.2 to 3.1.5
  • Additional commits viewable in compare view

Updates i18next from 23.16.8 to 25.8.13

Release notes

Sourced from i18next's releases.

v25.8.13

  • improve support notice shown logic

v25.8.12

  • improve support notice shown logic

v25.8.11

  • revert fix: compatibility with moduleResolution bundler (issue 2380) 2381

v25.8.10

  • fix(interpolator): guard null matchedDoubleQuotes in nesting option parsing 2395

v25.8.9

  • fix(interpolator): escape nestingOptionsSeparator in nesting option parsing 223943

v25.8.8

  • types(i18n): add missing toJSON() declaration 2393

v25.8.7

  • avoid crash due to ReferenceError without Intl API 2391

v25.8.6

  • ts: address incomplete type definition for getFixedT() return value 2318

v25.8.5

  • fix: compatibility with moduleResolution bundler (issue 2380) 2381

v25.8.4

  • fix: crashes when backend in backends array has no name property 2386

v25.8.3

  • ts: document option to suppress the support message 2385

v25.8.2

  • option to suppress the support message 2385

v25.8.1

  • fix(types): Selector API - fix Namespace inference for selector ns option 2384

v25.8.0

  • fix: TFunctionReturn fallback 2360

v25.7.4

  • fix: Interpolation breaks when cloning an instance 2376

v25.7.3

v25.7.2

  • fix: Invalid overwrite of default value for overloadTranslationOptionHandler 2374.

... (truncated)

Changelog

Sourced from i18next's changelog.

25.8.13

  • improve support notice shown logic

25.8.12

  • improve support notice shown logic

25.8.11

  • revert fix: compatibility with moduleResolution bundler (issue 2380) 2381

25.8.10

  • fix(interpolator): guard null matchedDoubleQuotes in nesting option parsing 2395

25.8.9

  • fix(interpolator): escape nestingOptionsSeparator in nesting option parsing 2394

25.8.8

  • types(i18n): add missing toJSON() declaration 2393

25.8.7

  • avoid crash due to ReferenceError without Intl API 2391

25.8.6

  • ts: address incomplete type definition for getFixedT() return value 2318

25.8.5

  • fix: compatibility with moduleResolution bundler (issue 2380) 2381

25.8.4

  • fix: crashes when backend in backends array has no name property 2386

25.8.3

  • ts: document option to suppress the support message 2385

25.8.2

  • option to suppress the support message 2385

25.8.1

... (truncated)

Commits
Install script changes

This version modifies prepare script that runs during installation. Review the package contents before updating.


Updates lucide-react from 0.563.0 to 0.576.0

Release notes

Sourced from lucide-react's releases.

Version 0.576.0

What's Changed

Full Changelog: lucide-icons/lucide@0.575.0...0.576.0

Version 0.575.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.573.0...0.575.0

Version 0.574.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.572.0...0.574.0

Version 0.573.0

What's Changed

... (truncated)

Commits

Updates react from 18.3.1 to 19.2.4

Release notes

Sourced from react's releases.

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:
  • 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

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

Description has been truncated

MinimaxLanbo and others added 2 commits March 3, 2026 19:43
- Browser-based desktop environment with AI Agent integration
- Built-in apps: Music, Chess, Gomoku, FreeCell, Email, Diary, Twitter, Album, CyberNews
- Vibe workflow for AI-powered app generation via Claude Code
- IndexedDB-based local file system, no backend required
- iframe communication SDK (@gui/vibe-container)
- i18n support (English, Chinese, Japanese, Spanish, Portuguese)
- Design token system with CSS variables
- CI pipeline with GitHub Actions
Bumps the production-dependencies group with 16 updates:

| Package | From | To |
| --- | --- | --- |
| [@react-spring/three](https://github.com/pmndrs/react-spring) | `9.7.5` | `10.0.3` |
| [@react-three/drei](https://github.com/pmndrs/drei) | `9.122.0` | `10.7.7` |
| [@react-three/fiber](https://github.com/pmndrs/react-three-fiber) | `8.18.0` | `9.5.0` |
| [@tiptap/extension-placeholder](https://github.com/ueberdosis/tiptap/tree/HEAD/packages-deprecated/extension-placeholder) | `3.19.0` | `3.20.0` |
| [@tiptap/pm](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/pm) | `3.19.0` | `3.20.0` |
| [@tiptap/react](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/react) | `3.19.0` | `3.20.0` |
| [@tiptap/starter-kit](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/starter-kit) | `3.19.0` | `3.20.0` |
| [framer-motion](https://github.com/motiondivision/motion) | `12.34.0` | `12.34.4` |
| [i18next](https://github.com/i18next/i18next) | `23.16.8` | `25.8.13` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.563.0` | `0.576.0` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `18.3.1` | `19.2.4` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `18.3.1` | `19.2.4` |
| [react-i18next](https://github.com/i18next/react-i18next) | `14.1.3` | `16.5.4` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `6.30.3` | `7.13.1` |
| [tailwind-merge](https://github.com/dcastil/tailwind-merge) | `3.4.0` | `3.5.0` |
| [three](https://github.com/mrdoob/three.js) | `0.170.0` | `0.183.2` |


Updates `@react-spring/three` from 9.7.5 to 10.0.3
- [Release notes](https://github.com/pmndrs/react-spring/releases)
- [Commits](pmndrs/react-spring@v9.7.5...v10.0.3)

Updates `@react-three/drei` from 9.122.0 to 10.7.7
- [Release notes](https://github.com/pmndrs/drei/releases)
- [Changelog](https://github.com/pmndrs/drei/blob/master/release.config.js)
- [Commits](pmndrs/drei@v9.122.0...v10.7.7)

Updates `@react-three/fiber` from 8.18.0 to 9.5.0
- [Release notes](https://github.com/pmndrs/react-three-fiber/releases)
- [Commits](pmndrs/react-three-fiber@v8.18.0...v9.5.0)

Updates `@tiptap/extension-placeholder` from 3.19.0 to 3.20.0
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/develop/packages-deprecated/extension-placeholder/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.20.0/packages-deprecated/extension-placeholder)

Updates `@tiptap/pm` from 3.19.0 to 3.20.0
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/develop/packages/pm/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.20.0/packages/pm)

Updates `@tiptap/react` from 3.19.0 to 3.20.0
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/develop/packages/react/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.20.0/packages/react)

Updates `@tiptap/starter-kit` from 3.19.0 to 3.20.0
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/develop/packages/starter-kit/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.20.0/packages/starter-kit)

Updates `framer-motion` from 12.34.0 to 12.34.4
- [Changelog](https://github.com/motiondivision/motion/blob/main/CHANGELOG.md)
- [Commits](motiondivision/motion@v12.34.0...v12.34.4)

Updates `i18next` from 23.16.8 to 25.8.13
- [Release notes](https://github.com/i18next/i18next/releases)
- [Changelog](https://github.com/i18next/i18next/blob/master/CHANGELOG.md)
- [Commits](i18next/i18next@v23.16.8...v25.8.13)

Updates `lucide-react` from 0.563.0 to 0.576.0
- [Release notes](https://github.com/lucide-icons/lucide/releases)
- [Commits](https://github.com/lucide-icons/lucide/commits/0.576.0/packages/lucide-react)

Updates `react` from 18.3.1 to 19.2.4
- [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.4/packages/react)

Updates `react-dom` from 18.3.1 to 19.2.4
- [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.4/packages/react-dom)

Updates `react-i18next` from 14.1.3 to 16.5.4
- [Changelog](https://github.com/i18next/react-i18next/blob/master/CHANGELOG.md)
- [Commits](i18next/react-i18next@v14.1.3...v16.5.4)

Updates `react-router-dom` from 6.30.3 to 7.13.1
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@7.13.1/packages/react-router-dom)

Updates `tailwind-merge` from 3.4.0 to 3.5.0
- [Release notes](https://github.com/dcastil/tailwind-merge/releases)
- [Commits](dcastil/tailwind-merge@v3.4.0...v3.5.0)

Updates `three` from 0.170.0 to 0.183.2
- [Release notes](https://github.com/mrdoob/three.js/releases)
- [Commits](https://github.com/mrdoob/three.js/commits)

---
updated-dependencies:
- dependency-name: "@react-spring/three"
  dependency-version: 10.0.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@react-three/drei"
  dependency-version: 10.7.7
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@react-three/fiber"
  dependency-version: 9.5.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@tiptap/extension-placeholder"
  dependency-version: 3.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tiptap/pm"
  dependency-version: 3.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tiptap/react"
  dependency-version: 3.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tiptap/starter-kit"
  dependency-version: 3.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: framer-motion
  dependency-version: 12.34.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: i18next
  dependency-version: 25.8.13
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: lucide-react
  dependency-version: 0.576.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: react
  dependency-version: 19.2.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: react-dom
  dependency-version: 19.2.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: react-i18next
  dependency-version: 16.5.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: react-router-dom
  dependency-version: 7.13.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: tailwind-merge
  dependency-version: 3.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: three
  dependency-version: 0.183.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Mar 3, 2026
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Mar 3, 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/production-dependencies-b99b14c423 branch March 3, 2026 12:20
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