Skip to content

Release new stable release - #8142

Merged
bdbch merged 1 commit into
mainfrom
changeset-release/main
Aug 11, 2026
Merged

Release new stable release#8142
bdbch merged 1 commit into
mainfrom
changeset-release/main

Conversation

@github-actions

@github-actions github-actions Bot commented Jul 30, 2026

Copy link
Copy Markdown
Contributor

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@tiptap/core@3.30.0

Minor Changes

  • 0247d39: ListKeymap now registers a Tab shortcut that sinks a top-level textblock into the previous list's last item. Pressing Tab at the start of a paragraph right after a bullet/ordered/task list moves the paragraph inside the last list item. The handler does nothing when the cursor is already inside a list item (sinkListItem keeps working), when there is no list before the paragraph, when the caret is mid-textblock, or when the selection is not a text selection (for example a gap cursor).

    @tiptap/core also exposes a new getPreviousBlockSibling($pos) helper that returns the block-level sibling before the cursor's textblock, or null at the first child of the block parent.

  • 3099eef: New Decorations API

    Finally the decorations API is here! Even though Decorations itself are nothing new in ProseMirror, the new API makes it much easier to use them in Tiptap without leaving your extensions.

    Decorations change how the document looks without changing the document itself. Highlighting search results, marking spelling mistakes, showing collaborator cursors, putting a drag handle next to every block.

    Until now you had to write a ProseMirror plugin by hand for this, keep the decoration set in plugin state, and map it forward on every transaction. Extensions can now declare decorations directly with a new addDecorations() hook.

    addDecorations() {
      return {
        create: ({ state }) =>
          // findMatches can be any function that returns an array of { from, to } ranges
          findMatches(state.doc).map(match =>
            Decoration.Inline(match.from, match.to, { class: 'highlight' }),
          ),
      }
    }

    There are three kinds. Decoration.Inline() styles a range of text. Decoration.Node() puts attributes on a block's DOM element. Decoration.Widget() renders your own element at a single position.

    Every extension that declares decorations is collected into one plugin, so several extensions can decorate the same document without fighting over it.

    Doing less work on every keystroke

    By default decorations are rebuilt whenever the document changes. That is fine for small documents and wasteful for large ones, so there are two ways to narrow it down.

    shouldUpdate() skips transactions you do not care about. If your decorations only depend on headings, ignore everything else.

    update: 'changedRanges' together with createInRange() only rescans the blocks that actually changed. On a long document this is the difference between scanning the whole thing on every keystroke and scanning one paragraph.

    For decorations driven by data outside the editor, like comments loaded from a server, use update: 'manual' and refresh them yourself with editor.commands.updateDecorations().

    React and Vue components as widgets

    ReactWidgetRenderer and VueWidgetRenderer render a real component into a widget decoration, inside your existing app context. Providers, context and stores work as usual.

    Widgets take a key. Reuse the same key and the component instance stays mounted while the document changes around it, so local state such as an open menu, a counter or a half-typed input survives editing. Use a stable id from your own data, not a position or a list index, otherwise the component remounts and loses that state.

    Widgets also accept the ProseMirror options side, relaxedSide, stopEvent and ignoreSelection.

    Documentation

Patch Changes

  • 51909d3: Fixed insertContent, insertContentAt and setContent failing when prosemirror-model is loaded more than once.
  • Updated dependencies [58a8953]
    • @tiptap/pm@3.30.0

@tiptap/extension-list@3.30.0

Minor Changes

  • 0247d39: ListKeymap now registers a Tab shortcut that sinks a top-level textblock into the previous list's last item. Pressing Tab at the start of a paragraph right after a bullet/ordered/task list moves the paragraph inside the last list item. The handler does nothing when the cursor is already inside a list item (sinkListItem keeps working), when there is no list before the paragraph, when the caret is mid-textblock, or when the selection is not a text selection (for example a gap cursor).

    @tiptap/core also exposes a new getPreviousBlockSibling($pos) helper that returns the block-level sibling before the cursor's textblock, or null at the first child of the block parent.

Patch Changes

  • c296281: Parse block math that follows an ordered list item without a blank line, both after the list and indented inside the item, instead of pulling it into the item's text.
  • ceb0dac: TaskItem: the checkbox label now also fills the wrapping label element, so accessibility audits no longer flag it as empty.
  • Updated dependencies [0247d39]
  • Updated dependencies [58a8953]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0
    • @tiptap/pm@3.30.0

@tiptap/react@3.30.0

Minor Changes

  • 3099eef: New Decorations API

    Finally the decorations API is here! Even though Decorations itself are nothing new in ProseMirror, the new API makes it much easier to use them in Tiptap without leaving your extensions.

    Decorations change how the document looks without changing the document itself. Highlighting search results, marking spelling mistakes, showing collaborator cursors, putting a drag handle next to every block.

    Until now you had to write a ProseMirror plugin by hand for this, keep the decoration set in plugin state, and map it forward on every transaction. Extensions can now declare decorations directly with a new addDecorations() hook.

    addDecorations() {
      return {
        create: ({ state }) =>
          // findMatches can be any function that returns an array of { from, to } ranges
          findMatches(state.doc).map(match =>
            Decoration.Inline(match.from, match.to, { class: 'highlight' }),
          ),
      }
    }

    There are three kinds. Decoration.Inline() styles a range of text. Decoration.Node() puts attributes on a block's DOM element. Decoration.Widget() renders your own element at a single position.

    Every extension that declares decorations is collected into one plugin, so several extensions can decorate the same document without fighting over it.

    Doing less work on every keystroke

    By default decorations are rebuilt whenever the document changes. That is fine for small documents and wasteful for large ones, so there are two ways to narrow it down.

    shouldUpdate() skips transactions you do not care about. If your decorations only depend on headings, ignore everything else.

    update: 'changedRanges' together with createInRange() only rescans the blocks that actually changed. On a long document this is the difference between scanning the whole thing on every keystroke and scanning one paragraph.

    For decorations driven by data outside the editor, like comments loaded from a server, use update: 'manual' and refresh them yourself with editor.commands.updateDecorations().

    React and Vue components as widgets

    ReactWidgetRenderer and VueWidgetRenderer render a real component into a widget decoration, inside your existing app context. Providers, context and stores work as usual.

    Widgets take a key. Reuse the same key and the component instance stays mounted while the document changes around it, so local state such as an open menu, a counter or a half-typed input survives editing. Use a stable id from your own data, not a position or a list index, otherwise the component remounts and loses that state.

    Widgets also accept the ProseMirror options side, relaxedSide, stopEvent and ignoreSelection.

    Documentation

Patch Changes

  • 31e176c: React node views no longer show the selected state when the selection covers a position the node view has moved away from.
  • Updated dependencies [0247d39]
  • Updated dependencies [58a8953]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0
    • @tiptap/pm@3.30.0

@tiptap/vue-2@3.30.0

Minor Changes

  • 3099eef: New Decorations API

    Finally the decorations API is here! Even though Decorations itself are nothing new in ProseMirror, the new API makes it much easier to use them in Tiptap without leaving your extensions.

    Decorations change how the document looks without changing the document itself. Highlighting search results, marking spelling mistakes, showing collaborator cursors, putting a drag handle next to every block.

    Until now you had to write a ProseMirror plugin by hand for this, keep the decoration set in plugin state, and map it forward on every transaction. Extensions can now declare decorations directly with a new addDecorations() hook.

    addDecorations() {
      return {
        create: ({ state }) =>
          // findMatches can be any function that returns an array of { from, to } ranges
          findMatches(state.doc).map(match =>
            Decoration.Inline(match.from, match.to, { class: 'highlight' }),
          ),
      }
    }

    There are three kinds. Decoration.Inline() styles a range of text. Decoration.Node() puts attributes on a block's DOM element. Decoration.Widget() renders your own element at a single position.

    Every extension that declares decorations is collected into one plugin, so several extensions can decorate the same document without fighting over it.

    Doing less work on every keystroke

    By default decorations are rebuilt whenever the document changes. That is fine for small documents and wasteful for large ones, so there are two ways to narrow it down.

    shouldUpdate() skips transactions you do not care about. If your decorations only depend on headings, ignore everything else.

    update: 'changedRanges' together with createInRange() only rescans the blocks that actually changed. On a long document this is the difference between scanning the whole thing on every keystroke and scanning one paragraph.

    For decorations driven by data outside the editor, like comments loaded from a server, use update: 'manual' and refresh them yourself with editor.commands.updateDecorations().

    React and Vue components as widgets

    ReactWidgetRenderer and VueWidgetRenderer render a real component into a widget decoration, inside your existing app context. Providers, context and stores work as usual.

    Widgets take a key. Reuse the same key and the component instance stays mounted while the document changes around it, so local state such as an open menu, a counter or a half-typed input survives editing. Use a stable id from your own data, not a position or a list index, otherwise the component remounts and loses that state.

    Widgets also accept the ProseMirror options side, relaxedSide, stopEvent and ignoreSelection.

    Documentation

Patch Changes

  • bfb9976: Fix FloatingMenu not registering when the editor prop is provided synchronously, which prevented the menu from appearing
  • Updated dependencies [0247d39]
  • Updated dependencies [58a8953]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0
    • @tiptap/pm@3.30.0

@tiptap/vue-3@3.30.0

Minor Changes

  • 3099eef: New Decorations API

    Finally the decorations API is here! Even though Decorations itself are nothing new in ProseMirror, the new API makes it much easier to use them in Tiptap without leaving your extensions.

    Decorations change how the document looks without changing the document itself. Highlighting search results, marking spelling mistakes, showing collaborator cursors, putting a drag handle next to every block.

    Until now you had to write a ProseMirror plugin by hand for this, keep the decoration set in plugin state, and map it forward on every transaction. Extensions can now declare decorations directly with a new addDecorations() hook.

    addDecorations() {
      return {
        create: ({ state }) =>
          // findMatches can be any function that returns an array of { from, to } ranges
          findMatches(state.doc).map(match =>
            Decoration.Inline(match.from, match.to, { class: 'highlight' }),
          ),
      }
    }

    There are three kinds. Decoration.Inline() styles a range of text. Decoration.Node() puts attributes on a block's DOM element. Decoration.Widget() renders your own element at a single position.

    Every extension that declares decorations is collected into one plugin, so several extensions can decorate the same document without fighting over it.

    Doing less work on every keystroke

    By default decorations are rebuilt whenever the document changes. That is fine for small documents and wasteful for large ones, so there are two ways to narrow it down.

    shouldUpdate() skips transactions you do not care about. If your decorations only depend on headings, ignore everything else.

    update: 'changedRanges' together with createInRange() only rescans the blocks that actually changed. On a long document this is the difference between scanning the whole thing on every keystroke and scanning one paragraph.

    For decorations driven by data outside the editor, like comments loaded from a server, use update: 'manual' and refresh them yourself with editor.commands.updateDecorations().

    React and Vue components as widgets

    ReactWidgetRenderer and VueWidgetRenderer render a real component into a widget decoration, inside your existing app context. Providers, context and stores work as usual.

    Widgets take a key. Reuse the same key and the component instance stays mounted while the document changes around it, so local state such as an open menu, a counter or a half-typed input survives editing. Use a stable id from your own data, not a position or a list index, otherwise the component remounts and loses that state.

    Widgets also accept the ProseMirror options side, relaxedSide, stopEvent and ignoreSelection.

    Documentation

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [58a8953]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0
    • @tiptap/pm@3.30.0

@tiptap/extension-character-count@3.30.0

Patch Changes

  • @tiptap/extensions@3.30.0

@tiptap/extension-dropcursor@3.30.0

Patch Changes

  • @tiptap/extensions@3.30.0

@tiptap/extension-focus@3.30.0

Patch Changes

  • @tiptap/extensions@3.30.0

@tiptap/extension-gapcursor@3.30.0

Patch Changes

  • @tiptap/extensions@3.30.0

@tiptap/extension-history@3.30.0

Patch Changes

  • @tiptap/extensions@3.30.0

@tiptap/extension-list-item@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [c296281]
  • Updated dependencies [ceb0dac]
    • @tiptap/extension-list@3.30.0

@tiptap/extension-list-keymap@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [c296281]
  • Updated dependencies [ceb0dac]
    • @tiptap/extension-list@3.30.0

@tiptap/extension-placeholder@3.30.0

Patch Changes

  • @tiptap/extensions@3.30.0

@tiptap/extension-table-cell@3.30.0

Patch Changes

  • Updated dependencies [eded5e4]
    • @tiptap/extension-table@3.30.0

@tiptap/extension-table-header@3.30.0

Patch Changes

  • Updated dependencies [eded5e4]
    • @tiptap/extension-table@3.30.0

@tiptap/extension-table-row@3.30.0

Patch Changes

  • Updated dependencies [eded5e4]
    • @tiptap/extension-table@3.30.0

@tiptap/extension-task-item@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [c296281]
  • Updated dependencies [ceb0dac]
    • @tiptap/extension-list@3.30.0

@tiptap/extension-task-list@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [c296281]
  • Updated dependencies [ceb0dac]
    • @tiptap/extension-list@3.30.0

@tiptap/extension-audio@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0

@tiptap/extension-blockquote@3.30.0

Patch Changes

  • 4ec64c7: Fixed Backspace freezing after merging a paragraph into a blockquote.
  • Updated dependencies [0247d39]
  • Updated dependencies [58a8953]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0
    • @tiptap/pm@3.30.0

@tiptap/extension-bold@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0

@tiptap/extension-bubble-menu@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [58a8953]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0
    • @tiptap/pm@3.30.0

@tiptap/extension-bullet-list@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [c296281]
  • Updated dependencies [ceb0dac]
    • @tiptap/extension-list@3.30.0

@tiptap/extension-code@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0

@tiptap/extension-code-block@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [58a8953]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0
    • @tiptap/pm@3.30.0

@tiptap/extension-code-block-lowlight@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [58a8953]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0
    • @tiptap/pm@3.30.0
    • @tiptap/extension-code-block@3.30.0

@tiptap/extension-collaboration@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [58a8953]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0
    • @tiptap/pm@3.30.0

@tiptap/extension-collaboration-caret@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [58a8953]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0
    • @tiptap/pm@3.30.0

@tiptap/extension-color@3.30.0

Patch Changes

  • @tiptap/extension-text-style@3.30.0

@tiptap/extension-details@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [58a8953]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0
    • @tiptap/pm@3.30.0
    • @tiptap/extension-text-style@3.30.0

@tiptap/extension-document@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0

@tiptap/extension-drag-handle@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [58a8953]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0
    • @tiptap/pm@3.30.0
    • @tiptap/extension-collaboration@3.30.0
    • @tiptap/extension-node-range@3.30.0

@tiptap/extension-drag-handle-react@3.30.0

Patch Changes

  • 390d4db: Fixed the React DragHandle breaking drag-and-drop when onNodeChange is an inline callback, by no longer re-registering its plugin when a callback's identity changes.
  • Updated dependencies [31e176c]
  • Updated dependencies [58a8953]
  • Updated dependencies [3099eef]
    • @tiptap/react@3.30.0
    • @tiptap/pm@3.30.0
    • @tiptap/extension-drag-handle@3.30.0

@tiptap/extension-drag-handle-vue-2@3.30.0

Patch Changes

  • Updated dependencies [bfb9976]
  • Updated dependencies [58a8953]
  • Updated dependencies [3099eef]
    • @tiptap/vue-2@3.30.0
    • @tiptap/pm@3.30.0
    • @tiptap/extension-drag-handle@3.30.0

@tiptap/extension-drag-handle-vue-3@3.30.0

Patch Changes

  • Updated dependencies [58a8953]
  • Updated dependencies [3099eef]
    • @tiptap/pm@3.30.0
    • @tiptap/vue-3@3.30.0
    • @tiptap/extension-drag-handle@3.30.0

@tiptap/extension-emoji@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [58a8953]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0
    • @tiptap/pm@3.30.0
    • @tiptap/suggestion@3.30.0

@tiptap/extension-file-handler@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [58a8953]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0
    • @tiptap/pm@3.30.0
    • @tiptap/extension-text-style@3.30.0

@tiptap/extension-find-and-replace@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [58a8953]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0
    • @tiptap/pm@3.30.0

@tiptap/extension-floating-menu@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [58a8953]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0
    • @tiptap/pm@3.30.0

@tiptap/extension-font-family@3.30.0

Patch Changes

  • @tiptap/extension-text-style@3.30.0

@tiptap/extension-hard-break@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0

@tiptap/extension-heading@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0

@tiptap/extension-highlight@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0

@tiptap/extension-horizontal-rule@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [58a8953]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0
    • @tiptap/pm@3.30.0

@tiptap/extension-image@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0

@tiptap/extension-invisible-characters@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [58a8953]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0
    • @tiptap/pm@3.30.0
    • @tiptap/extension-text-style@3.30.0

@tiptap/extension-italic@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0

@tiptap/extension-link@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [58a8953]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0
    • @tiptap/pm@3.30.0

@tiptap/extension-mathematics@3.30.0

Patch Changes

  • a2ed988: Allow KaTeX 0.18 to be installed with the math extension
  • Updated dependencies [0247d39]
  • Updated dependencies [58a8953]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0
    • @tiptap/pm@3.30.0

@tiptap/extension-mention@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [58a8953]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0
    • @tiptap/pm@3.30.0
    • @tiptap/suggestion@3.30.0

@tiptap/extension-node-range@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [58a8953]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0
    • @tiptap/pm@3.30.0

@tiptap/extension-ordered-list@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [c296281]
  • Updated dependencies [ceb0dac]
    • @tiptap/extension-list@3.30.0

@tiptap/extension-paragraph@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0

@tiptap/extension-ruby-text@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [58a8953]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0
    • @tiptap/pm@3.30.0

@tiptap/extension-strike@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0

@tiptap/extension-subscript@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [58a8953]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0
    • @tiptap/pm@3.30.0

@tiptap/extension-superscript@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [58a8953]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0
    • @tiptap/pm@3.30.0

@tiptap/extension-table@3.30.0

Patch Changes

  • eded5e4: Deleting the last row or column of a table no longer moves the cursor outside the table when there is content below it.
  • Updated dependencies [0247d39]
  • Updated dependencies [58a8953]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0
    • @tiptap/pm@3.30.0

@tiptap/extension-table-of-contents@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [58a8953]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0
    • @tiptap/pm@3.30.0

@tiptap/extension-text@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0

@tiptap/extension-text-align@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0

@tiptap/extension-text-style@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0

@tiptap/extension-twitch@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0

@tiptap/extension-typography@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0

@tiptap/extension-underline@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0

@tiptap/extension-unique-id@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [58a8953]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0
    • @tiptap/pm@3.30.0

@tiptap/extension-youtube@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0

@tiptap/extensions@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [58a8953]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0
    • @tiptap/pm@3.30.0

@tiptap/html@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [58a8953]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0
    • @tiptap/pm@3.30.0

@tiptap/markdown@3.30.0

Patch Changes

  • 03ba40e: Markdown with inline HTML such as an unclosed <b> tag no longer parses into an invalid document. The tag is dropped and its text is kept.
  • Updated dependencies [0247d39]
  • Updated dependencies [58a8953]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0
    • @tiptap/pm@3.30.0

@tiptap/pm@3.30.0

Patch Changes

  • 58a8953: Fix the ./schema-list export map pointing types at dist/schema/, which is not emitted. Tools that read the types condition directly could not resolve @tiptap/pm/schema-list.

@tiptap/starter-kit@3.30.0

Patch Changes

  • d18533a: StarterKit now pins its bundled @tiptap/* dependencies to the exact version it was released with, so installing a specific StarterKit version gives you that version's extension set instead of the newest one.
  • Updated dependencies [0247d39]
  • Updated dependencies [c296281]
  • Updated dependencies [ceb0dac]
  • Updated dependencies [58a8953]
  • Updated dependencies [4ec64c7]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/extension-list@3.30.0
    • @tiptap/core@3.30.0
    • @tiptap/pm@3.30.0
    • @tiptap/extension-blockquote@3.30.0
    • @tiptap/extension-list-item@3.30.0
    • @tiptap/extension-list-keymap@3.30.0
    • @tiptap/extension-bullet-list@3.30.0
    • @tiptap/extension-ordered-list@3.30.0
    • @tiptap/extension-bold@3.30.0
    • @tiptap/extension-code@3.30.0
    • @tiptap/extension-code-block@3.30.0
    • @tiptap/extension-document@3.30.0
    • @tiptap/extension-hard-break@3.30.0
    • @tiptap/extension-heading@3.30.0
    • @tiptap/extension-horizontal-rule@3.30.0
    • @tiptap/extension-italic@3.30.0
    • @tiptap/extension-link@3.30.0
    • @tiptap/extension-paragraph@3.30.0
    • @tiptap/extension-strike@3.30.0
    • @tiptap/extension-text@3.30.0
    • @tiptap/extension-underline@3.30.0
    • @tiptap/extensions@3.30.0
    • @tiptap/extension-dropcursor@3.30.0
    • @tiptap/extension-gapcursor@3.30.0

@tiptap/static-renderer@3.30.0

Patch Changes

  • 9191700: Fixed table cell and header spans in the React static renderer.
  • Updated dependencies [0247d39]
  • Updated dependencies [58a8953]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0
    • @tiptap/pm@3.30.0

@tiptap/suggestion@3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [58a8953]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @tiptap/core@3.30.0
    • @tiptap/pm@3.30.0

@github-actions
github-actions Bot requested a review from a team as a code owner July 30, 2026 08:58
@netlify

netlify Bot commented Jul 30, 2026

Copy link
Copy Markdown

Deploy Preview for tiptap-embed ready!

Name Link
🔨 Latest commit 1f710b7
🔍 Latest deploy log https://app.netlify.com/projects/tiptap-embed/deploys/6a7aee3c7075f900082524a6
😎 Deploy Preview https://deploy-preview-8142--tiptap-embed.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@github-actions
github-actions Bot force-pushed the changeset-release/main branch 12 times, most recently from 37f2ddb to 5cefbc3 Compare August 10, 2026 00:58
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from 5cefbc3 to 1f710b7 Compare August 11, 2026 09:41
@bdbch
bdbch merged commit 7901bc2 into main Aug 11, 2026
13 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant