Skip to content

build(deps): bump @tiptap/starter-kit from 3.2.0 to 3.18.0#244

Merged
sorydima merged 2 commits intomainfrom
dependabot/npm_and_yarn/tiptap/starter-kit-3.18.0
Jan 31, 2026
Merged

build(deps): bump @tiptap/starter-kit from 3.2.0 to 3.18.0#244
sorydima merged 2 commits intomainfrom
dependabot/npm_and_yarn/tiptap/starter-kit-3.18.0

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 30, 2026

Bumps @tiptap/starter-kit from 3.2.0 to 3.18.0.

Release notes

Sourced from @​tiptap/starter-kit'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/starter-kit's changelog.

3.18.0

Patch Changes

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

3.17.1

Patch Changes

  • Updated dependencies [62c6f15]
  • Updated dependencies [aa9709e]
  • Updated dependencies [5d267cb]
  • Updated dependencies [b46e66a]
    • @​tiptap/extension-paragraph@​3.17.1
    • @​tiptap/core@​3.17.1
    • @​tiptap/extension-list@​3.17.1
    • @​tiptap/extension-blockquote@​3.17.1
    • @​tiptap/extension-bold@​3.17.1
    • @​tiptap/extension-code@​3.17.1
    • @​tiptap/extension-code-block@​3.17.1
    • @​tiptap/extension-document@​3.17.1
    • @​tiptap/extension-hard-break@​3.17.1
    • @​tiptap/extension-heading@​3.17.1
    • @​tiptap/extension-horizontal-rule@​3.17.1
    • @​tiptap/extension-italic@​3.17.1

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​tiptap/starter-kit since your current version.


Dependabot compatibility score

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 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)

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

---
updated-dependencies:
- dependency-name: "@tiptap/starter-kit"
  dependency-version: 3.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

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 Jan 30, 2026
@sorydima sorydima merged commit cd73329 into main Jan 31, 2026
3 of 20 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/tiptap/starter-kit-3.18.0 branch January 31, 2026 14: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