chore(deps): update tiptap monorepo to v3.29.0 - #826
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
renovate
Bot
force-pushed
the
renovate/tiptap-monorepo
branch
12 times, most recently
from
July 31, 2026 16:42
53dedd2 to
63a5692
Compare
renovate
Bot
force-pushed
the
renovate/tiptap-monorepo
branch
from
August 1, 2026 01:52
63a5692 to
f56d369
Compare
renovate
Bot
force-pushed
the
renovate/tiptap-monorepo
branch
from
August 1, 2026 02:00
f56d369 to
24bf06c
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 contains the following updates:
3.20.0→3.29.03.20.0→3.29.03.20.0→3.29.03.20.0→3.29.03.20.0→3.29.03.20.0→3.29.03.20.0→3.29.03.20.0→3.29.0Release Notes
ueberdosis/tiptap (@tiptap/core)
v3.29.0Compare Source
Patch Changes
d26840f: Fix a TypeScript build error inisAndroid()where comparingnavigator.platformagainst the literal'Android'with===could fail to compile under somelib.dom.d.tstypings ("types have no overlap"). Switched to the same.includes()pattern already used byisiOS(), which is not affected by this TypeScript narrowing issue. No runtime behavior change.935e63f: Fixed a bug where deleting anAllSelection(for example right after Ctrl/Cmd+A) left a lingering "phantom" selection highlight over the emptied document instead of a text cursor.deleteSelectionnow collapses the selection to a cursor.b4c5a2d: Fix input rules crashing when the matched text spans an inline atom node like a mention.a963d48: Node viewgetPos()now returnsundefinedinstead of throwing when the position cannot be resolved yet, for example when React 19 renders a node view component while the editor view is still updating.51f45b6: FixedonContentErrorthrowing when callingeditor.commandsfrom inside the handler on initial load with invalid content. The editor now has a usable state (seeded from the stripped fallback document) beforeonContentErrorfires.0f63969: Fixeditor.$pos()returning the wrong node inside container nodes, for example the list item instead of the list.9acaa65: AddinsertDefaultBlockto insert the default textblock allowed at a position. It accepts an optional position, attributes, content, and selection-update option.e150ee0]v3.28.0Compare Source
Patch Changes
v3.27.4Compare Source
Patch Changes
v3.27.3Compare Source
Patch Changes
023f98c: FixdeleteSelectionto delete content across all selection ranges instead of only the first range. This restores multi-cell table selections and other custom selections with multiple ranges.v3.27.2Compare Source
Patch Changes
ceebb31]v3.27.1Compare Source
Patch Changes
v3.27.0Compare Source
Patch Changes
0d0094d: Ordered lists now support thetypeattribute (a,A,i,I).The
<ol>typeattribute is now fully preserved through the HTML round-trip:type="a"→ lowercase alphabetical markerstype="A"→ uppercase alphabetical markerstype="i"→ lowercase roman numeral markerstype="I"→ uppercase roman numeral markersPaste from external editors (Google Docs, Word, LibreOffice) now correctly detects the list style — both from the HTML
typeattribute and from CSSlist-style-typeproperties.Plain text paste of typed ordered list markers (e.g.
a. Item,I) Item,i. Item\nii. Item) is detected and converted to the correct list type.Markdown round-trip preserves typed markers: parsing
a. Itemcreatestype: "a", and serializing a typed list back to markdown uses the correct prefix (e.g.I.,ii.).Joining of adjacent lists now respects
type— two lists with different types (e.g. default numeric andtype="a") are not merged.795033c:parseAttributesnow supports any word characters at the start of classes or id attributes.0e0c4f9: FixmarksEqualto compare mark arrays as multisets instead of index-by-index, so order of marks no longer affects the result. Broaden the type signature to accept ProseMirrorMarkobjects (wheretypeis an object with anameproperty) alongside the existing JSON mark shape ({ type: string }).6d12bb9: Fix a edge-case inrewriteUnknownContentto not fail on null-ish values inside marks or nodes.v3.26.1Compare Source
Patch Changes
v3.26.0Compare Source
Patch Changes
v3.25.0Compare Source
Patch Changes
ec291dd: Fix: dragging an inline/resizable image within the editor no longer creates a duplicateWhen the
Imageextension was configured withinline: trueorresizeenabled, dragging an image within the editor could insert a duplicate at the drop position instead of moving it. This happened because the browser's native image drag behavior could populatedataTransfer.files, causing the FileHandler extension to intercept the drop before ProseMirror's internal move logic could run.454e9b8: Addclearablemark option (defaulttrue).unsetAllMarksnow skips marks withclearable: false, so semantic marks like comments are not removed by "clear formatting".9cf8db0: AddattrsEqualandmarksEqualutility functions to@tiptap/core.attrsEqualcompares two attribute objects for equality regardless of key ordering.marksEqualcompares two arrays of mark objects by type and attributes usingattrsEqual.3d4f94c: Fix plain-text copy of table cell selections including content from unselected cells in between. Each selected range is now serialized independently and joined in document order, so dragging upward (reverse selection) also produces output in document order.Updated dependencies [
c1a2ce8]v3.24.0Compare Source
Patch Changes
7c0499b]v3.23.6Compare Source
Patch Changes
d168376: Fix deleteSelection to properly handle inline nodes withtext*content. The selection is now expanded to include the entire inline node boundaries when deleting, preventing incorrect collapse of inline text nodes.v3.23.5Compare Source
Patch Changes
835caf5: Fix $pos() returning correct node for non-text atom nodes instead of doc node95e138c: fix(nodeview): eliminate unnecessary re-renders, add opt-in position trackingNodeViews no longer re-render when decorations or position change without
content changes. Added
trackNodeViewPositionoption — when enabled, thecomponent re-renders on every position shift so calls to
getPos()staycurrent in render output. Removed the internal
nodeViewPositionRegistry.Added shallow prop comparison in
ReactRenderer.updateProps().v3.23.4Compare Source
Patch Changes
v3.23.2Compare Source
Patch Changes
f98eaaf: Fix"HTML entity encoding ingetHTML()output for inline style attributes. Adds agetStylePropertyutility to@tiptap/coreand migratesColor,BackgroundColor,FontFamily,FontSize,LineHeight, andHighlightextensions to use it (#7016)v3.23.1Compare Source
Patch Changes
v3.22.5Compare Source
Patch Changes
a375002: AddselectedOnTextSelectionoption to node view renderers. When enabled, theselectedprop also becomes true when a TextSelection is fully inside the node's range, not only on NodeSelection.v3.22.4Compare Source
Patch Changes
27ea931: Fix dependencies installation after packages updates producing peer dependency resolution conflicts64f36b8: Fix text selection collapsing after toggling off a list with AllSelection27ea931]032f8f1]v3.22.3Patch Changes
cb28e7b: FixedinsertContentAtcorrupting the document when inserting inline content with marks at the start of a paragraph. Thefrom - 1position adjustment now only applies to block-level content.v3.22.2Patch Changes
f1d504c: Fix incorrect selection placement when pasting at the end of a marked text node, ensuring inclusive marks are respected404c683: Fixes list toggling when the entire document is selectedv3.22.1Compare Source
Patch Changes
ee03ac0: Fix NodeView not re-rendering when a node's position changes without content or decoration changes (e.g. when a sibling node is moved within the same parent)b88f9ed: Don't stop dragover/dragenter events in NodeViews, to prevent spurious drag-copy cursorsv3.22.0Compare Source
Patch Changes
912a49b: Fix HTML character escaping in markdown roundtrip. HTML entities (<,>,&,") are now decoded to literal characters when parsing markdown into the editor.<,>, and&are re-encoded when serializing back to markdown, while"is preserved as a literal character since double quotes are ordinary in markdown. Code detection for skipping encoding now uses thecode: trueextension spec instead of hardcoded type names. Literal characters inside code blocks and inline code are always preserved.7d4fb9a: Fix ResizableNodeView ignoring node's inline setting by usinginline-flexfor inline nodes andflexfor block nodes0c1c112: extendMarkRange defaults to using the attributes of the first mark of the given type, instead ofattributes = {}. In particular,extendMarkRange('link')no longer extends to adjacent links with different hrefs; restore the previous behavior withextendMarkRange('link', {}).0c1c112: Fix getMarkRange attributes default to consider the first mark of the given typef99bdc2: Guard mark delete event handling whenunsetMarkremoves a mark from inline content that starts at position0, preventing aRangeErrorduring the before-node lookup.v3.21.0Compare Source
Patch Changes
v3.20.6Compare Source
Patch Changes
v3.20.5Patch Changes
v3.20.4Patch Changes
0bcf3c2: Fixed Tiptap not publishing with build dist artifactsv3.20.3Compare Source
Patch Changes
c94fac4: FixedisNodeEmpty()so multi-line text with non-whitespace content is no longer treated as empty whenignoreWhitespaceis enabled.6b9ea92: Fixed overlapping bold and italic markdown serialization and round-tripping.v3.20.2Compare Source
Patch Changes
269823d: Improved markdown empty-paragraph roundtripping across top-level and nested block content. Empty paragraphs now serialize with natural blank-line spacing for the first paragraph in a run and markers for subsequent empty paragraphs at the same level, while parsing preserves those empty paragraphs when converting markdown back to JSON.v3.20.1Compare Source
Patch Changes
25f57e4: Fix inlinestyleparsing inmergeAttributesfor values containing:or;(e.g.url(https://...)orurl(data:...;charset=...,)) and skip incomplete declarationsueberdosis/tiptap (@tiptap/extension-image)
v3.29.0Compare Source
Patch Changes
a7c42fe: Fix resizable images not synchronizing rendered attributes after updatesd26840f]935e63f]b4c5a2d]a963d48]51f45b6]0f63969]9acaa65]v3.28.0Compare Source
Patch Changes
v3.27.4Compare Source
Patch Changes
v3.27.3Compare Source
Patch Changes
023f98c]v3.27.2Compare Source
Patch Changes
v3.27.1Compare Source
Patch Changes
v3.27.0Compare Source
Patch Changes
0d0094d]795033c]0e0c4f9]6d12bb9]v3.26.1Compare Source
Patch Changes
v3.26.0Compare Source
Patch Changes
v3.25.0Compare Source
Patch Changes
ec291dd: Fix: dragging an inline/resizable image within the editor no longer creates a duplicateWhen the
Imageextension was configured withinline: trueorresizeenabled, dragging an image within the editor could insert a duplicate at the drop position instead of moving it. This happened because the browser's native image drag behavior could populatedataTransfer.files, causing the FileHandler extension to intercept the drop before ProseMirror's internal move logic could run.b63835b: FixHTMLAttributesnot being applied to the editor DOM whenresizeis enabled. TheaddNodeViewpath was using only the resolved node attributes and skipping the user-configuredHTMLAttributesoption. Now it merges them consistently with howrenderHTMLalready works.Updated dependencies [
ec291dd]Updated dependencies [
454e9b8]Updated dependencies [
9cf8db0]Updated dependencies [
3d4f94c]v3.24.0Compare Source
Patch Changes
v3.23.6Compare Source
Patch Changes
d168376]v3.23.5Compare Source
Patch Changes
835caf5]95e138c]v3.23.4Compare Source
Patch Changes
v3.23.2Compare Source
Patch Changes
f98eaaf]v3.23.1Compare Source
Patch Changes
v3.22.5Compare Source
Patch Changes
a375002]v3.22.4Compare Source
Patch Changes
27ea931: Fix dependencies installation after packages updates producing peer dependency resolution conflicts27ea931]64f36b8]v3.22.3Patch Changes
cb28e7b]v3.22.2Patch Changes
f1d504c]404c683]v3.22.1Compare Source
Patch Changes
ee03ac0]b88f9ed]v3.22.0Compare Source
Patch Changes
912a49b]7d4fb9a]0c1c112]0c1c112]f99bdc2]v3.21.0Compare Source
Patch Changes
v3.20.6Compare Source
Patch Changes
v3.20.5Patch Changes
v3.20.4Patch Changes
0bcf3c2]v3.20.3Compare Source
Patch Changes
c94fac4]6b9ea92]v3.20.2Compare Source
Patch Changes
269823d]v3.20.1Compare Source
Patch Changes
25f57e4]ueberdosis/tiptap (@tiptap/extension-paragraph)
v3.29.0Compare Source
Patch Changes
d26840f]935e63f]b4c5a2d]a963d48]51f45b6]0f63969]9acaa65]v3.28.0Compare Source
Patch Changes
v3.27.4Compare Source
Patch Changes
v3.27.3Compare Source
Patch Changes
023f98c]v3.27.2Compare Source
Patch Changes
v3.27.1Compare Source
Patch Changes
v3.27.0Compare Source
Patch Changes
0d0094d]795033c]0e0c4f9]6d12bb9]v3.26.1Compare Source
Patch Changes
v3.26.0Compare Source
Patch Changes
v3.25.0Compare Source
Patch Changes
ec291dd]454e9b8]9cf8db0]3d4f94c]v3.24.0Compare Source
Patch Changes
v3.23.6Compare Source
Patch Changes
d168376]v3.23.5Compare Source
Patch Changes
835caf5]95e138c]v3.23.4Compare Source
Patch Changes
v3.23.2Compare Source
Patch Changes
f98eaaf]v3.23.1Compare Source
Patch Changes
v3.22.5Compare Source
Patch Changes
a375002]v3.22.4Compare Source
Patch Changes
27ea931: Fix dependencies installation after packages updates producing peer dependency resolution conflicts27ea931]64f36b8]v3.22.3Patch Changes
cb28e7b]v3.22.2Patch Changes
f1d504c]404c683]v3.22.1Compare Source
Patch Changes
ee03ac0]b88f9ed]v3.22.0Compare Source
Patch Changes
912a49b]7d4fb9a]0c1c112]0c1c112]f99bdc2]v3.21.0Compare Source
Patch Changes
v3.20.6Compare Source
Patch Changes
v3.20.5Patch Changes
v3.20.4Patch Changes
0bcf3c2]v3.20.3Compare Source
Patch Changes
c94fac4]6b9ea92]v3.20.2Compare Source
Patch Changes
269823d: Improved markdown empty-paragraph roundtripping across top-level and nested block content. Empty paragraphs now serialize with natural blank-line spacing for the first paragraph in a run and markers for subsequent empty paragraphs at the same level, while parsing preserves those empty paragraphs when converting markdown back to JSON.269823d]v3.20.1Compare Source
Patch Changes
25f57e4]ueberdosis/tiptap (@tiptap/extension-subscript)
v3.29.0Compare Source
Patch Changes
d26840f]e150ee0]935e63f]b4c5a2d]a963d48]51f45b6]0f63969]9acaa65]v3.28.0Compare Source
Patch Changes
v3.27.4Compare Source
Patch Changes
v3.27.3Compare Source
Patch Changes
023f98c]v3.27.2Compare Source
Patch Changes
ceebb31]v3.27.1Compare Source
Patch Changes
v3.27.0Compare Source
Patch Changes
0d0094d]795033c]0e0c4f9]6d12bb9]v3.26.1Compare Source
Patch Changes
v3.26.0Compare Source
Patch Changes
v3.25.0Compare Source
Patch Changes
ec291dd]454e9b8]9cf8db0]c1a2ce8]3d4f94c][
v3.24.0](https://redirect.github.com/ueberdosis/tiptap/blob/Configuration
📅 Schedule: (in timezone Asia/Tokyo)
* 22-23,0-4 * * 1-5)🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR was generated by Mend Renovate. View the repository job log.