Skip to content

fix(deps): update tiptap to ^3.25.0 (main)#8683

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/main-tiptap
Open

fix(deps): update tiptap to ^3.25.0 (main)#8683
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/main-tiptap

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented May 31, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@tiptap/core (source) ^3.23.6^3.25.0 age confidence
@tiptap/extension-blockquote (source) ^3.23.6^3.25.0 age confidence
@tiptap/extension-bold (source) ^3.23.6^3.25.0 age confidence
@tiptap/extension-code (source) ^3.23.6^3.25.0 age confidence
@tiptap/extension-code-block (source) ^3.23.6^3.25.0 age confidence
@tiptap/extension-code-block-lowlight (source) ^3.23.6^3.25.0 age confidence
@tiptap/extension-collaboration (source) ^3.23.6^3.25.0 age confidence
@tiptap/extension-collaboration-caret (source) ^3.23.6^3.25.0 age confidence
@tiptap/extension-document (source) ^3.23.6^3.25.0 age confidence
@tiptap/extension-drag-handle (source) ^3.23.6^3.25.0 age confidence
@tiptap/extension-drag-handle-vue-2 (source) ^3.23.6^3.25.0 age confidence
@tiptap/extension-hard-break (source) ^3.23.6^3.25.0 age confidence
@tiptap/extension-heading (source) ^3.23.6^3.25.0 age confidence
@tiptap/extension-highlight (source) ^3.23.6^3.25.0 age confidence
@tiptap/extension-horizontal-rule (source) ^3.23.6^3.25.0 age confidence
@tiptap/extension-image (source) ^3.23.6^3.25.0 age confidence
@tiptap/extension-italic (source) ^3.23.6^3.25.0 age confidence
@tiptap/extension-link (source) ^3.23.6^3.25.0 age confidence
@tiptap/extension-list (source) ^3.23.6^3.25.0 age confidence
@tiptap/extension-mathematics (source) ^3.23.6^3.25.0 age confidence
@tiptap/extension-mention (source) ^3.23.6^3.25.0 age confidence
@tiptap/extension-paragraph (source) ^3.23.6^3.25.0 age confidence
@tiptap/extension-placeholder (source) ^3.23.6^3.25.0 age confidence
@tiptap/extension-strike (source) ^3.23.6^3.25.0 age confidence
@tiptap/extension-table (source) ^3.23.6^3.25.0 age confidence
@tiptap/extension-text (source) ^3.23.6^3.25.0 age confidence
@tiptap/extension-typography (source) ^3.23.6^3.25.0 age confidence
@tiptap/extension-underline (source) ^3.23.6^3.25.0 age confidence
@tiptap/extensions (source) ^3.23.6^3.25.0 age confidence
@tiptap/pm (source) ^3.23.6^3.25.0 age confidence
@tiptap/suggestion (source) ^3.23.6^3.25.0 age confidence
@tiptap/vue-2 (source) ^3.23.6^3.25.0 age confidence

Release Notes

ueberdosis/tiptap (@​tiptap/core)

v3.25.0

Compare Source

Patch Changes
  • ec291dd: Fix: dragging an inline/resizable image within the editor no longer creates a duplicate

    When the Image extension was configured with inline: true or resize enabled, 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 populate dataTransfer.files, causing the FileHandler extension to intercept the drop before ProseMirror's internal move logic could run.

  • 454e9b8: Add clearable mark option (default true). unsetAllMarks now skips marks with clearable: false, so semantic marks like comments are not removed by "clear formatting".

  • 9cf8db0: Add attrsEqual and marksEqual utility functions to @tiptap/core. attrsEqual compares two attribute objects for equality regardless of key ordering. marksEqual compares two arrays of mark objects by type and attributes using attrsEqual.

  • 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.0

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extension-blockquote)

v3.25.0

Compare Source

Patch Changes

v3.24.0

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extension-bold)

v3.25.0

Compare Source

Patch Changes

v3.24.0

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extension-code)

v3.25.0

Compare Source

Patch Changes
  • 7d0ce2a: Fixed a bug where typing a character before an inline code markdown shortcut (e.g. a followed by backtick-delimited code) would delete the preceding character. The preceding character is now preserved.
  • Updated dependencies [ec291dd]
  • Updated dependencies [454e9b8]
  • Updated dependencies [9cf8db0]
  • Updated dependencies [3d4f94c]

v3.24.0

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extension-code-block)

v3.25.0

Compare Source

Patch Changes

v3.24.0

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extension-code-block-lowlight)

v3.25.0

Compare Source

Patch Changes

v3.24.0

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extension-collaboration)

v3.25.0

Compare Source

Patch Changes
  • 3163b13: Fixed onContentError not being triggered when invalid collaborative content is detected. The filterTransaction hook now allows the transaction through to keep ProseMirror state in sync with Yjs, ensuring the contentError event fires correctly.
  • Updated dependencies [ec291dd]
  • Updated dependencies [454e9b8]
  • Updated dependencies [9cf8db0]
  • Updated dependencies [c1a2ce8]
  • Updated dependencies [3d4f94c]

v3.24.0

Compare Source

Patch Changes
  • de337e8: Fix a memory leak where destroying an editor while its Y.Doc/provider stays alive (e.g. multiple editors sharing one provider) left the editor uncollectable. Yjs' UndoManager registered a doc.on('destroy', ...) listener that was never removed, keeping the UndoManager — and through it the whole editor — reachable from the long-lived doc. Fixed upstream in @tiptap/y-tiptap; this bumps the dependency to pull in the fix.
  • Updated dependencies [7c0499b]
ueberdosis/tiptap (@​tiptap/extension-collaboration-caret)

v3.25.0

Compare Source

Patch Changes

v3.24.0

Compare Source

Patch Changes
  • 976b8e3: Fix memory leak when destroying an editor while the collaboration provider stays alive (e.g. multiple editors sharing one provider). The extension's awareness update listener is now removed on destroy, so the editor can be garbage collected.
  • Updated dependencies [7c0499b]
ueberdosis/tiptap (@​tiptap/extension-document)

v3.25.0

Compare Source

Patch Changes

v3.24.0

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extension-drag-handle)

v3.25.0

Compare Source

Patch Changes

v3.24.0

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extension-drag-handle-vue-2)

v3.25.0

Compare Source

Patch Changes

v3.24.0

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extension-hard-break)

v3.25.0

Compare Source

Patch Changes

v3.24.0

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extension-heading)

v3.25.0

Compare Source

Patch Changes

v3.24.0

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extension-highlight)

v3.25.0

Compare Source

Patch Changes

v3.24.0

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extension-horizontal-rule)

v3.25.0

Compare Source

Patch Changes

v3.24.0

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extension-image)

v3.25.0

Compare Source

Patch Changes
  • ec291dd: Fix: dragging an inline/resizable image within the editor no longer creates a duplicate

    When the Image extension was configured with inline: true or resize enabled, 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 populate dataTransfer.files, causing the FileHandler extension to intercept the drop before ProseMirror's internal move logic could run.

  • b63835b: Fix HTMLAttributes not being applied to the editor DOM when resize is enabled. The addNodeView path was using only the resolved node attributes and skipping the user-configured HTMLAttributes option. Now it merges them consistently with how renderHTML already works.

  • Updated dependencies [ec291dd]

  • Updated dependencies [454e9b8]

  • Updated dependencies [9cf8db0]

  • Updated dependencies [3d4f94c]

v3.24.0

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extension-italic)

v3.25.0

Compare Source

Patch Changes

v3.24.0

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extension-link)

v3.25.0

Compare Source

Patch Changes

v3.24.0

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extension-list)

v3.25.0

Compare Source

Minor Changes
  • 45237e7: ListKeymap's Backspace handler now lifts the current list item before merging. At the start of a non-first list item, the item is lifted out of its wrapping list (splitting the list around it) instead of immediately joining its content into the previous item. A second Backspace then hits the existing "paragraph after a list" branch and merges the lifted textblock's content into the previous list's last item. Mirrors the two-step behavior introduced for blockquote in #​7891.
Patch Changes
  • 8dc5694: Fix delete at the end of a list item with a branching nested sublist. Nested items are hoisted to the parent list instead of being node-selected and deleted on the next keypress.
  • Updated dependencies [ec291dd]
  • Updated dependencies [454e9b8]
  • Updated dependencies [9cf8db0]
  • Updated dependencies [c1a2ce8]
  • Updated dependencies [3d4f94c]

v3.24.0

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extension-mathematics)

v3.25.0

Compare Source

Patch Changes

v3.24.0

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extension-mention)

v3.25.0

Compare Source

Patch Changes

v3.24.0

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extension-paragraph)

v3.25.0

Compare Source

Patch Changes

v3.24.0

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extension-placeholder)

v3.25.0

Compare Source

Patch Changes

v3.24.0

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extension-strike)

v3.25.0

Compare Source

Patch Changes

v3.24.0

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extension-table)

v3.25.0

Compare Source

Patch Changes
  • 86e29ec: Fix HTMLAttributes not being applied to the <table> element when resizable is disabled (the default). The TableView node view (introduced in 3.23) bypassed renderHTML and never applied user-configured attributes like class or data-* to the rendered table element.
  • Updated dependencies [ec291dd]
  • Updated dependencies [454e9b8]
  • Updated dependencies [9cf8db0]
  • Updated dependencies [c1a2ce8]
  • Updated dependencies [3d4f94c]

v3.24.0

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extension-text)

v3.25.0

Compare Source

Patch Changes

v3.24.0

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extension-typography)

v3.25.0

Compare Source

Patch Changes

v3.24.0

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extension-underline)

v3.25.0

Compare Source

Patch Changes

v3.24.0

[Compare Source](https://redirect.github.com/ueberdosis/tiptap/compare/v3.23.6...v3

Note

PR body was truncated to here.


Configuration

📅 Schedule: (in timezone Europe/Berlin)

  • Branch creation
    • "every weekend"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot requested a review from max-nextcloud as a code owner May 31, 2026 04:28
@renovate renovate Bot added the dependencies Pull requests that update a dependency file label May 31, 2026
@renovate renovate Bot requested review from mejo- and silverkszlo as code owners May 31, 2026 04:28
@renovate renovate Bot added the dependencies Pull requests that update a dependency file label May 31, 2026
@renovate renovate Bot force-pushed the renovate/main-tiptap branch from 33bbaeb to e107791 Compare June 1, 2026 11:40
@renovate renovate Bot force-pushed the renovate/main-tiptap branch from e107791 to 2cb08c4 Compare June 3, 2026 08:06
@renovate renovate Bot changed the title fix(deps): update tiptap to ^3.24.0 (main) fix(deps): update tiptap to ^3.25.0 (main) Jun 3, 2026
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants