Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jul 12, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@tiptap/extension-link (source) ^2.11.6^3.0.0 age confidence
@tiptap/extension-placeholder (source) ^2.11.6^3.0.0 age confidence
@tiptap/extension-underline (source) ^2.11.6^3.0.0 age confidence
@tiptap/pm (source) ^2.11.6^3.0.0 age confidence
@tiptap/react (source) ^2.11.6^3.0.0 age confidence
@tiptap/starter-kit (source) ^2.11.6^3.0.0 age confidence

Release Notes

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

v3.18.0

Compare Source

Patch Changes

v3.17.1

Compare Source

@​tiptap/extension-paragraph
Patch Changes
  • Fixed markdown serialization doubling newlines and parsing collapsing multiple blank lines
@​tiptap/markdown
Patch Changes
  • Fixed markdown serialization doubling newlines and parsing collapsing multiple blank lines
  • Fixed markdown HTML parsing when window object is unavailable in server-side environments
  • Fixed ordered list numbering when list has a non-default start value
@​tiptap/vue-3
Patch Changes
  • Fixed IME input (Chinese, Japanese, Korean) in Vue 3 mark views by preventing DOM element destruction during composition events
@​tiptap/extension-collaboration-caret
Patch Changes
  • Fixed CollaborationCaret crash with "Cannot read properties of undefined (reading 'doc')" error by updating to @​tiptap/y-tiptap@​3.0.2, which includes a guard against undefined state during editor initialization. This issue affected editors initialized with HTML content, particularly when using tables.
@​tiptap/extension-collaboration
Patch Changes
  • Fixed CollaborationCaret crash with "Cannot read properties of undefined (reading 'doc')" error by updating to @​tiptap/y-tiptap@​3.0.2, which includes a guard against undefined state during editor initialization. This issue affected editors initialized with HTML content, particularly when using tables.
@​tiptap/extension-drag-handle
Patch Changes
  • Fixed CollaborationCaret crash with "Cannot read properties of undefined (reading 'doc')" error by updating to @​tiptap/y-tiptap@​3.0.2, which includes a guard against undefined state during editor initialization. This issue affected editors initialized with HTML content, particularly when using tables.
@​tiptap/html
Patch Changes
  • Fixed server-side HTML parsing crash when content contains link, script, or style tags with resource references.
  • Fixed server exports failing in Node.js test environments with jsdom/happy-dom
@​tiptap/extension-bubble-menu
Patch Changes
  • Fixed bubble and floating menus to properly handle hide middleware data, hiding menus when reference element is scrolled out of view
@​tiptap/extension-floating-menu
Patch Changes
  • Fixed bubble and floating menus to properly handle hide middleware data, hiding menus when reference element is scrolled out of view
@​tiptap/core
Patch Changes
  • Fixed $nodes() method to correctly return inline nodes (like text, mention, etc.) by fixing the children getter in NodePos class
  • Fixed ResizableNodeView contentDOM getter to return null instead of undefined for proper TypeScript compatibility
@​tiptap/extension-list
Patch Changes
  • Fixed ordered list numbering when list has a non-default start value

v3.17.0

Compare Source

Patch Changes

v3.16.0

Compare Source

Patch Changes
  • 5f568dc: Fixed an issue where clicking on non-link elements (like images) required multiple clicks to select them. The link click handler now properly returns early when the clicked element is not a link, allowing other node handlers to process the click event.

v3.15.3

Compare Source

Patch Changes

v3.15.2

Compare Source

Patch Changes

v3.15.1

Compare Source

Patch Changes

v3.15.0

Compare Source

Patch Changes

v3.14.0

Compare Source

Patch Changes

v3.13.0

Compare Source

Patch Changes
  • fb51a32: Ensure enableClickSelection works regardless of the openOnClick option by always registering the link click handler plugin.
  • Updated dependencies [526365a]
  • Updated dependencies [e3b4f68]

v3.12.1

Compare Source

Patch Changes

v3.12.0

Compare Source

Patch Changes

v3.11.1

Compare Source

Patch Changes

v3.11.0

Compare Source

Patch Changes

v3.10.8

Compare Source

Patch Changes

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

Releases
v3.8.0
@​tiptap/extension-unique-id@​3.8.0
Minor Changes
  • 23e516e: Add updateDocument option to disable document updates caused by the Unique ID extension.
@​tiptap/react@​3.8.0
Patch Changes
  • f3770af: 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 '@​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

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

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

v3.4.2

Compare Source

Patch Changes

v3.4.1

Compare Source

Patch Changes

v3.4.0

Compare Source

Patch Changes

v3.3.1

Compare Source

Patch Changes

v3.3.0

Compare Source

Patch Changes

v3.2.2

Compare Source

Patch Changes

v3.2.1

Patch Changes

v3.2.0

Patch Changes

v3.1.0

Compare Source

Patch Changes

v3.0.9

Compare Source

Patch Changes

v3.0.8

Compare Source

Patch Changes

v3.0.7

Compare Source

Patch Changes

v3.0.6

Compare Source

Patch Changes

v3.0.5

Compare Source

Patch Changes

v3.0.4

Compare Source

Patch Changes

v3.0.3

Compare Source

Patch Changes

v3.0.2

Compare Source

Patch Changes

v3.0.1

Compare Source

Major Changes
  • a92f4a6: We are now building packages with tsup which does not support UMD builds, please repackage if you require UMD builds
Minor Changes
  • ced913d: Add enableClickSelection option to clickHandler plugin to support selection link on click. Also add optional Escape key behaviour to clear selection and move the cursor to the end of the link.
Patch Changes
  • 1b4c82b: We are now using pnpm package aliases for versions to enable better version pinning for the monorepository
  • 89bd9c7: Enforce type imports so that the bundler ignores TypeScript type imports when generating the index.js file of the dist directory
  • c11c89e: Fix autolink option in shadow dom by extending the whitespace detection to more unicode characters
  • d0557ef: Fixed links with marks not registering click events correctly
  • 8c69002: Synced beta with stable features
  • 27dd14b: Made attributes for toggleLink optional
  • Updated dependencies [1b4c82b]
  • Updated dependencies [1e91f9b]
  • Updated dependencies [a92f4a6]
  • Updated dependencies [8de8e13]
  • Updated dependencies [20f68f6]
  • Updated dependencies [5e957e5]
  • Updated dependencies [89bd9c7]
  • Updated dependencies [d0fda30]
  • Updated dependencies [0e3207f]
  • Updated dependencies [37913d5]
  • Updated dependencies [28c5418]
  • Updated dependencies [32958d6]
  • Updated dependencies [12bb31a]
  • Updated dependencies [9f207a6]
  • Updated dependencies [412e1bd]
  • Updated dependencies [062afaf]
  • Updated dependencies [ff8eed6]
  • Updated dependencies [704f462]
  • Updated dependencies [95b8c71]
  • Updated dependencies [8c69002]
  • Updated dependencies [664834f]
  • Updated dependencies [ac897e7]
  • Updated dependencies [087d114]
  • Updated dependencies [32958d6]
  • Updated dependencies [fc17b21]
  • Updated dependencies [62b0877]
  • Updated dependencies [e20006b]
  • Updated dependencies [5ba480b]
  • Updated dependencies [d6c7558]
  • Updated dependencies [062afaf]
  • Updated dependencies [9ceeab4]
  • Updated dependencies [32958d6]
  • Updated dependencies [bf835b0]
  • Updated dependencies [4e2f6d8]
  • Updated dependencies [32958d6]

v3.0.0

Compare Source

Patch Changes

v2.27.2

Compare Source

v2.27.1

Compare Source

v2.27.0

Compare Source

v2.26.4

Compare Source

v2.26.3

Compare Source

v2.26.2

Compare Source

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

v3.18.0

Compare Source

Patch Changes

v3.17.1

Compare Source

Patch Changes

v3.17.0

Compare Source

Patch Changes

v3.16.0

Compare Source

Patch Changes

v3.15.3

Compare Source

Patch Changes

v3.15.2

Compare Source

Patch Changes

v3.15.1

Compare Source

Patch Changes

v3.15.0

Compare Source

Patch Changes

v3.14.0

Compare Source

Patch Changes

v3.13.0

Compare Source

Patch Changes

v3.12.1

Compare Source

Patch Changes

v3.12.0

Compare Source

Patch Changes

v3.11.1

Compare Source

Patch Changes

v3.11.0

Compare Source

Patch Changes

v3.10.8

Compare Source

Patch Changes

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](http


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 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.


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

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

@vercel
Copy link
Contributor

vercel bot commented Jul 12, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Review Updated (UTC)
book-cook Error Error Jan 28, 2026 3:38pm

@renovate renovate bot force-pushed the renovate/major-tiptap-monorepo branch from 53b09d1 to da9ba47 Compare July 13, 2025 13:27
@renovate renovate bot force-pushed the renovate/major-tiptap-monorepo branch from da9ba47 to ac5ab22 Compare July 14, 2025 05:09
@renovate renovate bot force-pushed the renovate/major-tiptap-monorepo branch from ac5ab22 to ad85417 Compare July 14, 2025 14:16
@renovate renovate bot force-pushed the renovate/major-tiptap-monorepo branch from ad85417 to ec16d46 Compare July 15, 2025 01:34
@renovate renovate bot force-pushed the renovate/major-tiptap-monorepo branch from ec16d46 to a9590a9 Compare July 16, 2025 02:58
@renovate renovate bot force-pushed the renovate/major-tiptap-monorepo branch from a9590a9 to fc90870 Compare July 18, 2025 10:00
@renovate renovate bot force-pushed the renovate/major-tiptap-monorepo branch from fc90870 to bd860a7 Compare July 19, 2025 07:08
@renovate renovate bot force-pushed the renovate/major-tiptap-monorepo branch from bd860a7 to 7d2857e Compare July 20, 2025 02:45
@renovate renovate bot force-pushed the renovate/major-tiptap-monorepo branch from 7d2857e to 0eb0cf6 Compare July 21, 2025 06:28
@renovate renovate bot force-pushed the renovate/major-tiptap-monorepo branch from 0eb0cf6 to 184a1c5 Compare July 22, 2025 09:30
@renovate renovate bot force-pushed the renovate/major-tiptap-monorepo branch from 184a1c5 to 5f9588a Compare July 23, 2025 04:01
@renovate renovate bot force-pushed the renovate/major-tiptap-monorepo branch from 5f9588a to abab46b Compare July 23, 2025 17:12
@renovate renovate bot force-pushed the renovate/major-tiptap-monorepo branch from abab46b to 6826932 Compare August 7, 2025 11:33
@renovate renovate bot force-pushed the renovate/major-tiptap-monorepo branch from a31ccef to 46d533b Compare December 10, 2025 19:13
@renovate renovate bot force-pushed the renovate/major-tiptap-monorepo branch from 46d533b to f71b147 Compare December 10, 2025 19:51
@renovate renovate bot force-pushed the renovate/major-tiptap-monorepo branch from f71b147 to 3c7b312 Compare December 10, 2025 20:45
@renovate renovate bot force-pushed the renovate/major-tiptap-monorepo branch from 3c7b312 to 9f03dcf Compare December 10, 2025 21:43
@renovate renovate bot force-pushed the renovate/major-tiptap-monorepo branch from 9f03dcf to 4c16f8c Compare December 19, 2025 14:56
@renovate renovate bot force-pushed the renovate/major-tiptap-monorepo branch from 4c16f8c to 677bedc Compare January 5, 2026 21:13
@renovate renovate bot force-pushed the renovate/major-tiptap-monorepo branch from 677bedc to cb32224 Compare January 6, 2026 14:13
@renovate renovate bot force-pushed the renovate/major-tiptap-monorepo branch from cb32224 to 83d60f1 Compare January 7, 2026 13:02
@renovate renovate bot force-pushed the renovate/major-tiptap-monorepo branch from 83d60f1 to 5f4f675 Compare January 7, 2026 16:43
@renovate renovate bot force-pushed the renovate/major-tiptap-monorepo branch from 5f4f675 to d54514d Compare January 19, 2026 15:33
@renovate renovate bot force-pushed the renovate/major-tiptap-monorepo branch from d54514d to bc7e8dc Compare January 20, 2026 12:55
@renovate renovate bot force-pushed the renovate/major-tiptap-monorepo branch from bc7e8dc to 3242add Compare January 23, 2026 13:33
@renovate renovate bot force-pushed the renovate/major-tiptap-monorepo branch from 3242add to 2259ad9 Compare January 24, 2026 18:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant