-
Notifications
You must be signed in to change notification settings - Fork 1
fix(deps): update tiptap monorepo to v3 (major) #193
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/major-tiptap-monorepo
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Contributor
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
53b09d1 to
da9ba47
Compare
da9ba47 to
ac5ab22
Compare
ac5ab22 to
ad85417
Compare
ad85417 to
ec16d46
Compare
ec16d46 to
a9590a9
Compare
a9590a9 to
fc90870
Compare
fc90870 to
bd860a7
Compare
bd860a7 to
7d2857e
Compare
7d2857e to
0eb0cf6
Compare
0eb0cf6 to
184a1c5
Compare
184a1c5 to
5f9588a
Compare
5f9588a to
abab46b
Compare
abab46b to
6826932
Compare
82fead7 to
9739baf
Compare
9739baf to
103655a
Compare
103655a to
c1b0cb9
Compare
c1b0cb9 to
271f99a
Compare
271f99a to
7b6dbb4
Compare
7b6dbb4 to
6676f86
Compare
6676f86 to
9a60ad9
Compare
9a60ad9 to
4a11187
Compare
4a11187 to
a31ccef
Compare
a31ccef to
46d533b
Compare
46d533b to
f71b147
Compare
f71b147 to
3c7b312
Compare
3c7b312 to
9f03dcf
Compare
9f03dcf to
4c16f8c
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^2.11.6→^3.0.0^2.11.6→^3.0.0^2.11.6→^3.0.0^2.11.6→^3.0.0^2.11.6→^3.0.0^2.11.6→^3.0.0Release Notes
ueberdosis/tiptap (@tiptap/extension-link)
v3.14.0Compare Source
Patch Changes
v3.13.0Compare Source
Patch Changes
fb51a32: EnsureenableClickSelectionworks regardless of theopenOnClickoption by always registering the link click handler plugin.526365a]e3b4f68]v3.12.1Compare Source
Patch Changes
v3.12.0Compare Source
Patch Changes
f232c5a]v3.11.1Compare Source
Patch Changes
d0c4264]v3.11.0Compare Source
Patch Changes
541c93c]v3.10.8Compare Source
Patch Changes
8375241]b7ead7c]95d3e80]fd479bd]v3.10.7Compare Source
Patch Changes
v3.10.6Compare Source
Patch Changes
v3.10.5Compare Source
Patch Changes
92fae18]v3.10.4Compare Source
Patch Changes
64561c4]v3.10.3Compare Source
Patch Changes
v3.10.2Compare Source
Patch Changes
v3.10.1Compare Source
Patch Changes
3564e7c]v3.10.0Compare Source
Patch Changes
4aa9f57]4aa9f57]v3.9.1Compare Source
Patch Changes
v3.9.0Compare Source
Patch Changes
bbb8e16]v3.8.0Compare Source
Releases
v3.8.0
@tiptap/extension-unique-id@3.8.0
Minor Changes
23e516e: AddupdateDocumentoption 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.2Compare Source
Releases
v3.7.2
@tiptap/html
Patch Changes
v3.7.1Compare Source
Releases
v3.7.1
@tiptap/markdown
Patch Changes
contentis an empty string andcontentTypeismarkdownv3.7.0Compare Source
Releases
v3.7.0
@tiptap/core
Minor Changes
All commands and their corresponding TypeScript types are now exported from
@tiptap/coreso 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:
Notes:
@tiptap/coregoing forward.Add comprehensive bidirectional markdown support to Tiptap through a new
@tiptap/markdownpackage 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
MarkdownExtension: Main extension that adds Markdown support to your editorMarkdownManager: Core engine for parsing and serializing Markdowneditor.markdown.parse(markdown)editor.markdown.serialize(json)editor.markdown.instanceEditor Methods
editor.getMarkdown(): Serialize current editor content to Markdown stringeditor.markdown: Access to MarkdownManager instance for advanced operationsEditor Options:
contentType: Control the type of content that is inserted into the editor. Can bejson,htmlormarkdown- defaults tojsonand will automatically detect invalid content types (like JSON when it is actually Markdown).Command Options: All content commands now support an
contentTypeoption:setContent(markdown, { contentType: 'markdown' }): Replace editor content with markdowninsertContent(markdown, { contentType: 'markdown' }): Insert markdown at cursor positioninsertContentAt(position, markdown, { contentType: 'markdown' }): Insert Markdown at specific positionFor more, check the documentation.
Patch Changes
baseExtensionsthat contains an unflattened array of extensions@tiptap/markdown
Minor Changes
Add comprehensive bidirectional markdown support to Tiptap through a new
@tiptap/markdownpackage 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
MarkdownExtension: Main extension that adds Markdown support to your editorMarkdownManager: Core engine for parsing and serializing Markdowneditor.markdown.parse(markdown)editor.markdown.serialize(json)editor.markdown.instanceEditor Methods
editor.getMarkdown(): Serialize current editor content to Markdown stringeditor.markdown: Access to MarkdownManager instance for advanced operationsEditor Options:
contentType: Control the type of content that is inserted into the editor. Can bejson,htmlormarkdown- defaults tojsonand will automatically detect invalid content types (like JSON when it is actually Markdown).Command Options: All content commands now support an
contentTypeoption:setContent(markdown, { contentType: 'markdown' }): Replace editor content with markdowninsertContent(markdown, { contentType: 'markdown' }): Insert markdown at cursor positioninsertContentAt(position, markdown, { contentType: 'markdown' }): Insert Markdown at specific positionFor more, check the documentation.
@tiptap/extension-link
Patch Changes
@tiptap/extensions
Patch Changes
Make the
TrailingNodeextension'snodeoption optional and derive thedefault node type from the editor schema when available.
Previously the extension used a hard-coded
'paragraph'default and thenodeoption was required in the TypeScript definitions. This change:nodeoptional in the options type,trailing node, and
'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.7Compare Source
Patch Changes
v3.6.6Compare Source
Patch Changes
v3.6.5Compare Source
Patch Changes
1e4caea]v3.6.4Compare Source
Patch Changes
v3.6.3Compare Source
Patch Changes
67f7b4a]v3.6.2Compare Source
Patch Changes
v3.6.1Compare Source
Patch Changes
v3.6.0Compare Source
Patch Changes
c0190bd]v3.5.3Compare Source
Patch Changes
v3.5.2Compare Source
Patch Changes
v3.5.1Compare Source
Patch Changes
v3.5.0Compare Source
Patch Changes
v3.4.6Compare Source
Patch Changes
968016f]v3.4.5Compare Source
Patch Changes
0226d42]37af83b]f598ac7]v3.4.4Compare Source
Patch Changes
00cf1d7]v3.4.3Compare Source
Patch Changes
1ea8906]v3.4.2Compare Source
Patch Changes
v3.4.1Compare Source
Patch Changes
v3.4.0Compare Source
Patch Changes
895c73f]ad51daa]v3.3.1Compare Source
Patch Changes
v3.3.0Compare Source
Patch Changes
5423726]5423726]v3.2.2Compare Source
Patch Changes
v3.2.1Patch Changes
6a2873f]v3.2.0Patch Changes
5056e3e]v3.1.0Compare Source
Patch Changes
v3.0.9Compare Source
Patch Changes
v3.0.8Compare Source
Patch Changes
990084c: Bump linkifyjs version to latest to address the recently discovered prototype pollution vulnerabilityv3.0.7Compare Source
Patch Changes
v3.0.6Compare Source
Patch Changes
2e71d05]v3.0.5Compare Source
Patch Changes
v3.0.4Compare Source
Patch Changes
7ed03fa]v3.0.3Compare Source
Patch Changes
75cabde]v3.0.2Compare Source
Patch Changes
v3.0.1Compare Source
Major Changes
a92f4a6: We are now building packages with tsup which does not support UMD builds, please repackage if you require UMD buildsMinor 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 monorepository89bd9c7: Enforce type imports so that the bundler ignores TypeScript type imports when generating the index.js file of the dist directoryc11c89e: Fix autolink option in shadow dom by extending the whitespace detection to more unicode charactersd0557ef: Fixed links with marks not registering click events correctly8c69002: Synced beta with stable features27dd14b: Made attributes fortoggleLinkoptional1b4c82b]1e91f9b]a92f4a6]8de8e13]20f68f6]5e957e5]89bd9c7]d0fda30]0e3207f]37913d5]28c5418]32958d6]12bb31a]9f207a6]412e1bd]062afaf]ff8eed6]704f462]95b8c71]8c69002]664834f]ac897e7]087d114]32958d6]fc17b21]62b0877]e20006b]5ba480b]d6c7558]062afaf]9ceeab4]32958d6]bf835b0]4e2f6d8]32958d6]v3.0.0Compare Source
Patch Changes
v2.27.1Compare Source
v2.27.0Compare Source
v2.26.4Compare Source
v2.26.3Compare Source
v2.26.2Compare Source
ueberdosis/tiptap (@tiptap/extension-placeholder)
v3.14.0Compare Source
Patch Changes
v3.13.0Compare Source
Patch Changes
v3.12.1Compare Source
Patch Changes
v3.12.0Compare Source
Patch Changes
v3.11.1Compare Source
Patch Changes
eea7190]v3.11.0Compare Source
Patch Changes
v3.10.8Compare Source
Patch Changes
v3.10.7Compare Source
Patch Changes
v3.10.6Compare Source
Patch Changes
v3.10.5Compare Source
Patch Changes
9d5aeb1]v3.10.4Compare Source
Patch Changes
v3.10.3Compare Source
Patch Changes
v3.10.2Compare Source
Patch Changes
v3.10.1Compare Source
Patch Changes
v3.10.0Compare Source
Patch Changes
v3.9.1Compare Source
Patch Changes
v3.9.0Compare Source
Patch Changes
v3.8.0Compare Source
Patch Changes
v3.7.2Compare Source
Releases
v3.7.2
@tiptap/html
Patch Changes
v3.7.1Compare Source
Releases
v3.7.1
@tiptap/markdown
Patch Changes
contentis an empty string andcontentTypeismarkdownv3.7.0Compare Source
Releases
v3.7.0
@tiptap/core
Minor Changes
All commands and their corresponding TypeScript types are now exported from
@tiptap/coreso 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:
Notes:
@tiptap/coregoing forward.Add comprehensive bidirectional markdown support to Tiptap through a new
@tiptap/markdownpackage 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
MarkdownExtension: Main extension that adds Markdown support to your editorMarkdownManager: Core engine for parsing and serializing Markdowneditor.markdown.parse(markdown)editor.markdown.serialize(json)editor.markdown.instanceEditor Methods
editor.getMarkdown(): Serialize current editor content to Markdown stringeditor.markdown: Access to MarkdownManager instance for advanced operationsEditor Options:
contentType: Control the type of content that is inserted into the editor. Can bejson,htmlormarkdown- defaults tojsonand will automatically detect invalid content types (like JSON when it is actually Markdown).Command Options: All content commands now support an
contentTypeoption:setContent(markdown, { contentType: 'markdown' }): Replace editor content with markdowninsertContent(markdown, { contentType: 'markdown' }): Insert markdown at cursor positioninsertContentAt(position, markdown, { contentType: 'markdown' }): Insert Markdown at specific positionFor more, check the documentation.
Patch Changes
baseExtensionsthat contains an unflattened array of extensions@tiptap/markdown
Minor Changes
Add comprehensive bidirectional markdown support to Tiptap through a new
@tiptap/markdownpackage 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
MarkdownExtension: Main extension that adds Markdown support to your editorMarkdownManager: Core engine for parsing and serializing Markdowneditor.markdown.parse(markdown)editor.markdown.serialize(json)editor.markdown.instanceEditor Methods
editor.getMarkdown(): Serialize current editor content to Markdown stringeditor.markdown: Access to MarkdownManager instance for advanced operationsEditor Options:
contentType: Control the type of content that is inserted into the editor. Can bejson,htmlormarkdown- defaults tojsonand will automatically detect invalid content types (like JSON when it is actually Markdown).Command Options: All content commands now support an
contentTypeoption:setContent(markdown, { contentType: 'markdown' }): Replace editor content with markdowninsertContent(markdown, { contentType: 'markdown' }): Insert markdown at cursor positioninsertContentAt(position, markdown, { contentType: 'markdown' }): Insert Markdown at specific positionFor more, check the documentation.
@tiptap/extension-link
Patch Changes
@tiptap/extensions
Patch Changes
Make the
TrailingNodeextension'snodeoption optional and derive thedefault node type from the editor schema when available.
Previously the extension used a hard-coded
'paragraph'default and thenodeoption was required in the TypeScript definitions. This change:nodeoptional in the options type,trailing node, and
'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.7Compare Source
Patch Changes
v3.6.6Compare Source
Patch Changes
v3.6.5Compare Source
Patch Changes
v3.6.4Compare Source
Patch Changes
v3.6.3Compare Source
Patch Changes
7024d69]v3.6.2Compare Source
Patch Changes
v3.6.1Compare Source
Patch Changes
v3.6.0Compare Source
Patch Changes
v3.5.3Compare Source
Patch Changes
v3.5.2Compare Source
Patch Changes
v3.5.1Compare Source
Patch Changes
[
v3.5.0](https://redirect.github.com/ueberdosis/tiptap/blob/HEAD/packages-deprConfiguration
📅 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.
This PR was generated by Mend Renovate. View the repository job log.