Skip to content

fix(deps): update tiptap to ^3.10.7 (stable0.9) - #2078

Merged
github-actions[bot] merged 1 commit into
stable0.9from
renovate/stable0.9-tiptap
Nov 18, 2025
Merged

fix(deps): update tiptap to ^3.10.7 (stable0.9)#2078
github-actions[bot] merged 1 commit into
stable0.9from
renovate/stable0.9-tiptap

Conversation

@renovate

@renovate renovate Bot commented Sep 27, 2025

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

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

Compare Source

Patch Changes

v3.10.6

Compare Source

Patch Changes

v3.10.5

Compare Source

Patch Changes

v3.10.4

Compare Source

Patch Changes

v3.10.3

Compare Source

Patch Changes

v3.10.2

Compare Source

Patch Changes

v3.10.1

Compare Source

Patch Changes

v3.10.0

Compare Source

Patch Changes

v3.9.1

Compare Source

Patch Changes

v3.9.0

Compare Source

Patch Changes

v3.8.0

Compare Source

Patch Changes

v3.7.2

Compare Source

Patch Changes

v3.7.1

Compare Source

Patch Changes

v3.7.0

Compare Source

Patch Changes

v3.6.7

Compare Source

Patch Changes

v3.6.6

Compare Source

Patch Changes

v3.6.5

Compare Source

Patch Changes

v3.6.4

Compare Source

Patch Changes

v3.6.3

Compare Source

Patch Changes

v3.6.2

Compare Source

Patch Changes

v3.6.1

Compare Source

Patch Changes

v3.6.0

Compare Source

Patch Changes

v3.5.3

Compare Source

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

v3.10.7

Compare Source

@​tiptap/vue-2
Patch Changes
  • Fix BubbleMenu plugin registration not triggering due to missing element reference during component initialization.

v3.10.6

Compare Source

@​tiptap/vue-2
Patch Changes
  • Fix BubbleMenu and FloatingMenu component runtime errors in Vue 2.

v3.10.5

Compare Source

@​tiptap/extension-collaboration
Patch Changes
  • Fixed collaborative editing errors with certain emoji combinations (like 🔴🟢, 😎🐈, 🟣🔵) by updating @tiptap/y-tiptap to stable v3.0.0.
@​tiptap/extension-collaboration-caret
Patch Changes
  • Fixed collaborative editing errors with certain emoji combinations (like 🔴🟢, 😎🐈, 🟣🔵) by updating @tiptap/y-tiptap to stable v3.0.0.
@​tiptap/extension-drag-handle
Patch Changes
  • Fixed collaborative editing errors with certain emoji combinations (like 🔴🟢, 😎🐈, 🟣🔵) by updating @tiptap/y-tiptap to stable v3.0.0.
@​tiptap/core
Patch Changes
  • Fixed ProseMirror schema generation to properly respect isRequired attribute configuration. Previously, attributes marked with isRequired: true were incorrectly treated as optional because a default property was always included in the schema specification. ProseMirror determines attribute requirements by the absence of the default property, so now the default is only included when the attribute is not required and a default value is explicitly defined.
@​tiptap/extension-unique-id
Patch Changes
  • Fixed infinite transaction loop that caused browser tabs to freeze when using UniqueID and TrailingNode extensions together.
@​tiptap/extensions
Patch Changes
  • Fixed infinite transaction loop that caused browser tabs to freeze when using UniqueID and TrailingNode extensions together.

v3.10.4

Compare Source

@​tiptap/core
Patch Changes
  • Fix autofocus behavior to prevent unwanted scrolling when disabled
@​tiptap/extension-blockquote
Patch Changes
  • Fixed nested blockquote markdown serialization to properly handle multi-level nesting

v3.10.3

Compare Source

@​tiptap/markdown
Patch Changes
  • Fix markdown serialization to prevent marks from continuing after hard breaks. Previously, marks like bold would incorrectly persist across hard breaks in the markdown output.
  • Fixed a bug where marks were resolved in incorrect orders, breaking markdown rendering for nested marks.
  • Fix parsing of mixed bullet lists and task lists. Previously, Marked.js would group consecutive bullet list items and task list items into a single list token, causing incorrect parsing. Now the parser detects mixed lists and splits them into separate bulletList and taskList nodes.

v3.10.2

Compare Source

@​tiptap/markdown
Patch Changes
  • Fix parsing of mixed inline HTML within Markdown content so that inline HTML fragments are parsed correctly.
@​tiptap/extension-table
Patch Changes
  • Allow setting custom table widths by respecting user-provided style attributes instead of always overriding them with calculated widths.

v3.10.1

Compare Source

@​tiptap/core
Patch Changes
  • Use correct ResizableNodeView class name

v3.10.0

Compare Source

@​tiptap/core
Minor Changes
  • Add a new ResizableNodeview NodeView to core that wraps elements (images, videos, iframes) with configurable resize handles. It provides live onResize/onCommit callbacks, min/max constraints, aspect-ratio support, and styling hooks (class names + data attributes) to improve UX when resizing media inside the editor.

  • the addNodeView function can now return null to dynamically disable rendering of a node view

    While this should not directly cause any issues, it's noteworthy as it still could affect some behavior in some edge cases.

@​tiptap/extension-image
Minor Changes
  • Added a new resize option that allows images to be resized. The option adds resize handlers to images allowing users to manually resize images via drag and drop or touch

v3.9.1

Compare Source

@​tiptap/extension-table
Patch Changes
  • Add a renderWrapper option to the Table extension so consumers can customize whether the table wrapper for the resizable node view should be rendered in non-editable mode as well.

v3.9.0

Compare Source

@​tiptap/vue-3
Patch Changes
  • Fix attribute forwarding for BubbleMenu and FloatingMenu Vue 3 components to allow setting z-index and other HTML attributes
@​tiptap/extension-hard-break
Patch Changes
  • Ensure that markdown hard breaks (two spaces followed by a newline) are parsed so they render as line breaks (<br>) in the editor when using contentType: 'markdown'.

    Fixes #​7107

@​tiptap/extension-unique-id
Minor Changes
  • Add updateDocument option to disable document updates caused by the Unique ID extension.
@​tiptap/core
Patch Changes
  • Only remove injected CSS on unmount if no other editors are in the document (fixes #​6836)
@​tiptap/extension-drag-handle
Patch Changes
  • Replace DOM traversal with browser's native elementsFromPoint for better performance.

    • Use elementsFromPoint instead of querySelectorAll
    • Add clampToContent helper for coordinate boundary validation
    • Add findClosestTopLevelBlock helper for efficient block lookup
    • Future-proof for root-level mousemove listeners
@​tiptap/react
Patch Changes
  • Prevent Bubble Menu plugin from re-loading every time the BubbleMenu component re-renders. Reverts a regression introduced in v3.6.3, in PR #​7028.

v3.8.0

Compare Source

@​tiptap/extension-unique-id
Minor Changes
  • Add updateDocument option to disable document updates caused by the Unique ID extension.
@​tiptap/react
Patch Changes
  • Prevent Bubble Menu plugin from re-loading every time the BubbleMenu component re-renders. Reverts a regression introduced in v3.6.3, in PR #​7028.

v3.7.2

Compare Source

Releases

v3.7.2

@​tiptap/html
Patch Changes

v3.7.1

Compare Source

Releases
v3.7.1
@​tiptap/markdown
Patch Changes
  • Editors will not throw an error anymore when content is an empty string and contentType is markdown
  • Remove invalid server configuration from package.json

v3.7.0

Compare Source

Releases
v3.7.0
@​tiptap/core
Minor Changes
  • All commands and their corresponding TypeScript types are now exported from @tiptap/core so they can be imported and referenced directly by consumers. This makes it easier to build typed helpers, extensions, and tests that depend on the command signatures.

    Why:

    • Previously some command option types were only available as internal types or scattered across files, which made it awkward for downstream users to import and reuse them.
    import { commands } from '@&#8203;tiptap/core'

    Notes:

    • This is a non-breaking, additive change. It improves ergonomics for TypeScript consumers.
    • If you rely on previously private/internal types, prefer the exported types from @tiptap/core going forward.
  • Add comprehensive bidirectional markdown support to Tiptap through a new @tiptap/markdown package and Markdown utilities in @tiptap/core.

    New Package: @tiptap/markdown - A new official extension that provides full Markdown parsing and serialization capabilities using MarkedJS as the underlying Markdown parser.

    Core Features:

    Extension API

    • Markdown Extension: Main extension that adds Markdown support to your editor
    • MarkdownManager: Core engine for parsing and serializing Markdown
      • Parse Markdown strings to Tiptap JSON: editor.markdown.parse(markdown)
      • Serialize Tiptap JSON to Markdown: editor.markdown.serialize(json)
      • Access to underlying marked.js instance: editor.markdown.instance
Editor Methods
  • editor.getMarkdown(): Serialize current editor content to Markdown string
  • editor.markdown: Access to MarkdownManager instance for advanced operations

Editor Options:

  • contentType: Control the type of content that is inserted into the editor. Can be json, html or markdown - defaults to json and will automatically detect invalid content types (like JSON when it is actually Markdown).
    new Editor({
      content: '# Hello World',
      contentType: 'markdown'
    })

Command Options: All content commands now support an contentType option:

  • setContent(markdown, { contentType: 'markdown' }): Replace editor content with markdown
  • insertContent(markdown, { contentType: 'markdown' }): Insert markdown at cursor position
  • insertContentAt(position, markdown, { contentType: 'markdown' }): Insert Markdown at specific position

For more, check the documentation.

Patch Changes
  • The extension manager now provides a new property baseExtensions that contains an unflattened array of extensions
@​tiptap/markdown
Minor Changes
  • Add comprehensive bidirectional markdown support to Tiptap through a new @tiptap/markdown package and Markdown utilities in @tiptap/core.

    New Package: @tiptap/markdown - A new official extension that provides full Markdown parsing and serialization capabilities using MarkedJS as the underlying Markdown parser.

    Core Features:

    Extension API

    • Markdown Extension: Main extension that adds Markdown support to your editor
    • MarkdownManager: Core engine for parsing and serializing Markdown
      • Parse Markdown strings to Tiptap JSON: editor.markdown.parse(markdown)
      • Serialize Tiptap JSON to Markdown: editor.markdown.serialize(json)
      • Access to underlying marked.js instance: editor.markdown.instance
Editor Methods
  • editor.getMarkdown(): Serialize current editor content to Markdown string
  • editor.markdown: Access to MarkdownManager instance for advanced operations

Editor Options:

  • contentType: Control the type of content that is inserted into the editor. Can be json, html or markdown - defaults to json and will automatically detect invalid content types (like JSON when it is actually Markdown).
    new Editor({
      content: '# Hello World',
      contentType: 'markdown'
    })

Command Options: All content commands now support an contentType option:

  • setContent(markdown, { contentType: 'markdown' }): Replace editor content with markdown
  • insertContent(markdown, { contentType: 'markdown' }): Insert markdown at cursor position
  • insertContentAt(position, markdown, { contentType: 'markdown' }): Insert Markdown at specific position

For more, check the documentation.

@​tiptap/extension-link
Patch Changes
  • Paste Handlers and onPaste plugin now respect shouldAutoLink/validate options
@​tiptap/extensions
Patch Changes
  • Make the TrailingNode extension's node option optional and derive the
    default node type from the editor schema when available.

    Previously the extension used a hard-coded 'paragraph' default and the
    node option was required in the TypeScript definitions. This change:

    • makes node optional in the options type,
    • prefers the editor schema's top node default type when resolving the
      trailing node, and
    • falls back to the configured option or 'paragraph' as a last resort.

    This fixes cases where projects use a different top-level default node and
    prevents the extension from inserting an incorrect trailing node type.

v3.6.7

Compare Source

@​tiptap/html
Patch Changes
  • Fix CVE-2025-61927 by bumping happy-dom to 20.0.0

    Bumps the transitive/dev dependency happy-dom from ^18.0.1 → ^20.0.0 in @​tiptap/html to address CVE-2025-61927. This is a dependency/security-only change and does not modify any public APIs.

    Why:

    • happy-dom released a security fix for CVE-2025-61927; updating prevents the vulnerability being pulled into consumers that depend on @​tiptap/html.

v3.6.6

Compare Source

@​tiptap/extension-floating-menu
Patch Changes
  • Fixed a problem where the position of a menu is not updated on creation when shouldShow is true
@​tiptap/extension-bubble-menu
Patch Changes
  • Fixed a problem where the position of a menu is not updated on creation when shouldShow is true
@​tiptap/vue-3
Patch Changes
  • Fixed a bug that caused conditionally rendered bubble menus not to be attached to the DOM correctly

v3.6.5

Compare Source

@​tiptap/extension-horizontal-rule
Patch Changes
  • Added nextNodeType option to horizontal-rule extension, allowing users to specify which node type should be inserted after a horizontal rule
@​tiptap/html
Patch Changes
  • Fix: Clean up happy-dom window instance fixing a memory leak caused by unclosed happy-dom windows
@​tiptap/core
Patch Changes
  • Editors can now emit transaction and update events before being mounted.
    This means smoother state handling and instant feedback from editors, even when they're not in the DOM.

v3.6.4

Compare Source

@​tiptap/html
Patch Changes
  • Fix: Clean up happy-dom window instance fixing a memory leak caused by unclosed happy-dom windows

v3.6.3

Compare Source

@​tiptap/react
Patch Changes
  • Updated the React FloatingMenu plugin hook dependencies to match the BubbleMenu behavior.
    The FloatingMenu will now respond to changes in appendTo, pluginKey, shouldShow, and options.
  • Resolved an issue where the React BubbleMenu did not update when FloatingUI option props changed after initial mount. The BubbleMenu now correctly responds to updated option props.
  • Improved the BubbleMenu's usability by ensuring the appendTo prop passed to the React BubbleMenu component is now correctly forwarded to the underlying bubble menu plugin. This fix allows developers to customize where the BubbleMenu is attached in the DOM, helping resolve issues with positioning and portal setups in React apps.
@​tiptap/extensions
Patch Changes
  • The Selection extension now uses the correct SelectionOptions type, providing accurate typings for its options.
@​tiptap/extension-code-block
Patch Changes
  • Configuration options for the CodeBlock extension now support null and undefined values.
    This makes custom setups more flexible and avoids unnecessary type errors when omitting optional overrides.
    All existing default values and fallback logic remain in place - no breaking changes for existing code.
@​tiptap/core
Patch Changes
  • Refined the JSONContent.attrs definition to exactly mirror the structure returned by editor.getJSON(). This ensures strict type safety and consistency between the editor output and the expected type, eliminating errors caused by mismatched attribute signatures.
@​tiptap/extension-table-of-contents
Patch Changes
  • Improve typings by inferring the storage type for the Table of Contents extension
@​tiptap/extension-floating-menu
Patch Changes
  • You can now pass a callback to the appendTo option in the floating and bubble menu
    extensions. The callback must return an element synchronously,
    so menus can be appended to elements that are created dynamically.
@​tiptap/extension-bubble-menu
Patch Changes
  • You can now pass a callback to the appendTo option in the floating and bubble menu
    extensions. The callback must return an element synchronously,
    so menus can be appended to elements that are created dynamically.

v3.6.2

Compare Source

@​tiptap/extension-bubble-menu
Patch Changes
  • Fix a bug where the bubble menu could throw an error if the editor was destroyed
    while the plugin was cleaning up.

v3.6.1

Compare Source

@​tiptap/react
Patch Changes
  • Hotfix: Fix a crash in the React package that could occur during mounting/unmounting when the editor wasn't fully initialized. This prevents a runtime error and improves stability.

v3.6.0

Compare Source

@​tiptap/core
Patch Changes
  • Improve typing and docs for EditorOptions.element to reflect all supported mounting modes and align behavior across adapters.

    • element now accepts:
      • Element: the editor is appended inside the given element.
      • { mount: HTMLElement }: the editor is mounted directly to mount (no extra wrapper).
      • (editorEl: HTMLElement) => void: a function that receives the editor element so you can place it anywhere in the DOM.
      • null: no automatic mounting.
@​tiptap/extension-table
Patch Changes
  • Parse cell colwidth from nearest <colgroup> when missing on the cell

    When importing HTML, table column widths are often declared on a surrounding <colgroup> rather than on each <td>. Previously, tableCell only read the colwidth attribute from the cell itself and would lose width information in that case. The implementation now falls back to reading the corresponding <col>'s width from the table's <colgroup> using the cell's index.

    This is a non-breaking bugfix that preserves layout information when HTML uses <colgroup>. Consider adding a small demo or unit test to assert colwidth is preserved for cells when only the <colgroup> contains width attributes.

  • Fixes table wrapper replacement and lost selections when resizable: true.

    TableView.ignoreMutation now ignores attribute/childList/characterData mutations that occur inside the table wrapper but outside the editable contentDOM, preventing wrapper re-creation during resize interactions so selections (e.g. mergeCells()) are preserved.

    No API or breaking changes.

@​tiptap/extension-bubble-menu
Patch Changes
  • Remove recently added updateBubbleMenuPosition method because it would not work in the React and Vue versions of the BubbleMenu, only in the vanilla extension. And that would confuse developers.

    Write the transactionHandler method as an arrow function because arrow functions have no this, so the this remains the instance of the BubbleMenuView class.

@​tiptap/extension-unique-id
Minor Changes
  • Create a utility to add unique IDs to a document in the server

    The utility is called generateUniqueIds and is exported from the @tiptap/extension-unique-id package.

    It has the same functionality as the UniqueID extension, but without the need to create an Editor instance. This lets you add unique IDs to the document in the server.

    It takes the following parameters:

    • doc: The Tiptap JSON document to add unique IDs to.
    • extensions: The extensions to use. Must include the UniqueID extension.

    It returns the updated Tiptap JSON document, with the unique IDs added to the nodes.

@​tiptap/vue-3
Minor Changes
  • Pass attrs through Vue 3 menus

v3.5.3

Compare Source

@​tiptap/extension-text-style
Patch Changes
  • Merge nested span styles only for immediate child spans and guard style values.

    • Replace non-standard/fragile selector approach and avoid re-processing nested <span> elements.
    • Read parent style once, merge with child style only when present, and remove empty style attributes.
    • Improves parsing performance and robustness in browsers, Node/JSDOM and tests.

    This change fixes a bug that could cause exponential work when parsing deeply
    nested <span> elements - in extreme cases that could make the tab unresponsive
    or crash the renderer. It is a bugfix / performance improvement with no public API
    changes.

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

v3.10.7

Compare Source

Patch Changes

v3.10.6

Compare Source

Patch Changes

v3.10.5

Compare Source

Patch Changes

v3.10.4

Compare Source

Patch Changes

v3.10.3

Compare Source

Patch Changes

v3.10.2

Compare Source

Patch Changes

v3.10.1

Compare Source

Patch Changes

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 3. to review Waiting for reviews dependencies Pull requests that update a dependency file labels Sep 27, 2025
@renovate
renovate Bot requested review from blizzz and enjeck as code owners September 27, 2025 00:30
@github-actions
github-actions Bot enabled auto-merge September 27, 2025 00:30
@renovate renovate Bot changed the title fix(deps): update tiptap to ^3.6.1 (stable0.9) fix(deps): update tiptap to ^3.6.2 (stable0.9) Sep 29, 2025
@renovate
renovate Bot force-pushed the renovate/stable0.9-tiptap branch 2 times, most recently from 243903c to 17061b2 Compare October 3, 2025 00:28
@renovate renovate Bot changed the title fix(deps): update tiptap to ^3.6.2 (stable0.9) fix(deps): update tiptap to ^3.6.3 (stable0.9) Oct 3, 2025
@renovate
renovate Bot force-pushed the renovate/stable0.9-tiptap branch from 17061b2 to 20f6b72 Compare October 3, 2025 16:26
@renovate renovate Bot changed the title fix(deps): update tiptap to ^3.6.3 (stable0.9) fix(deps): update tiptap to ^3.6.5 (stable0.9) Oct 3, 2025
@renovate
renovate Bot force-pushed the renovate/stable0.9-tiptap branch from 20f6b72 to ed7b528 Compare October 9, 2025 16:30
@renovate renovate Bot changed the title fix(deps): update tiptap to ^3.6.5 (stable0.9) fix(deps): update tiptap to ^3.6.6 (stable0.9) Oct 9, 2025
@renovate
renovate Bot force-pushed the renovate/stable0.9-tiptap branch from ed7b528 to ebe2d1c Compare October 14, 2025 12:35
@renovate renovate Bot changed the title fix(deps): update tiptap to ^3.6.6 (stable0.9) fix(deps): update tiptap to ^3.6.7 (stable0.9) Oct 14, 2025
@renovate
renovate Bot force-pushed the renovate/stable0.9-tiptap branch from ebe2d1c to f39618f Compare October 14, 2025 17:58
@renovate renovate Bot changed the title fix(deps): update tiptap to ^3.6.7 (stable0.9) fix(deps): update tiptap to ^3.7.0 (stable0.9) Oct 14, 2025
@renovate
renovate Bot force-pushed the renovate/stable0.9-tiptap branch from f39618f to 76319ad Compare October 16, 2025 00:33
@renovate renovate Bot changed the title fix(deps): update tiptap to ^3.7.0 (stable0.9) fix(deps): update tiptap to ^3.7.1 (stable0.9) Oct 16, 2025
@renovate
renovate Bot force-pushed the renovate/stable0.9-tiptap branch from 76319ad to e1705a7 Compare October 16, 2025 08:33
@renovate renovate Bot changed the title fix(deps): update tiptap to ^3.7.1 (stable0.9) fix(deps): update tiptap to ^3.7.2 (stable0.9) Oct 16, 2025
@renovate
renovate Bot force-pushed the renovate/stable0.9-tiptap branch from e1705a7 to 0fcf8d7 Compare October 24, 2025 17:06
@renovate renovate Bot changed the title fix(deps): update tiptap to ^3.7.2 (stable0.9) fix(deps): update tiptap to ^3.8.0 (stable0.9) Oct 24, 2025
@renovate
renovate Bot force-pushed the renovate/stable0.9-tiptap branch from 0fcf8d7 to 62a15f6 Compare October 28, 2025 10:39
@renovate renovate Bot changed the title fix(deps): update tiptap to ^3.8.0 (stable0.9) fix(deps): update tiptap to ^3.9.0 (stable0.9) Oct 28, 2025
@renovate
renovate Bot force-pushed the renovate/stable0.9-tiptap branch from 62a15f6 to 664f786 Compare October 30, 2025 04:29
@renovate renovate Bot changed the title fix(deps): update tiptap to ^3.9.0 (stable0.9) fix(deps): update tiptap to ^3.9.1 (stable0.9) Oct 30, 2025
@renovate
renovate Bot force-pushed the renovate/stable0.9-tiptap branch from 664f786 to d3e90c1 Compare October 30, 2025 15:39
@renovate renovate Bot changed the title fix(deps): update tiptap to ^3.9.1 (stable0.9) fix(deps): update tiptap to ^3.10.0 (stable0.9) Oct 30, 2025
@renovate
renovate Bot force-pushed the renovate/stable0.9-tiptap branch from d3e90c1 to d882691 Compare October 31, 2025 02:57
@renovate renovate Bot changed the title fix(deps): update tiptap to ^3.10.0 (stable0.9) fix(deps): update tiptap to ^3.10.1 (stable0.9) Oct 31, 2025
@renovate
renovate Bot force-pushed the renovate/stable0.9-tiptap branch from d882691 to 15ffba2 Compare November 5, 2025 15:39
@renovate renovate Bot changed the title fix(deps): update tiptap to ^3.10.1 (stable0.9) fix(deps): update tiptap to ^3.10.2 (stable0.9) Nov 5, 2025
@renovate
renovate Bot force-pushed the renovate/stable0.9-tiptap branch from 15ffba2 to 6a7f84c Compare November 7, 2025 17:59
@renovate renovate Bot changed the title fix(deps): update tiptap to ^3.10.2 (stable0.9) fix(deps): update tiptap to ^3.10.3 (stable0.9) Nov 7, 2025
@renovate
renovate Bot force-pushed the renovate/stable0.9-tiptap branch from 6a7f84c to 9146e93 Compare November 8, 2025 08:26
@renovate renovate Bot changed the title fix(deps): update tiptap to ^3.10.3 (stable0.9) fix(deps): update tiptap to ^3.10.4 (stable0.9) Nov 8, 2025
@renovate
renovate Bot force-pushed the renovate/stable0.9-tiptap branch from 9146e93 to d78f456 Compare November 10, 2025 20:16
@renovate renovate Bot changed the title fix(deps): update tiptap to ^3.10.4 (stable0.9) fix(deps): update tiptap to ^3.10.5 (stable0.9) Nov 10, 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 d78f456 to d68a736 Compare November 12, 2025 23:32
@renovate renovate Bot changed the title fix(deps): update tiptap to ^3.10.5 (stable0.9) fix(deps): update tiptap to ^3.10.7 (stable0.9) Nov 12, 2025
@github-actions
github-actions Bot merged commit 9b58607 into stable0.9 Nov 18, 2025
50 checks passed
@github-actions
github-actions Bot deleted the renovate/stable0.9-tiptap branch November 18, 2025 05:49
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