Skip to content

build(deps): bump the tiptap group with 10 updates#695

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/tiptap-15af6bf3cd
Open

build(deps): bump the tiptap group with 10 updates#695
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/tiptap-15af6bf3cd

Conversation

@dependabot
Copy link
Contributor

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

Bumps the tiptap group with 10 updates:

Package From To
@tiptap/core 3.13.0 3.19.0
@tiptap/extension-bubble-menu 3.13.0 3.19.0
@tiptap/extension-color 3.13.0 3.19.0
@tiptap/extension-image 3.13.0 3.19.0
@tiptap/extension-link 3.13.0 3.19.0
@tiptap/extension-placeholder 3.13.0 3.19.0
@tiptap/extension-youtube 3.13.0 3.19.0
@tiptap/pm 3.13.0 3.19.0
@tiptap/react 3.13.0 3.19.0
@tiptap/starter-kit 3.13.0 3.19.0

Updates @tiptap/core from 3.13.0 to 3.19.0

Release notes

Sourced from @​tiptap/core's releases.

v3.19.0

@​tiptap/extension-link

Patch Changes

  • Add title attribute to Link extension. The title can now be set via setLink and toggleLink commands and is rendered as an HTML title attribute.
  • Add title attribute support for markdown rendering. Links with titles are now serialized to markdown format [text](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/core/blob/HEAD/url "title").

@​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

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

... (truncated)

Changelog

Sourced from @​tiptap/core's changelog.

3.19.0

Patch Changes

  • @​tiptap/pm@​3.19.0

3.18.0

Patch Changes

  • @​tiptap/pm@​3.18.0

3.17.1

Patch Changes

  • aa9709e: Fixed $nodes() method to correctly return inline nodes (like text, mention, etc.) by fixing the children getter in NodePos class
  • b46e66a: Fixed ResizableNodeView contentDOM getter to return null instead of undefined for proper TypeScript compatibility
    • @​tiptap/pm@​3.17.1

3.17.0

Patch Changes

  • eecf1c9: Added isFirefox utility to core
    • @​tiptap/pm@​3.17.0

3.16.0

Patch Changes

  • @​tiptap/pm@​3.16.0

3.15.3

Patch Changes

  • 8f86f06: Fix Safari scrolling to top when using editor.chain().focus() commands
    • @​tiptap/pm@​3.15.3

3.15.2

Patch Changes

  • @​tiptap/pm@​3.15.2

3.15.1

Patch Changes

... (truncated)

Commits
  • 73ece76 chore(release): publish a new release version (#7480)
  • a0ab1d6 chore(release): publish a new release version (#7460)
  • 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)
  • aa9709e fix(core): allow $nodes() to return inline nodes (#7448)
  • b46e66a fix(core): return null instead of undefined from ResizableNodeView contentDOM...
  • 408e1e7 chore(release): publish a new release version (#7440)
  • eecf1c9 Fix/firefox drag handle caret visibility (#7439)
  • 332dfba chore(release): publish a new release version (#7413)
  • Additional commits viewable in compare view
Maintainer changes

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


Updates @tiptap/extension-bubble-menu from 3.13.0 to 3.19.0

Release notes

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

v3.19.0

@​tiptap/extension-link

Patch Changes

  • Add title attribute to Link extension. The title can now be set via setLink and toggleLink commands and is rendered as an HTML title attribute.
  • Add title attribute support for markdown rendering. Links with titles are now serialized to markdown format [text](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-bubble-menu/blob/HEAD/url "title").

@​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

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

... (truncated)

Changelog

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

3.19.0

Patch Changes

  • @​tiptap/core@​3.19.0
  • @​tiptap/pm@​3.19.0

3.18.0

Patch Changes

  • 3e446fb: Fix BubbleMenu and FloatingMenu props not updating after initialization
    • @​tiptap/core@​3.18.0
    • @​tiptap/pm@​3.18.0

3.17.1

Patch Changes

  • 725d182: Fixed bubble and floating menus to properly handle hide middleware data, hiding menus when reference element is scrolled out of view
  • Updated dependencies [aa9709e]
  • Updated dependencies [b46e66a]
    • @​tiptap/core@​3.17.1
    • @​tiptap/pm@​3.17.1

3.17.0

Patch Changes

  • 7a9b617: Added a safeguard to avoid TypeError: Cannot read properties of null (reading 'domFromPos') being thrown when the editor was being destroyed
  • Updated dependencies [eecf1c9]
    • @​tiptap/core@​3.17.0
    • @​tiptap/pm@​3.17.0

3.16.0

Patch Changes

  • @​tiptap/core@​3.16.0
  • @​tiptap/pm@​3.16.0

3.15.3

Patch Changes

  • Updated dependencies [8f86f06]
    • @​tiptap/core@​3.15.3
    • @​tiptap/pm@​3.15.3

3.15.2

... (truncated)

Commits
  • 73ece76 chore(release): publish a new release version (#7480)
  • a0ab1d6 chore(release): publish a new release version (#7460)
  • 3046a77 Merge branch 'main' of github.com:ueberdosis/tiptap into develop
  • f592f0a chore(release): publish a new release version (#7443)
  • 3e446fb Fix BubbleMenu and FloatingMenu not supporting option updates after initializ...
  • 725d182 fix(menus): handle hide middleware data in bubble and floating menus (#7444)
  • 408e1e7 chore(release): publish a new release version (#7440)
  • 7a9b617 fix: bubble menu TypeError: Cannot read properties of null (reading 'domFromP...
  • 332dfba chore(release): publish a new release version (#7413)
  • 3a64925 chore(release): publish a new release version (#7397)
  • Additional commits viewable in compare view
Maintainer changes

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


Updates @tiptap/extension-color from 3.13.0 to 3.19.0

Release notes

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

v3.19.0

@​tiptap/extension-link

Patch Changes

  • Add title attribute to Link extension. The title can now be set via setLink and toggleLink commands and is rendered as an HTML title attribute.
  • Add title attribute support for markdown rendering. Links with titles are now serialized to markdown format [text](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-color/blob/HEAD/url "title").

@​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

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

... (truncated)

Changelog

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

3.19.0

Patch Changes

  • @​tiptap/extension-text-style@​3.19.0

3.18.0

Patch Changes

  • @​tiptap/extension-text-style@​3.18.0

3.17.1

Patch Changes

  • @​tiptap/extension-text-style@​3.17.1

3.17.0

Patch Changes

  • @​tiptap/extension-text-style@​3.17.0

3.16.0

Patch Changes

  • @​tiptap/extension-text-style@​3.16.0

3.15.3

Patch Changes

  • @​tiptap/extension-text-style@​3.15.3

3.15.2

Patch Changes

  • @​tiptap/extension-text-style@​3.15.2

3.15.1

Patch Changes

  • @​tiptap/extension-text-style@​3.15.1

3.15.0

... (truncated)

Commits
Maintainer changes

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


Updates @tiptap/extension-image from 3.13.0 to 3.19.0

Release notes

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

v3.19.0

@​tiptap/extension-link

Patch Changes

  • Add title attribute to Link extension. The title can now be set via setLink and toggleLink commands and is rendered as an HTML title attribute.
  • Add title attribute support for markdown rendering. Links with titles are now serialized to markdown format [text](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-image/blob/HEAD/url "title").

@​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

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

... (truncated)

Changelog

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

3.19.0

Patch Changes

  • @​tiptap/core@​3.19.0

3.18.0

Patch Changes

  • @​tiptap/core@​3.18.0

3.17.1

Patch Changes

  • Updated dependencies [aa9709e]
  • Updated dependencies [b46e66a]
    • @​tiptap/core@​3.17.1

3.17.0

Patch Changes

  • Updated dependencies [eecf1c9]
    • @​tiptap/core@​3.17.0

3.16.0

Patch Changes

  • @​tiptap/core@​3.16.0

3.15.3

Patch Changes

  • Updated dependencies [8f86f06]
    • @​tiptap/core@​3.15.3

3.15.2

Patch Changes

  • @​tiptap/core@​3.15.2

3.15.1

Patch Changes

... (truncated)

Commits
Maintainer changes

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


Updates @tiptap/extension-link from 3.13.0 to 3.19.0

Release notes

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

v3.19.0

@​tiptap/extension-link

Patch Changes

  • Add title attribute to Link extension. The title can now be set via setLink and toggleLink commands and is rendered as an HTML title attribute.
  • Add title attribute support for markdown rendering. Links with titles are now serialized to markdown format [text](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-link/blob/HEAD/url "title").

@​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

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

... (truncated)

Changelog

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

3.19.0

Patch Changes

  • 9011aff: Add title attribute to Link extension. The title can now be set via setLink and toggleLink commands and is rendered as an HTML title attribute.
  • 9011aff: Add title attribute support for markdown rendering. Links with titles are now serialized to markdown format [text](https://github.com/ueberdosis/tiptap/blob/v3.19.0/packages/extension-link/url "title").
    • @​tiptap/core@​3.19.0
    • @​tiptap/pm@​3.19.0

3.18.0

Patch Changes

  • @​tiptap/core@​3.18.0
  • @​tiptap/pm@​3.18.0

3.17.1

Patch Changes

  • Updated dependencies [aa9709e]
  • Updated dependencies [b46e66a]
    • @​tiptap/core@​3.17.1
    • @​tiptap/pm@​3.17.1

3.17.0

Patch Changes

  • Updated dependencies [eecf1c9]
    • @​tiptap/core@​3.17.0
    • @​tiptap/pm@​3.17.0

3.16.0

Patch Changes

  • 5f568dc: Fixed an issue where clicking on non-link elements (like images) required multiple clicks to select them. The link click handler now properly returns early when the clicked element is not a link, allowing other node handlers to process the click event.
    • @​tiptap/core@​3.16.0
    • @​tiptap/pm@​3.16.0

3.15.3

Patch Changes

  • Updated dependencies [8f86f06]
    • @​tiptap/core@​3.15.3
    • @​tiptap/pm@​3.15.3

3.15.2

... (truncated)

Commits
  • 73ece76 chore(release): publish a new release version (#7480)
  • 9011aff Add title attribute support to Link extension (#7479)
  • a0ab1d6 chore(release): publish a new release version (#7460)
  • f592f0a chore(release): publish a new release version (#7443)
  • 408e1e7 chore(release): publish a new release version (#7440)
  • 332dfba chore(release): publish a new release version (#7413)
  • 5f568dc fix(extension-link): prevent click handler from blocking non-link element sel...
  • 3a64925 chore(release): publish a new release version (#7397)
  • 88fedcd chore(release): publish a new release version (#7395)
  • 03998a1 Prevent auto-linking bare IP's and hostnames (#7388)
  • Additional commits viewable in compare view
Maintainer changes

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


Updates @tiptap/extension-placeholder from 3.13.0 to 3.19.0

Release notes

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

v3.19.0

@​tiptap/extension-link

Patch Changes

  • Add title attribute to Link extension. The title can now be set via setLink and toggleLink commands and is rendered as an HTML title attribute.
  • Add title attribute support for markdown rendering. Links with titles are now serialized to markdown format [text](https://github.com/ueberdosis/tiptap/tree/HEAD/packages-deprecated/extension-placeholder/blob/HEAD/url "title").

@​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

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

... (truncated)

Changelog

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

3.19.0

Patch Changes

  • @​tiptap/extensions@​3.19.0

3.18.0

Patch Changes

  • Updated dependencies [a65e55d]
    • @​tiptap/extensions@​3.18.0

3.17.1

Patch Changes

  • @​tiptap/extensions@​3.17.1

3.17.0

Patch Changes

  • @​tiptap/extensions@​3.17.0

3.16.0

Patch Changes

  • @​tiptap/extensions@​3.16.0

3.15.3

Patch Changes

  • @​tiptap/extensions@​3.15.3

3.15.2

Patch Changes

  • @​tiptap/extensions@​3.15.2

3.15.1

Patch Changes

  • @​tiptap/extensions@​3.15.1

3.15.0

... (truncated)

Commits
Maintainer changes

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


Updates @tiptap/extension-youtube from 3.13.0 to 3.19.0

Release notes

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

v3.19.0

@​tiptap/extension-link

Patch Changes

  • Add title attribute to Link extension. The title can now be set via setLink and toggleLink commands and is rendered as an HTML title attribute.
  • Add title attribute support for markdown rendering. Links with titles are now serialized to markdown format [text](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-youtube/blob/HEAD/url "title").

@​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

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

... (truncated)

Changelog

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

3.19.0

Patch Changes

  • @​tiptap/core@​3.19.0

3.18.0

Patch Changes

  • @​tiptap/core@​3.18.0

3.17.1

Patch Changes

  • Updated dependencies [aa9709e]
  • Updated dependencies [b46e66a]
    • @​tiptap/core@​3.17.1

3.17.0

Patch Changes

  • Updated dependencies [eecf1c9]
    • @​tiptap/core@​3.17.0

3.16.0

Patch Changes

  • @​tiptap/core@​3.16.0

3.15.3

Patch Changes

  • Updated dependencies [8f86f06]
    • @​tiptap/core@​3.15.3

3.15.2

Patch Changes

  • 8cbf4ae: Fix YouTube Shorts embed URLs using incorrect query parameter separator
    • @​tiptap/core@​3.15.2

3.15.1

Patch Changes

... (truncated)

Commits
  • 73ece76 chore(release): publish a new release version (#7480)
  • a0ab1d6 chore(release): publish a new release version (#7460)
  • f592f0a chore(release): publish a new release version (#7443)
  • 408e1e7 chore(release): publish a new release version (#7440)
  • 332dfba chore(release): publish a new release version (#7413)
  • 3a64925 chore(release): publish a new release version (#7397)
  • 88fedcd chore(release): publish a new release version (#7395)
  • 8cbf4ae Fix YouTube Embed extension for short URLs (#7390)
  • 824e5bd chore(release): publish a new release version (#7385)
  • 559cadb chore(release): publish a new release version (#7383)
  • Additional commits viewable in compare view
Maintainer changes

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


Updates @tiptap/pm from 3.13.0 to 3.19.0

Release notes

Sourced from @​tiptap/pm's releases.

v3.19.0

@​tiptap/extension-link

Patch Changes

  • Add title attribute to Link extension. The title can now be set via setLink and toggleLink commands and is rendered as an HTML title attribute.
  • Add title attribute support for markdown rendering. Links with titles are now serialized to markdown format [text](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/pm/blob/HEAD/url "title").

@​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

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

... (truncated)

Changelog

Sourced from @​tiptap/pm's changelog.

3.19.0

3.18.0

3.17.1

3.17.0

3.16.0

3.15.3

3.15.2

3.15.1

3.15.0

3.14.0

Commits
Maintainer changes

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


Updates @tiptap/react from 3.13.0 to 3.19.0

Release notes

Sourced from @​tiptap/react's releases.

v3.19.0

@​tiptap/extension-link

Patch Changes

  • Add title attribute to Link extension. The title can now be set via setLink and toggleLink commands and is rendered as an HTML title attribute.
  • Add title attribute support for markdown rendering. Links with titles are now serialized to markdown format [text](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/react/blob/HEAD/url "title").

@​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

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

... (truncated)

Changelog

Sourced from @​tiptap/react's changelog.

3.19.0

Minor Changes

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

Patch Changes

  • @​tiptap/core@​3.19.0
  • @​tiptap/pm@​3.19.0

3.18.0

Minor Changes

    Description has been truncated

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Feb 4, 2026
Bumps the tiptap group with 10 updates:

| Package | From | To |
| --- | --- | --- |
| [@tiptap/core](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/core) | `3.13.0` | `3.19.0` |
| [@tiptap/extension-bubble-menu](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-bubble-menu) | `3.13.0` | `3.19.0` |
| [@tiptap/extension-color](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-color) | `3.13.0` | `3.19.0` |
| [@tiptap/extension-image](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-image) | `3.13.0` | `3.19.0` |
| [@tiptap/extension-link](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-link) | `3.13.0` | `3.19.0` |
| [@tiptap/extension-placeholder](https://github.com/ueberdosis/tiptap/tree/HEAD/packages-deprecated/extension-placeholder) | `3.13.0` | `3.19.0` |
| [@tiptap/extension-youtube](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-youtube) | `3.13.0` | `3.19.0` |
| [@tiptap/pm](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/pm) | `3.13.0` | `3.19.0` |
| [@tiptap/react](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/react) | `3.13.0` | `3.19.0` |
| [@tiptap/starter-kit](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/starter-kit) | `3.13.0` | `3.19.0` |


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

Updates `@tiptap/extension-bubble-menu` from 3.13.0 to 3.19.0
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/v3.19.0/packages/extension-bubble-menu/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.19.0/packages/extension-bubble-menu)

Updates `@tiptap/extension-color` from 3.13.0 to 3.19.0
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/v3.19.0/packages/extension-color/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.19.0/packages/extension-color)

Updates `@tiptap/extension-image` from 3.13.0 to 3.19.0
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/v3.19.0/packages/extension-image/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.19.0/packages/extension-image)

Updates `@tiptap/extension-link` from 3.13.0 to 3.19.0
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/v3.19.0/packages/extension-link/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.19.0/packages/extension-link)

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

Updates `@tiptap/extension-youtube` from 3.13.0 to 3.19.0
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/v3.19.0/packages/extension-youtube/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.19.0/packages/extension-youtube)

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

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

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

---
updated-dependencies:
- dependency-name: "@tiptap/core"
  dependency-version: 3.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: tiptap
- dependency-name: "@tiptap/extension-bubble-menu"
  dependency-version: 3.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: tiptap
- dependency-name: "@tiptap/extension-color"
  dependency-version: 3.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: tiptap
- dependency-name: "@tiptap/extension-image"
  dependency-version: 3.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: tiptap
- dependency-name: "@tiptap/extension-link"
  dependency-version: 3.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: tiptap
- dependency-name: "@tiptap/extension-placeholder"
  dependency-version: 3.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: tiptap
- dependency-name: "@tiptap/extension-youtube"
  dependency-version: 3.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: tiptap
- dependency-name: "@tiptap/pm"
  dependency-version: 3.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: tiptap
- dependency-name: "@tiptap/react"
  dependency-version: 3.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: tiptap
- dependency-name: "@tiptap/starter-kit"
  dependency-version: 3.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: tiptap
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/tiptap-15af6bf3cd branch from ccdf671 to 1fae45b Compare February 11, 2026 02:04
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