Skip to content

fix(deps): update tiptap to ^3.5.2 (stable0.9) - #2069

Merged
enjeck merged 1 commit into
stable0.9from
renovate/stable0.9-tiptap
Sep 25, 2025
Merged

fix(deps): update tiptap to ^3.5.2 (stable0.9)#2069
enjeck merged 1 commit into
stable0.9from
renovate/stable0.9-tiptap

Conversation

@renovate

@renovate renovate Bot commented Sep 20, 2025

Copy link
Copy Markdown
Contributor

Coming soon: The Renovate bot (GitHub App) will be renamed to Mend. PRs from Renovate will soon appear from 'Mend'. Learn more here.

This PR contains the following updates:

Package Change Age Confidence
@tiptap/extension-character-count (source) ^3.4.2 -> ^3.5.2 age confidence
@tiptap/extension-task-item (source) ^3.4.2 -> ^3.5.2 age confidence
@tiptap/extension-task-list (source) ^3.4.2 -> ^3.5.2 age confidence
@tiptap/starter-kit (source) ^3.4.2 -> ^3.5.2 age confidence
@tiptap/vue-2 (source) ^3.4.2 -> ^3.5.2 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.5.2

Compare Source

Patch Changes

v3.5.1

Compare Source

Patch Changes

v3.5.0

Compare Source

Patch Changes

v3.4.6

Compare Source

Patch Changes

v3.4.5

Compare Source

Patch Changes

v3.4.4

Compare Source

Patch Changes

v3.4.3

Compare Source

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

v3.5.2

Compare Source

@​tiptap/react
Patch Changes
  • Tiptap will now correctly insert a React MarkViews' content into the correct element within MarkViewContent component

v3.5.1

Compare Source

@​tiptap/extension-floating-menu
Patch Changes
  • Add appendTo support to FloatingMenu and pass it through in React/Vue 2/Vue 3 for both BubbleMenu and FloatingMenu to allow fixing clipping/z-index issues.
@​tiptap/react
Patch Changes
  • Add appendTo support to FloatingMenu and pass it through in React/Vue 2/Vue 3 for both BubbleMenu and FloatingMenu to allow fixing clipping/z-index issues.
@​tiptap/vue-2
Patch Changes
  • Add appendTo support to FloatingMenu and pass it through in React/Vue 2/Vue 3 for both BubbleMenu and FloatingMenu to allow fixing clipping/z-index issues.
@​tiptap/vue-3
Patch Changes
  • Add appendTo support to FloatingMenu and pass it through in React/Vue 2/Vue 3 for both BubbleMenu and FloatingMenu to allow fixing clipping/z-index issues.

v3.5.0

Compare Source

Releases
@​tiptap/extension-bubble-menu@​3.5.0
Minor Changes
  • 8fa5955: Add updateBubbleMenuPosition command to update position of bubble menu. This command lets developers programmatically update the position of the bubble menu in response to certain events (for example, when the bubble menu is resized).
@​tiptap/extension-drag-handle@​3.5.0
Minor Changes
  • daa51c4: Add getReferencedVirtualElement option to the drag handle extension to customize the position of the drag handle.
Patch Changes
  • 3eb5360: Fixed findElementNextToCoords returning incorrect nodes when the position is at a node boundary. The function now correctly identifies leaf nodes (like images, horizontal rules) by checking $pos.nodeAfter before falling back to the parent node lookup.
@​tiptap/vue-2@​3.5.0
Patch Changes
  • d56c9dd: Fix Vue2 menus visibility bug.

v3.4.6

Compare Source

Releases
@​tiptap/core@​3.4.6
Patch Changes
  • 968016f: Added support for the undoable option in InputRules (matching ProseMirror’s implementation).

    • When false, the change will not be tracked as undoable.
    • Default remains true for backward compatibility.

    This brings Tiptap’s InputRules behavior in line with ProseMirror and gives developers finer control over undo functionality.

v3.4.5

Compare Source

Releases
@​tiptap/core@​3.4.5
Patch Changes
  • 0226d42: Fix an issue where injected CSS was not mounted correctly when the editor instance was mounted. The fix ensures CSS injected by the editor is attached to the document when the editor mounts, preventing missing styles in some mount/unmount scenarios.
  • 37af83b: refactor: replace map(...).flat() with flatMap for simpler, more efficient array flattening
  • f598ac7: Fix bug in insertContentAt command where extra content would get deleted when the selection was at the beginning of the document and a node was inserted
@​tiptap/extension-code-block-lowlight@​3.4.5
Patch Changes
  • 13fb996: refactor: replace map(...).flat() with flatMap for simpler, more efficient array flattening
@​tiptap/extension-emoji@​3.4.5
Patch Changes
  • 82121b8: refactor: replace map(...).flat() with flatMap for simpler, more efficient array flattening
@​tiptap/extension-mention@​3.4.5
Patch Changes
  • f472c5b: Use a named import for Suggestion from @tiptap/suggestion to avoid bundler ESM/CJS interop
    wrapping (__toESM) that caused Jest/CJS consumers to receive a module object instead of the
    callable plugin factory.

    This is a non-breaking internal fix. It keeps runtime module shape stable for CommonJS (Jest)
    and prevents the TypeError thrown when the extension attempted to call a non-function.

@​tiptap/vue-3@​3.4.5
Patch Changes
  • bfcd958: refactor: replace map(...).flat() with flatMap for simpler, more efficient array flattening

v3.4.4

Compare Source

Releases
@​tiptap/core@​3.4.4
Patch Changes
  • 00cf1d7: Fix bug in insertContentAt command where extra content would get deleted when the selection was at the beginning of the document and a node was inserted

v3.4.3

Compare Source

Releases
@​tiptap/core@​3.4.3
Patch Changes
  • 1ea8906: When the editor view is created, it now will also include nodeViews and markViews properties instead of setting them afterward. This avoids serialization of the editor state to HTML which will be replaced by node views anyway.
@​tiptap/extension-bubble-menu@​3.4.3
Patch Changes
  • 915ed65: Add custom positioning support to the BubbleMenu.

    This change adds an opt-in API that allows consumers to fully control how the BubbleMenu is positioned. Instead of relying solely on the internal placement logic, you can now provide a function (for example getPosition) that receives the relevant context (editor instance and menu DOM element) and returns the desired coordinates or positioning style.

@​tiptap/react@​3.4.3
Patch Changes
  • 915ed65: Add custom positioning support to the BubbleMenu.

    This change adds an opt-in API that allows consumers to fully control how the BubbleMenu is positioned. Instead of relying solely on the internal placement logic, you can now provide a function (for example getPosition) that receives the relevant context (editor instance and menu DOM element) and returns the desired coordinates or positioning style.

@​tiptap/vue-2@​3.4.3
Patch Changes
  • 915ed65: Add custom positioning support to the BubbleMenu.

    This change adds an opt-in API that allows consumers to fully control how the BubbleMenu is positioned. Instead of relying solely on the internal placement logic, you can now provide a function (for example getPosition) that receives the relevant context (editor instance and menu DOM element) and returns the desired coordinates or positioning style.

@​tiptap/vue-3@​3.4.3
Patch Changes
  • 915ed65: Add custom positioning support to the BubbleMenu.

    This change adds an opt-in API that allows consumers to fully control how the BubbleMenu is positioned. Instead of relying solely on the internal placement logic, you can now provide a function (for example getPosition) that receives the relevant context (editor instance and menu DOM element) and returns the desired coordinates or positioning style.

ueberdosis/tiptap (@​tiptap/starter-kit)

v3.5.2

Compare Source

Patch Changes

v3.5.1

Compare Source

Patch Changes

v3.5.0

Compare Source

Patch Changes

v3.4.6

Compare Source

Patch Changes

v3.4.5

Compare Source

Patch Changes

v3.4.4

Compare Source

Patch Changes

v3.4.3

Compare Source

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

v3.5.2

Compare Source

Patch Changes

v3.5.1

Compare Source

Patch Changes
  • f80c848: Add appendTo support to FloatingMenu and pass it through in React/Vue 2/Vue 3 for both BubbleMenu and FloatingMenu to allow fixing clipping/z-index issues.

v3.5.0

Compare Source

Patch Changes

v3.4.6

Compare Source

Patch Changes

v3.4.5

Compare Source

Patch Changes

v3.4.4

Compare Source

Patch Changes

v3.4.3

Compare Source

Patch Changes
  • 915ed65: Add custom positioning support to the BubbleMenu.

    This change adds an opt-in API that allows consumers to fully control how the BubbleMenu is positioned. Instead of relying solely on the internal placement logic, you can now provide a function (for example getPosition) that receives the relevant context (editor instance and menu DOM element) and returns the desired coordinates or positioning style.

  • Updated dependencies [1ea8906]


Configuration

📅 Schedule: Branch creation - "every weekend" in timezone Europe/Berlin, 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 added the 3. to review Waiting for reviews label Sep 20, 2025
@renovate
renovate Bot requested a review from enjeck as a code owner September 20, 2025 08:23
@renovate renovate Bot added the dependencies Pull requests that update a dependency file label Sep 20, 2025
@renovate
renovate Bot requested a review from blizzz as a code owner September 20, 2025 08:23
@github-actions
github-actions Bot enabled auto-merge September 20, 2025 08:23
@renovate renovate Bot changed the title fix(deps): update tiptap to ^3.4.4 (stable0.9) fix(deps): update tiptap to ^3.4.5 (stable0.9) Sep 22, 2025
@renovate
renovate Bot force-pushed the renovate/stable0.9-tiptap branch 2 times, most recently from 719b64d to 672ba6d Compare September 22, 2025 20:24
@renovate renovate Bot changed the title fix(deps): update tiptap to ^3.4.5 (stable0.9) fix(deps): update tiptap to ^3.4.6 (stable0.9) Sep 22, 2025
@renovate
renovate Bot force-pushed the renovate/stable0.9-tiptap branch from 672ba6d to c727027 Compare September 23, 2025 08:30
@renovate renovate Bot changed the title fix(deps): update tiptap to ^3.4.6 (stable0.9) fix(deps): update tiptap to ^3.5.0 (stable0.9) Sep 23, 2025
@renovate
renovate Bot force-pushed the renovate/stable0.9-tiptap branch from c727027 to 7a99ad5 Compare September 24, 2025 00:56
@renovate renovate Bot changed the title fix(deps): update tiptap to ^3.5.0 (stable0.9) fix(deps): update tiptap to ^3.5.1 (stable0.9) Sep 24, 2025
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate
renovate Bot force-pushed the renovate/stable0.9-tiptap branch from 7a99ad5 to 20c722f Compare September 24, 2025 20:39
@renovate renovate Bot changed the title fix(deps): update tiptap to ^3.5.1 (stable0.9) fix(deps): update tiptap to ^3.5.2 (stable0.9) Sep 24, 2025
@enjeck
enjeck disabled auto-merge September 25, 2025 04:30
@enjeck
enjeck merged commit 89046fb into stable0.9 Sep 25, 2025
49 of 51 checks passed
@enjeck
enjeck deleted the renovate/stable0.9-tiptap branch September 25, 2025 04:30
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.

1 participant