Skip to content

chore(deps): bump the production-dependencies group across 1 directory with 17 updates#43

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/production-dependencies-7ac94c290a
Open

chore(deps): bump the production-dependencies group across 1 directory with 17 updates#43
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/production-dependencies-7ac94c290a

Conversation

@dependabot
Copy link
Copy Markdown

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

Bumps the production-dependencies group with 17 updates in the / directory:

Package From To
@react-spring/three 9.7.5 10.1.0
@react-three/drei 9.122.0 10.7.7
@react-three/fiber 8.18.0 9.6.1
@tiptap/extension-placeholder 3.19.0 3.23.6
@tiptap/pm 3.19.0 3.23.6
@tiptap/react 3.19.0 3.23.6
@tiptap/starter-kit 3.19.0 3.23.6
dayjs 1.11.19 1.11.21
framer-motion 12.34.0 12.40.0
i18next 23.16.8 26.3.0
lucide-react 0.563.0 1.16.0
react 18.3.1 19.2.6
react-dom 18.3.1 19.2.6
react-i18next 14.1.3 17.0.8
react-router-dom 6.30.3 7.15.1
tailwind-merge 3.4.0 3.6.0
three 0.170.0 0.184.0

Updates @react-spring/three from 9.7.5 to 10.1.0

Release notes

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

v10.1.0

What's Changed

Full Changelog: pmndrs/react-spring@v10.0.4...v10.1.0

v10.0.4

What's Changed

... (truncated)

Commits
  • 3d0ca63 chore: version packages (#2517)
  • b400824 chore: update pnpm lock file
  • 6bd6613 fix(core): preserve velocity across retargets for decay animations (#2516)
  • c220465 fix(web): exact-match transform function names in style key regex (#2515)
  • 5812ef4 chore(docs): move to GCP
  • ea58a76 chore(deps): update typescript to v6 (#2514)
  • 84b058a fix(core): fire onRest when animation is cancelled before its first frame (#2...
  • d886f1b refactor(build): migrate tsup → tsdown (#2513)
  • 78bbfa7 docs(claude): refresh stale Node version notes (#2512)
  • cd13304 feat(core): add reverse prop to useTransition (#2510)
  • Additional commits viewable in compare view
Maintainer changes

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


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

Release notes

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

v9.6.1

What's Changed

Full Changelog: pmndrs/react-three-fiber@v9.6.0...v9.6.1

v9.6.0 - Sunset X

Ever tried using <shaderMaterial uniforms={{ time: { value: time } }} /> and ran into immediate issues with desync? No more.

The uniforms objects on ShaderMaterial and its derivatives now have a stable reference. Objects passed into uniforms will instead copy into it. This is the same as behavior for math structures that have copy such as position, rotation, quaternion, etc. and ends up simplifying using the raw JSX where utilities were often introduced before.

Why does this matter?

  1. Improves HMR. Even if you memoize the uniforms object it will still regenerate and desync Three. Now this won't happen. But also it makes compatibility with React compiler more complete with its auto-memoization.

  2. Allows for inline uniform props and even prop uniforms directly on the material piercing.

<shaderMaterial
  vertexShader={vertexShader}
  fragmentShader={fragmentShader}
  // The uniforms object has a stable reference so objects can be safely merged in
  uniforms={{ 
    uTime: { value: 0 }, 
    uColor: { value: new THREE.Color('hotpink') } 
  }}
  // Individual uniforms can also be safely updated with pierce notation
  uniforms-uColor-value={hovered ? 'royalblue' : 'hotpink'}
/>

Documentation can be found here: https://r3f.docs.pmnd.rs/api/objects#shader-material-uniforms

And an example can be found here: https://github.com/pmndrs/react-three-fiber/blob/master/example/src/demos/ShaderMaterial.tsx

What's Changed

New Contributors

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

v9.5.0

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

... (truncated)

Commits
  • 2a52874 RELEASING: Releasing 1 package(s)
  • b645741 docs(changeset): fix: Seamlessly transfer interactivity state when swapping i...
  • 119668f fix: Seamlessly transfer interactivity state when swapping instances (#3744)
  • 943a37e Merge pull request #3738 from pmndrs:chore/simplify-shadermaterial-demo
  • 1be9504 chore: Add uniform piercing test
  • 4df10c0 chore: Simplify ShaderMaterial demo
  • 877c839 chore: Move ShaderMaterial uniform notes to objects out of pitfalls (#3734)
  • 47d30ba chore: Move ShaderMaterial uniform notes to objects out of pitfalls
  • ece1a3f RELEASING: Releasing 1 package(s)
  • 26e4716 docs(changeset): Fix uniforms refs so they remain stable for ShaderMaterial
  • Additional commits viewable in compare view

Updates @tiptap/extension-placeholder from 3.19.0 to 3.23.6

Release notes

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

v3.23.6

@​tiptap/extension-drag-handle

Patch Changes

  • 937ff2e: DragHandle: Added dragImageProperties option to limit which CSS properties are cloned for the drag image. By default all ~300+ computed styles are copied; setting this to a subset (e.g. ['color', 'background-color', 'font-size']) reduces the cost when dragging selections with complex nodes.
  • Updated dependencies [937ff2e]
    • @​tiptap/core@​3.23.6
    • @​tiptap/extension-collaboration@​3.23.6
    • @​tiptap/extension-node-range@​3.23.6
    • @​tiptap/pm@​3.23.6

@​tiptap/core

Patch Changes

  • 937ff2e: Fix deleteSelection to properly handle inline nodes with text* content. The selection is now expanded to include the entire inline node boundaries when deleting, preventing incorrect collapse of inline text nodes.
  • @​tiptap/pm@​3.23.6

@​tiptap/extensions

Patch Changes

  • 937ff2e: Placeholder: Replaced full-document doc.descendants() traversal with a cursor-resolved fast path for the default config and viewport-limited scanning for the non-default config, significantly reducing decoration overhead on large documents.
  • Updated dependencies [937ff2e]
    • @​tiptap/core@​3.23.6
    • @​tiptap/pm@​3.23.6

v3.23.5

@​tiptap/markdown

Patch Changes

  • 7bf0e73: Fix extra mark tokens after inline atom nodes during Markdown serialization
  • 7bf0e73: Fix adjacent marks of the same type with different attributes being merged during Markdown serialization
  • Updated dependencies [7bf0e73]
  • Updated dependencies [7bf0e73]
    • @​tiptap/core@​3.23.5
    • @​tiptap/pm@​3.23.5

@​tiptap/core

Patch Changes

  • 7bf0e73: Fix $pos() returning correct node for non-text atom nodes instead of doc node
  • 7bf0e73: fix(nodeview): eliminate unnecessary re-renders, add opt-in position tracking NodeViews no longer re-render when decorations or position change without content changes. Added trackNodeViewPosition option — when enabled, the component re-renders on every position shift so calls to getPos() stay current in render output. Removed the internal nodeViewPositionRegistry.

... (truncated)

Changelog

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

3.23.6

Patch Changes

  • Updated dependencies [937ff2e]
    • @​tiptap/extensions@​3.23.6

3.23.5

Patch Changes

  • @​tiptap/extensions@​3.23.5

3.23.4

Patch Changes

  • Updated dependencies [57e53c1]
    • @​tiptap/extensions@​3.23.4

3.23.3

Patch Changes

  • @​tiptap/extensions@​3.23.3

3.23.2

Patch Changes

  • @​tiptap/extensions@​3.23.2

3.23.1

Patch Changes

  • @​tiptap/extensions@​3.23.1

3.23.0

Patch Changes

  • @​tiptap/extensions@​3.23.0

3.22.5

Patch Changes

  • @​tiptap/extensions@​3.22.5

... (truncated)

Commits
  • 195b13f chore(release): publish a new stable version (#7854)
  • d9daae0 chore(release): publish a new stable version (#7835)
  • 9d9cc06 chore(release): publish a new stable version (#7822)
  • 0f05ae7 chore(release): publish a new stable version (#7821)
  • 817c490 chore(release): publish a new stable version
  • a48290e chore(release): publish a new stable version (#7808)
  • 0520d9d chore(release): publish a new stable version (#7784)
  • 898a8ed chore(release): publish a new stable version (#7756)
  • dec9735 chore(release): publish a new stable version (#7727)
  • 27ea931 fix: restrict peer dependency ranges to avoid npm resolution conflicts (#7593)
  • Additional commits viewable in compare view

Updates @tiptap/pm from 3.19.0 to 3.23.6

Release notes

Sourced from @​tiptap/pm's releases.

v3.23.6

@​tiptap/extension-drag-handle

Patch Changes

  • 937ff2e: DragHandle: Added dragImageProperties option to limit which CSS properties are cloned for the drag image. By default all ~300+ computed styles are copied; setting this to a subset (e.g. ['color', 'background-color', 'font-size']) reduces the cost when dragging selections with complex nodes.
  • Updated dependencies [937ff2e]
    • @​tiptap/core@​3.23.6
    • @​tiptap/extension-collaboration@​3.23.6
    • @​tiptap/extension-node-range@​3.23.6
    • @​tiptap/pm@​3.23.6

@​tiptap/core

Patch Changes

  • 937ff2e: Fix deleteSelection to properly handle inline nodes with text* content. The selection is now expanded to include the entire inline node boundaries when deleting, preventing incorrect collapse of inline text nodes.
  • @​tiptap/pm@​3.23.6

@​tiptap/extensions

Patch Changes

  • 937ff2e: Placeholder: Replaced full-document doc.descendants() traversal with a cursor-resolved fast path for the default config and viewport-limited scanning for the non-default config, significantly reducing decoration overhead on large documents.
  • Updated dependencies [937ff2e]
    • @​tiptap/core@​3.23.6
    • @​tiptap/pm@​3.23.6

v3.23.5

@​tiptap/markdown

Patch Changes

  • 7bf0e73: Fix extra mark tokens after inline atom nodes during Markdown serialization
  • 7bf0e73: Fix adjacent marks of the same type with different attributes being merged during Markdown serialization
  • Updated dependencies [7bf0e73]
  • Updated dependencies [7bf0e73]
    • @​tiptap/core@​3.23.5
    • @​tiptap/pm@​3.23.5

@​tiptap/core

Patch Changes

  • 7bf0e73: Fix $pos() returning correct node for non-text atom nodes instead of doc node
  • 7bf0e73: fix(nodeview): eliminate unnecessary re-renders, add opt-in position tracking NodeViews no longer re-render when decorations or position change without content changes. Added trackNodeViewPosition option — when enabled, the component re-renders on every position shift so calls to getPos() stay current in render output. Removed the internal nodeViewPositionRegistry.

... (truncated)

Changelog

Sourced from @​tiptap/pm's changelog.

3.23.6

3.23.5

3.23.4

3.23.3

3.23.2

3.23.1

3.23.0

3.22.5

3.22.4

Patch Changes

  • 27ea931: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • 032f8f1: Remove unused ProseMirror packages from @​tiptap/pm to reduce bundle size

3.22.3

3.22.2

3.22.1

3.22.0

3.21.0

3.20.6

3.20.5

3.20.4

3.20.3

3.20.2

3.20.1

3.20.0

Commits
  • 195b13f chore(release): publish a new stable version (#7854)
  • d9daae0 chore(release): publish a new stable version (#7835)
  • 9d9cc06 chore(release): publish a new stable version (#7822)
  • 0f05ae7 chore(release): publish a new stable version (#7821)
  • 817c490 chore(release): publish a new stable version
  • a48290e chore(release): publish a new stable version (#7808)
  • 0520d9d chore(release): publish a new stable version (#7784)
  • 898a8ed chore(release): publish a new stable version (#7756)
  • dec9735 chore(release): publish a new stable version (#7727)
  • 032f8f1 chore(pm): remove unused ProseMirror packages from @​tiptap/pm (#7749)
  • Additional commits viewable in compare view

Updates @tiptap/react from 3.19.0 to 3.23.6

Release notes

Sourced from @​tiptap/react's releases.

v3.23.6

@​tiptap/extension-drag-handle

Patch Changes

  • 937ff2e: DragHandle: Added dragImageProperties option to limit which CSS properties are cloned for the drag image. By default all ~300+ computed styles are copied; setting this to a subset (e.g. ['color', 'background-color', 'font-size']) reduces the cost when dragging selections with complex nodes.
  • Updated dependencies [937ff2e]
    • @​tiptap/core@​3.23.6
    • @​tiptap/extension-collaboration@​3.23.6
    • @​tiptap/extension-node-range@​3.23.6
    • @​tiptap/pm@​3.23.6

@​tiptap/core

Patch Changes

  • 937ff2e: Fix deleteSelection to properly handle inline nodes with text* content. The selection is now expanded to include the entire inline node boundaries when deleting, preventing incorrect collapse of inline text nodes.
  • @​tiptap/pm@​3.23.6

@​tiptap/extensions

Patch Changes

  • 937ff2e: Placeholder: Replaced full-document doc.descendants() traversal with a cursor-resolved fast path for the default config and viewport-limited scanning for the non-default config, significantly reducing decoration overhead on large documents.
  • Updated dependencies [937ff2e]
    • @​tiptap/core@​3.23.6
    • @​tiptap/pm@​3.23.6

v3.23.5

@​tiptap/markdown

Patch Changes

  • 7bf0e73: Fix extra mark tokens after inline atom nodes during Markdown serialization
  • 7bf0e73: Fix adjacent marks of the same type with different attributes being merged during Markdown serialization
  • Updated dependencies [7bf0e73]
  • Updated dependencies [7bf0e73]
    • @​tiptap/core@​3.23.5
    • @​tiptap/pm@​3.23.5

@​tiptap/core

Patch Changes

  • 7bf0e73: Fix $pos() returning correct node for non-text atom nodes instead of doc node
  • 7bf0e73: fix(nodeview): eliminate unnecessary re-renders, add opt-in position tracking NodeViews no longer re-render when decorations or position change without content changes. Added trackNodeViewPosition option — when enabled, the component re-renders on every position shift so calls to getPos() stay current in render output. Removed the internal nodeViewPositionRegistry.

... (truncated)

Changelog

Sourced from @​tiptap/react's changelog.

3.23.6

Patch Changes

  • Updated dependencies [d168376]
    • @​tiptap/core@​3.23.6
    • @​tiptap/pm@​3.23.6

3.23.5

Patch Changes

  • b5f34fc: Respect explicit immediatelyRender: true in client-side Next.js. Previously, when running under Next.js (window.next present), the immediatelyRender option was forced to false even when the user explicitly passed true, breaking client-only Next.js apps that rely on the editor existing on the first render. The hook now only forces false when actual SSR is detected (typeof window === 'undefined'), or when running under Next.js with no explicit value.

  • 95e138c: fix(nodeview): eliminate unnecessary re-renders, add opt-in position tracking

    NodeViews no longer re-render when decorations or position change without content changes. Added trackNodeViewPosition option — when enabled, the component re-renders on every position shift so calls to getPos() stay current in render output. Removed the internal nodeViewPositionRegistry. Added shallow prop comparison in ReactRenderer.updateProps().

  • Updated dependencies [835caf5]

  • Updated dependencies [95e138c]

    • @​tiptap/core@​3.23.5
    • @​tiptap/pm@​3.23.5

3.23.4

Patch Changes

  • @​tiptap/core@​3.23.4
  • @​tiptap/pm@​3.23.4

3.23.3

Patch Changes

  • @​tiptap/core@​3.23.3
  • @​tiptap/pm@​3.23.3

3.23.2

Patch Changes

  • 30e0b58: Default immediatelyRender to false in SSR environments instead of throwing an error

    Previously, omitting immediatelyRender in an SSR environment (e.g. Next.js) would throw an error in development and silently return null in production. This was a common source of crashes, especially when AI-generated code set up the editor without explicitly passing immediatelyRender: false. The hook now defaults immediatelyRender to true, but automatically sets it to false when SSR is detected, logging a warning in development instead of throwing.

  • Updated dependencies [f98eaaf]

    • @​tiptap/core@​3.23.2

... (truncated)

Commits
  • 195b13f chore(release): publish a new stable version (#7854)
  • d9daae0 chore(release): publish a new stable version (#7835)
  • 95e138c fix(nodeview): eliminate unnecessary re-renders, add opt-in position tracking...
  • b5f34fc fix(react): respect explicit immediatelyRender on client-side Next.js
  • 9d9cc06 chore(release): publish a new stable version (#7822)
  • 0f05ae7 chore(release): publish a new stable version (#7821)
  • 817c490 chore(release): publish a new stable version
  • 30e0b58 fix(react): default immediatelyRender to false in SSR environments (#7761)
  • a48290e chore(release): publish a new stable version (#7808)
  • 0520d9d chore(release): publish a new stable version (#7784)
  • Additional commits viewable in compare view

Updates @tiptap/starter-kit from 3.19.0 to 3.23.6

Release notes

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

v3.23.6

@​tiptap/extension-drag-handle

Patch Changes

  • 937ff2e: DragHandle: Added dragImageProperties option to limit which CSS properties are cloned for the drag image. By default all ~300+ computed styles are copied; setting this to a subset (e.g. ['color', 'background-color', 'font-size']) reduces the cost when dragging selections with complex nodes.
  • Updated dependencies [937ff2e]
    • @​tiptap/core@​3.23.6
    • @​tiptap/extension-collaboration@​3.23.6
    • @​tiptap/extension-node-range@​3.23.6
    • @​tiptap/pm@​3.23.6

@​tiptap/core

Patch Changes

  • 937ff2e: Fix deleteSelection to properly handle inline nodes with text* content. The selection is now expanded to include the entire inline node boundaries when deleting, preventing incorrect collapse of inline text nodes.
  • @​tiptap/pm@​3.23.6

@​tiptap/extensions

Patch Changes

  • 937ff2e: Placeholder: Replaced full-document doc.descendants() traversal with a cursor-resolved fast path for the default config and viewport-limited scanning for the non-default config, significantly reducing decoration overhead on large documents.
  • Updated dependencies [937ff2e]
    • @​tiptap/core@​3.23.6
    • @​tiptap/pm@​3.23.6

v3.23.5

@​tiptap/markdown

Patch Changes

  • 7bf0e73: Fix extra mark tokens after inline atom nodes during Markdown serialization
  • 7bf0e73: Fix adjacent marks of the same type with different attributes being merged during Markdown serialization
  • Updated dependencies [7bf0e73]
  • Updated dependencies [7bf0e73]
    • @​tiptap/core@​3.23.5
    • @​tiptap/pm@​3.23.5

@​tiptap/core

Patch Changes

  • 7bf0e73: Fix $pos() returning correct node for non-text atom nodes instead of doc node
  • 7bf0e73: fix(nodeview): eliminate unnecessary re-renders, add opt-in position tracking NodeViews no longer re-render when decorations or position change without content changes. Added trackNodeViewPosition option — when enabled, the component re-renders on every position shift so calls to getPos() stay current in render output. Removed the internal nodeViewPositionRegistry.

... (truncated)

Changelog

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

3.23.6

Patch Changes

  • Updated dependencies [d168376]
  • Updated dependencies [937ff2e]
    • @​tiptap/core@​3.23.6
    • @​tiptap/extensions@​3.23.6
    • @​tiptap/extension-blockquote@​3.23.6
    • @​tiptap/extension-bold@​3.23.6
    • @​tiptap/extension-code@​3.23.6
    • @​tiptap/extension-code-block@​3.23.6
    • @​tiptap/extension-document@​3.23.6
    • @​tiptap/extension-hard-break@​3.23.6
    • @​tiptap/extension-heading@​3.23.6
    • @​tiptap/extension-horizontal-rule@​3.23.6
    • @​tiptap/extension-italic@​3.23.6
    • @​tiptap/extension-link@​3.23.6
    • @​tiptap/extension-list@​3.23.6
    • @​tiptap/extension-paragraph@​3.23.6
    • @​tiptap/extension-strike@​3.23.6
    • @​tiptap/extension-text@​3.23.6
    • @​tiptap/extension-underline@​3.23.6
    • @​tiptap/extension-dropcursor@​3.23.6
    • @​tiptap/extension-gapcursor@​3.23.6
    • @​tiptap/extension-list-item@​3.23.6
    • @​tiptap/extension-list-keymap@​3.23.6
    • @​tiptap/extension-bullet-list@​3.23.6
    • @​tiptap/extension-ordered-list@​3.23.6
    • @​tiptap/pm@​3.23.6

3.23.5

Patch Changes

  • Updated dependencies [835caf5]
  • Updated dependencies [95e138c]
    • @​tiptap/core@​3.23.5
    • @​tiptap/extension-blockquote@​3.23.5
    • @​tiptap/extension-bold@​3.23.5
    • @​tiptap/extension-code@​3.23.5
    • @​tiptap/extension-code-block@​3.23.5
    • @​tiptap/extension-document@​3.23.5
    • @​tiptap/extension-hard-break@​3.23.5
    • @​tiptap/extension-heading@​3.23.5
    • @​tiptap/extension-horizontal-rule@​3.23.5
    • @​tiptap/extension-italic@​3.23.5
    • @​tiptap/extension-link@​3.23.5
    • @​tiptap/extension-list@​3.23.5
    • @​tiptap/extension-paragraph@​3.23.5

... (truncated)

Commits
  • 195b13f chore(release): publish a new stable version (#7854)
  • d9daae0 chore(release): publish a new stable version (#7835)
  • 9d9cc06 chore(release): publish a new stable version (#7822)
  • 0f05ae7 chore(release): publish a new stable version (#7821)
  • 817c490 chore(release): publish a new stable version
  • a48290e chore(release): publish a new stable version (#7808)
  • 0520d9d chore(release): publish a new stable version (#7784)
  • 898a8ed chore(release): publish a new stable version (#7756)
  • dec9735 chore(release): publish a new stable version (#7727)
  • 626b052 chore(release): publish a new stable version (#7714)
  • Additional commits viewable in compare view

Updates dayjs from 1.11.19 to 1.11.21

Release notes

Sourced from dayjs's releases.

v1.11.21

1.11.21 (2026-05-26)

Bug Fixes

v1.11.20

1.11.20 (2026-03-12)

Bug Fixes

  • Update locale km.js to support meridiem (#3017) (9d2b6a1)
  • update updateLocale plugin to merge nested object properties instead of replacing (#3012) (99691c5), closes #1118
Changelog

Sourced from dayjs's changelog.

1.11.21 (2026-05-26)

Bug Fixes

1.11.20 (2026-03-12)

Bug Fixes

  • Update locale km.js to support meridiem (#3017) (9d2b6a1)
  • update updateLocale plugin to merge nested object properties instead of replacing (#3012) (99691c5), closes #1118
Commits
  • a25f01e chore(release): 1.11.21 [skip ci]
  • ee75cc2 Merge pull request #3113 from iamkun/dev
  • 1a8bf27 chore: update doc
  • 51ef048 chore: support window os test execution using cross-env (#3064)
  • 7bb06f8 chore: add download chart (#3045)
  • ...

    Description has been truncated

…y with 17 updates

Bumps the production-dependencies group with 17 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@react-spring/three](https://github.com/pmndrs/react-spring) | `9.7.5` | `10.1.0` |
| [@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.6.1` |
| [@tiptap/extension-placeholder](https://github.com/ueberdosis/tiptap/tree/HEAD/packages-deprecated/extension-placeholder) | `3.19.0` | `3.23.6` |
| [@tiptap/pm](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/pm) | `3.19.0` | `3.23.6` |
| [@tiptap/react](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/react) | `3.19.0` | `3.23.6` |
| [@tiptap/starter-kit](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/starter-kit) | `3.19.0` | `3.23.6` |
| [dayjs](https://github.com/iamkun/dayjs) | `1.11.19` | `1.11.21` |
| [framer-motion](https://github.com/motiondivision/motion) | `12.34.0` | `12.40.0` |
| [i18next](https://github.com/i18next/i18next) | `23.16.8` | `26.3.0` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.563.0` | `1.16.0` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `18.3.1` | `19.2.6` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `18.3.1` | `19.2.6` |
| [react-i18next](https://github.com/i18next/react-i18next) | `14.1.3` | `17.0.8` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `6.30.3` | `7.15.1` |
| [tailwind-merge](https://github.com/dcastil/tailwind-merge) | `3.4.0` | `3.6.0` |
| [three](https://github.com/mrdoob/three.js) | `0.170.0` | `0.184.0` |



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

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.6.1
- [Release notes](https://github.com/pmndrs/react-three-fiber/releases)
- [Commits](pmndrs/react-three-fiber@v8.18.0...v9.6.1)

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

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

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

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

Updates `dayjs` from 1.11.19 to 1.11.21
- [Release notes](https://github.com/iamkun/dayjs/releases)
- [Changelog](https://github.com/iamkun/dayjs/blob/dev/CHANGELOG.md)
- [Commits](iamkun/dayjs@v1.11.19...v1.11.21)

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

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

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

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-i18next` from 14.1.3 to 17.0.8
- [Changelog](https://github.com/i18next/react-i18next/blob/master/CHANGELOG.md)
- [Commits](i18next/react-i18next@v14.1.3...v17.0.8)

Updates `react-router-dom` from 6.30.3 to 7.15.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.15.1/packages/react-router-dom)

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

Updates `three` from 0.170.0 to 0.184.0
- [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.1.0
  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.6.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@tiptap/extension-placeholder"
  dependency-version: 3.23.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tiptap/pm"
  dependency-version: 3.23.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tiptap/react"
  dependency-version: 3.23.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tiptap/starter-kit"
  dependency-version: 3.23.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: dayjs
  dependency-version: 1.11.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: framer-motion
  dependency-version: 12.40.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: i18next
  dependency-version: 26.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: lucide-react
  dependency-version: 1.16.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: react
  dependency-version: 19.2.6
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: react-dom
  dependency-version: 19.2.6
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: react-i18next
  dependency-version: 17.0.8
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: react-router-dom
  dependency-version: 7.15.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: tailwind-merge
  dependency-version: 3.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: three
  dependency-version: 0.184.0
  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 May 26, 2026
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.

0 participants