Skip to content

fix(deps): update tiptap to ^3.23.6 (stable1.0)#2661

Open
renovate[bot] wants to merge 1 commit into
stable1.0from
renovate/stable1.0-tiptap
Open

fix(deps): update tiptap to ^3.23.6 (stable1.0)#2661
renovate[bot] wants to merge 1 commit into
stable1.0from
renovate/stable1.0-tiptap

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented May 15, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@tiptap/extension-character-count (source) ^3.23.1^3.23.6 age confidence
@tiptap/extension-task-item (source) ^3.23.1^3.23.6 age confidence
@tiptap/extension-task-list (source) ^3.23.1^3.23.6 age confidence
@tiptap/starter-kit (source) ^3.23.1^3.23.6 age confidence
@tiptap/vue-2 (source) ^3.23.1^3.23.6 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

ueberdosis/tiptap (@​tiptap/extension-character-count)

v3.23.6

Compare Source

Patch Changes

v3.23.5

Compare Source

Patch Changes

v3.23.4

Compare Source

Patch Changes

v3.23.2

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extension-task-item)

v3.23.6

Compare Source

@​tiptap/extension-drag-handle
Patch Changes
@​tiptap/core
Patch Changes
  • 937ff2e: Fix deleteSelection to properly handle inline nodes with text* content. The selection is now expanded to include the entire inline node boundaries when deleting, preventing incorrect collapse of inline text nodes.
  • @​tiptap/pm@​3.23.6
@​tiptap/extensions
Patch Changes
  • 937ff2e: Placeholder: Replaced full-document doc.descendants() traversal with a cursor-resolved fast path for the default config and viewport-limited scanning for the non-default config, significantly reducing decoration overhead on large documents.
  • Updated dependencies [937ff2e]
@​tiptap/extension-drag-handle-react
Patch Changes
@​tiptap/extension-drag-handle-vue-2
Patch Changes
@​tiptap/extension-drag-handle-vue-3
Patch Changes
@​tiptap/extension-audio
Patch Changes
@​tiptap/extension-blockquote
Patch Changes
@​tiptap/extension-bold
Patch Changes
@​tiptap/extension-bubble-menu
Patch Changes
@​tiptap/extension-code
Patch Changes
@​tiptap/extension-code-block
Patch Changes
@​tiptap/extension-code-block-lowlight
Patch Changes
@​tiptap/extension-collaboration
Patch Changes
@​tiptap/extension-collaboration-caret
Patch Changes
@​tiptap/extension-details
Patch Changes
@​tiptap/extension-document
Patch Changes
@​tiptap/extension-emoji
Patch Changes
@​tiptap/extension-file-handler
Patch Changes
@​tiptap/extension-floating-menu
Patch Changes
@​tiptap/extension-hard-break
Patch Changes
@​tiptap/extension-heading
Patch Changes
@​tiptap/extension-highlight
Patch Changes
@​tiptap/extension-horizontal-rule
Patch Changes
@​tiptap/extension-image
Patch Changes
@​tiptap/extension-invisible-characters
Patch Changes
@​tiptap/extension-italic
Patch Changes
@​tiptap/extension-link
Patch Changes
@​tiptap/extension-list
Patch Changes
@​tiptap/extension-mathematics
Patch Changes
@​tiptap/extension-mention
Patch Changes
@​tiptap/extension-node-range
Patch Changes
@​tiptap/extension-paragraph
Patch Changes
@​tiptap/extension-strike
Patch Changes
@​tiptap/extension-subscript
Patch Changes
@​tiptap/extension-superscript
Patch Changes
@​tiptap/extension-table
Patch Changes
@​tiptap/extension-table-of-contents
Patch Changes
@​tiptap/extension-text
Patch Changes
@​tiptap/extension-text-align
Patch Changes
@​tiptap/extension-text-style
Patch Changes
@​tiptap/extension-twitch
Patch Changes
@​tiptap/extension-typography
Patch Changes
@​tiptap/extension-underline
Patch Changes
@​tiptap/extension-unique-id
Patch Changes
@​tiptap/extension-youtube
Patch Changes
@​tiptap/html
Patch Changes
@​tiptap/markdown
Patch Changes
@​tiptap/react
Patch Changes
@​tiptap/static-renderer
Patch Changes
@​tiptap/suggestion
Patch Changes
@​tiptap/vue-2
Patch Changes
@​tiptap/vue-3
Patch Changes
@​tiptap/extension-character-count
Patch Changes
@​tiptap/extension-dropcursor
Patch Changes
@​tiptap/extension-focus
Patch Changes
@​tiptap/extension-gapcursor
Patch Changes
@​tiptap/extension-history
Patch Changes
@​tiptap/extension-placeholder
Patch Changes
@​tiptap/extension-list-item
Patch Changes
@​tiptap/extension-list-keymap
Patch Changes
@​tiptap/extension-task-item
Patch Changes
@​tiptap/extension-task-list
Patch Changes
@​tiptap/extension-bullet-list
Patch Changes
@​tiptap/extension-ordered-list
Patch Changes
@​tiptap/extension-table-cell
Patch Changes
@​tiptap/extension-table-header
Patch Changes
@​tiptap/extension-table-row
Patch Changes
@​tiptap/extension-color
Patch Changes
@​tiptap/extension-font-family
Patch Changes
@​tiptap/starter-kit
Patch Changes

v3.23.5

Compare Source

@​tiptap/markdown
Patch Changes
  • 7bf0e73: Fix extra mark tokens after inline atom nodes during Markdown serialization
  • 7bf0e73: Fix adjacent marks of the same type with different attributes being merged during Markdown serialization
  • Updated dependencies [7bf0e73]
  • Updated dependencies [7bf0e73]
@​tiptap/core
Patch Changes
  • 7bf0e73: Fix $pos() returning correct node for non-text atom nodes instead of doc node

  • 7bf0e73: fix(nodeview): eliminate unnecessary re-renders, add opt-in position tracking

    NodeViews no longer re-render when decorations or position change without
    content changes. Added trackNodeViewPosition option — when enabled, the
    component re-renders on every position shift so calls to getPos() stay
    current in render output. Removed the internal nodeViewPositionRegistry.
    Added shallow prop comparison in ReactRenderer.updateProps().

  • @​tiptap/pm@​3.23.5

@​tiptap/react
Patch Changes
  • 7bf0e73: Respect explicit immediatelyRender: true in client-side Next.js. Previously, when running under Next.js (window.next present), the immediatelyRender option was forced to false even when the user explicitly passed true, breaking client-only Next.js apps that rely on the editor existing on the first render. The hook now only forces false when actual SSR is detected (typeof window === 'undefined'), or when running under Next.js with no explicit value.

  • 7bf0e73: fix(nodeview): eliminate unnecessary re-renders, add opt-in position tracking

    NodeViews no longer re-render when decorations or position change without
    content changes. Added trackNodeViewPosition option — when enabled, the
    component re-renders on every position shift so calls to getPos() stay
    current in render output. Removed the internal nodeViewPositionRegistry.
    Added shallow prop comparison in ReactRenderer.updateProps().

  • Updated dependencies [7bf0e73]

  • Updated dependencies [7bf0e73]

@​tiptap/vue-2
Patch Changes
  • 7bf0e73: fix(nodeview): eliminate unnecessary re-renders, add opt-in position tracking

    NodeViews no longer re-render when decorations or position change without
    content changes. Added trackNodeViewPosition option — when enabled, the
    component re-renders on every position shift so calls to getPos() stay
    current in render output. Removed the internal nodeViewPositionRegistry.
    Added shallow prop comparison in ReactRenderer.updateProps().

  • Updated dependencies [7bf0e73]

  • Updated dependencies [7bf0e73]

@​tiptap/vue-3
Patch Changes
  • 7bf0e73: fix(nodeview): eliminate unnecessary re-renders, add opt-in position tracking

    NodeViews no longer re-render when decorations or position change without
    content changes. Added trackNodeViewPosition option — when enabled, the
    component re-renders on every position shift so calls to getPos() stay
    current in render output. Removed the internal nodeViewPositionRegistry.
    Added shallow prop comparison in ReactRenderer.updateProps().

  • Updated dependencies [7bf0e73]

  • Updated dependencies [7bf0e73]

@​tiptap/extension-drag-handle-react
Patch Changes
@​tiptap/extension-audio
Patch Changes
@​tiptap/extension-blockquote
Patch Changes
@​tiptap/extension-bold
Patch Changes
@​tiptap/extension-bubble-menu
Patch Changes
@​tiptap/extension-code
Patch Changes
@​tiptap/extension-code-block
Patch Changes
@​tiptap/extension-code-block-lowlight
Patch Changes
@​tiptap/extension-collaboration
Patch Changes
@​tiptap/extension-collaboration-caret
Patch Changes
@​tiptap/extension-details
Patch Changes
@​tiptap/extension-document
Patch Changes
@​tiptap/extension-drag-handle
Patch Changes
@​tiptap/extension-emoji
Patch Changes
@​tiptap/extension-file-handler
Patch Changes
@​tiptap/extension-floating-menu
Patch Changes
@​tiptap/extension-hard-break
Patch Changes
@​tiptap/extension-heading
Patch Changes
@​tiptap/extension-highlight
Patch Changes
@​tiptap/extension-horizontal-rule
Patch Changes
@​tiptap/extension-image
Patch Changes
@​tiptap/extension-invisible-characters
Patch Changes
@​tiptap/extension-italic
Patch Changes
@​tiptap/extension-link
Patch Changes
@​tiptap/extension-list
Patch Changes
@​tiptap/extension-mathematics
Patch Changes
@​tiptap/extension-mention
Patch Changes
@​tiptap/extension-node-range
Patch Changes
@​tiptap/extension-paragraph
Patch Changes
@​tiptap/extension-strike
Patch Changes
@​tiptap/extension-subscript
Patch Changes
@​tiptap/extension-superscript
Patch Changes
@​tiptap/extension-table
Patch Changes
@​tiptap/extension-table-of-contents
Patch Changes
@​tiptap/extension-text
Patch Changes
@​tiptap/extension-text-align
Patch Changes
@​tiptap/extension-text-style
Patch Changes
@​tiptap/extension-twitch
Patch Changes
@​tiptap/extension-typography
Patch Changes
@​tiptap/extension-underline
Patch Changes
@​tiptap/extension-unique-id
Patch Changes
  • Updated dependencies [7bf0e73]
  • Updated depende

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 review from blizzz and enjeck as code owners May 15, 2026 16:09
@renovate renovate Bot added 3. to review Waiting for reviews dependencies Pull requests that update a dependency file labels May 15, 2026
@renovate renovate Bot force-pushed the renovate/stable1.0-tiptap branch from 6c5be04 to c35fd2f Compare May 19, 2026 16:40
@renovate renovate Bot changed the title fix(deps): update tiptap to ^3.23.4 (stable1.0) fix(deps): update dependency @tiptap/extension-character-count to ^3.23.2 (stable1.0) May 19, 2026
@renovate renovate Bot force-pushed the renovate/stable1.0-tiptap branch from c35fd2f to 7930977 Compare May 19, 2026 16:43
@renovate renovate Bot changed the title fix(deps): update dependency @tiptap/extension-character-count to ^3.23.2 (stable1.0) fix(deps): update tiptap to ^3.23.2 (stable1.0) May 19, 2026
@renovate renovate Bot force-pushed the renovate/stable1.0-tiptap branch from 7930977 to 28c64e3 Compare May 20, 2026 16:57
@renovate renovate Bot changed the title fix(deps): update tiptap to ^3.23.2 (stable1.0) fix(deps): update tiptap to ^3.23.4 (stable1.0) May 20, 2026
@renovate renovate Bot force-pushed the renovate/stable1.0-tiptap branch from 28c64e3 to d39ef32 Compare May 26, 2026 20:29
@renovate renovate Bot changed the title fix(deps): update tiptap to ^3.23.4 (stable1.0) fix(deps): update tiptap to ^3.23.5 (stable1.0) May 26, 2026
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate renovate Bot force-pushed the renovate/stable1.0-tiptap branch from d39ef32 to 29da34c Compare May 28, 2026 20:28
@renovate renovate Bot changed the title fix(deps): update tiptap to ^3.23.5 (stable1.0) fix(deps): update tiptap to ^3.23.6 (stable1.0) May 28, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

3. to review Waiting for reviews dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants