Skip to content

deps(deps): bump @tiptap/react from 2.27.2 to 3.18.0#32

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/main/tiptap/react-3.18.0
Open

deps(deps): bump @tiptap/react from 2.27.2 to 3.18.0#32
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/main/tiptap/react-3.18.0

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 2, 2026

Bumps @tiptap/react from 2.27.2 to 3.18.0.

Release notes

Sourced from @​tiptap/react's releases.

v3.18.0

@​tiptap/extension-bubble-menu

Patch Changes

  • Fix BubbleMenu and FloatingMenu props not updating after initialization

@​tiptap/extension-floating-menu

Patch Changes

  • Fix BubbleMenu and FloatingMenu props not updating after initialization

@​tiptap/react

Minor Changes

  • Introduce a new, optional React integration that provides a declarative <Tiptap /> component for setting up editors in React apps.

    Summary

    • Add a new, ergonomic way to initialize and use Tiptap editors in React via <Tiptap /> components. This is an additive change and does not remove or change existing APIs.

    Why this change

    • Improves ergonomics for React users by offering a component-first API that pairs well with React patterns (hooks, JSX composition and props-driven configuration).

    Migration and usage

    • The old programmatic setup remains supported for this major version — nothing breaks. We encourage consumers to try the new <Tiptap /> component and migrate when convenient.

    Example

    import { Tiptap, useEditor } from '@tiptap/react'
    function MyEditor() {
    const editor = useEditor({ extensions: [StarterKit], content: '<h1>Hello from Tiptap</h1>' })
    return (
    <Tiptap instance={editor}>
    <Tiptap.Content />
    <Tiptap.BubbleMenu>My Bubble Menu</Tiptap.BubbleMenu>
    <Tiptap.FloatingMenu>My Floating Menu</Tiptap.FloatingMenu>
    <MenuBar /> {/* MenuBar can use the new useTiptap hook to read the editor instance from context */}
    </Tiptap>
    )
    }

    Deprecation plan

    • The old imperative setup will remain fully backward-compatible for this major release. We plan to deprecate (and remove) the legacy setup in the next major version — a deprecation notice and migration guide will be published ahead of that change.

... (truncated)

Changelog

Sourced from @​tiptap/react's changelog.

3.18.0

Minor Changes

  • 328aedb: Introduce a new, optional React integration that provides a declarative <Tiptap /> component for setting up editors in React apps.

    Summary

    • Add a new, ergonomic way to initialize and use Tiptap editors in React via <Tiptap /> components. This is an additive change and does not remove or change existing APIs.

    Why this change

    • Improves ergonomics for React users by offering a component-first API that pairs well with React patterns (hooks, JSX composition and props-driven configuration).

    Migration and usage

    • The old programmatic setup remains supported for this major version — nothing breaks. We encourage consumers to try the new <Tiptap /> component and migrate when convenient.

    Example

    import { Tiptap, useEditor } from '@tiptap/react'
    function MyEditor() {
    const editor = useEditor({ extensions: [StarterKit], content: '<h1>Hello from Tiptap</h1>' })
    return (
    <Tiptap instance={editor}>
    <Tiptap.Content />
    <Tiptap.BubbleMenu>My Bubble Menu</Tiptap.BubbleMenu>
    <Tiptap.FloatingMenu>My Floating Menu</Tiptap.FloatingMenu>
    <MenuBar /> {/* MenuBar can use the new useTiptap hook to read the editor instance from context */}
    </Tiptap>
    )
    }

    Deprecation plan

    • The old imperative setup will remain fully backward-compatible for this major release. We plan to deprecate (and remove) the legacy setup in the next major version — a deprecation notice and migration guide will be published ahead of that change.

Patch Changes

  • 3e446fb: Fix BubbleMenu and FloatingMenu props not updating after initialization
  • feac5c8: Fixed extension storage not updating in React and Vue node views
    • @​tiptap/core@​3.18.0
    • @​tiptap/pm@​3.18.0

3.17.1

... (truncated)

Commits
  • a0ab1d6 chore(release): publish a new release version (#7460)
  • feac5c8 fix: use correct storage reference for react and node view renderers (#7467)
  • 3046a77 Merge branch 'main' of github.com:ueberdosis/tiptap into develop
  • 328aedb feat(react): introduce \<Tiptap /> component for easier integration (#6917)
  • f592f0a chore(release): publish a new release version (#7443)
  • 3e446fb Fix BubbleMenu and FloatingMenu not supporting option updates after initializ...
  • 408e1e7 chore(release): publish a new release version (#7440)
  • 332dfba chore(release): publish a new release version (#7413)
  • 9516ee0 Add updateEvent support to FloatingMenu (#7403)
  • 3a64925 chore(release): publish a new release version (#7397)
  • Additional commits viewable in compare view

Dependabot compatibility score

You can trigger a rebase of this PR 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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps [@tiptap/react](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/react) from 2.27.2 to 3.18.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.18.0/packages/react)

---
updated-dependencies:
- dependency-name: "@tiptap/react"
  dependency-version: 3.18.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Feb 2, 2026
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 2, 2026

Labels

The following labels could not be found: automated. Please create it before Dependabot can add it to a pull request.

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

@github-actions
Copy link

github-actions bot commented Feb 2, 2026

Major version update - Manual review required

This PR updates dependencies to a new major version.

Dependencies: @tiptap/react
Update type: Major

Breaking changes expected!

Action required:

  1. Read the changelog carefully
  2. Check for breaking changes
  3. Test thoroughly
  4. Update code if necessary
  5. Manually approve and merge when ready

Do not auto-merge this PR.

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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants