Release new stable release - #8142
Merged
Merged
Conversation
✅ Deploy Preview for tiptap-embed ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
github-actions
Bot
force-pushed
the
changeset-release/main
branch
12 times, most recently
from
August 10, 2026 00:58
37f2ddb to
5cefbc3
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
August 11, 2026 09:41
5cefbc3 to
1f710b7
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
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:
ListKeymapnow registers aTabshortcut 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 (sinkListItemkeeps 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/corealso exposes a newgetPreviousBlockSibling($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.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 withcreateInRange()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 witheditor.commands.updateDecorations().React and Vue components as widgets
ReactWidgetRendererandVueWidgetRendererrender 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,stopEventandignoreSelection.Documentation
Patch Changes
insertContent,insertContentAtandsetContentfailing when prosemirror-model is loaded more than once.@tiptap/extension-list@3.30.0
Minor Changes
0247d39:
ListKeymapnow registers aTabshortcut 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 (sinkListItemkeeps 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/corealso exposes a newgetPreviousBlockSibling($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
@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.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 withcreateInRange()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 witheditor.commands.updateDecorations().React and Vue components as widgets
ReactWidgetRendererandVueWidgetRendererrender 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,stopEventandignoreSelection.Documentation
Patch Changes
@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.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 withcreateInRange()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 witheditor.commands.updateDecorations().React and Vue components as widgets
ReactWidgetRendererandVueWidgetRendererrender 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,stopEventandignoreSelection.Documentation
Patch Changes
@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.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 withcreateInRange()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 witheditor.commands.updateDecorations().React and Vue components as widgets
ReactWidgetRendererandVueWidgetRendererrender 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,stopEventandignoreSelection.Documentation
Patch Changes
@tiptap/extension-character-count@3.30.0
Patch Changes
@tiptap/extension-dropcursor@3.30.0
Patch Changes
@tiptap/extension-focus@3.30.0
Patch Changes
@tiptap/extension-gapcursor@3.30.0
Patch Changes
@tiptap/extension-history@3.30.0
Patch Changes
@tiptap/extension-list-item@3.30.0
Patch Changes
@tiptap/extension-list-keymap@3.30.0
Patch Changes
@tiptap/extension-placeholder@3.30.0
Patch Changes
@tiptap/extension-table-cell@3.30.0
Patch Changes
@tiptap/extension-table-header@3.30.0
Patch Changes
@tiptap/extension-table-row@3.30.0
Patch Changes
@tiptap/extension-task-item@3.30.0
Patch Changes
@tiptap/extension-task-list@3.30.0
Patch Changes
@tiptap/extension-audio@3.30.0
Patch Changes
@tiptap/extension-blockquote@3.30.0
Patch Changes
@tiptap/extension-bold@3.30.0
Patch Changes
@tiptap/extension-bubble-menu@3.30.0
Patch Changes
@tiptap/extension-bullet-list@3.30.0
Patch Changes
@tiptap/extension-code@3.30.0
Patch Changes
@tiptap/extension-code-block@3.30.0
Patch Changes
@tiptap/extension-code-block-lowlight@3.30.0
Patch Changes
@tiptap/extension-collaboration@3.30.0
Patch Changes
@tiptap/extension-collaboration-caret@3.30.0
Patch Changes
@tiptap/extension-color@3.30.0
Patch Changes
@tiptap/extension-details@3.30.0
Patch Changes
@tiptap/extension-document@3.30.0
Patch Changes
@tiptap/extension-drag-handle@3.30.0
Patch Changes
@tiptap/extension-drag-handle-react@3.30.0
Patch Changes
DragHandlebreaking drag-and-drop whenonNodeChangeis an inline callback, by no longer re-registering its plugin when a callback's identity changes.@tiptap/extension-drag-handle-vue-2@3.30.0
Patch Changes
@tiptap/extension-drag-handle-vue-3@3.30.0
Patch Changes
@tiptap/extension-emoji@3.30.0
Patch Changes
@tiptap/extension-file-handler@3.30.0
Patch Changes
@tiptap/extension-find-and-replace@3.30.0
Patch Changes
@tiptap/extension-floating-menu@3.30.0
Patch Changes
@tiptap/extension-font-family@3.30.0
Patch Changes
@tiptap/extension-hard-break@3.30.0
Patch Changes
@tiptap/extension-heading@3.30.0
Patch Changes
@tiptap/extension-highlight@3.30.0
Patch Changes
@tiptap/extension-horizontal-rule@3.30.0
Patch Changes
@tiptap/extension-image@3.30.0
Patch Changes
@tiptap/extension-invisible-characters@3.30.0
Patch Changes
@tiptap/extension-italic@3.30.0
Patch Changes
@tiptap/extension-link@3.30.0
Patch Changes
@tiptap/extension-mathematics@3.30.0
Patch Changes
@tiptap/extension-mention@3.30.0
Patch Changes
@tiptap/extension-node-range@3.30.0
Patch Changes
@tiptap/extension-ordered-list@3.30.0
Patch Changes
@tiptap/extension-paragraph@3.30.0
Patch Changes
@tiptap/extension-ruby-text@3.30.0
Patch Changes
@tiptap/extension-strike@3.30.0
Patch Changes
@tiptap/extension-subscript@3.30.0
Patch Changes
@tiptap/extension-superscript@3.30.0
Patch Changes
@tiptap/extension-table@3.30.0
Patch Changes
@tiptap/extension-table-of-contents@3.30.0
Patch Changes
@tiptap/extension-text@3.30.0
Patch Changes
@tiptap/extension-text-align@3.30.0
Patch Changes
@tiptap/extension-text-style@3.30.0
Patch Changes
@tiptap/extension-twitch@3.30.0
Patch Changes
@tiptap/extension-typography@3.30.0
Patch Changes
@tiptap/extension-underline@3.30.0
Patch Changes
@tiptap/extension-unique-id@3.30.0
Patch Changes
@tiptap/extension-youtube@3.30.0
Patch Changes
@tiptap/extensions@3.30.0
Patch Changes
@tiptap/html@3.30.0
Patch Changes
@tiptap/markdown@3.30.0
Patch Changes
<b>tag no longer parses into an invalid document. The tag is dropped and its text is kept.@tiptap/pm@3.30.0
Patch Changes
./schema-listexport map pointingtypesatdist/schema/, which is not emitted. Tools that read thetypescondition directly could not resolve@tiptap/pm/schema-list.@tiptap/starter-kit@3.30.0
Patch Changes
@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.@tiptap/static-renderer@3.30.0
Patch Changes
@tiptap/suggestion@3.30.0
Patch Changes