-
Notifications
You must be signed in to change notification settings - Fork 9
Update tiptap monorepo to v3.18.0 #672
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
develop
Choose a base branch
from
renovate/tiptap-monorepo
base: develop
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.
Open
+159
−159
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
4dbf164 to
6c9372c
Compare
6c9372c to
5bed500
Compare
5bed500 to
4340392
Compare
4340392 to
f031bc2
Compare
f031bc2 to
6b1688a
Compare
6b1688a to
dc74e4d
Compare
dc74e4d to
913ca1b
Compare
913ca1b to
bfd848c
Compare
bfd848c to
b9f0972
Compare
b9f0972 to
739e159
Compare
a0ee282 to
e2a556f
Compare
e2a556f to
50ed689
Compare
50ed689 to
2358bc8
Compare
2358bc8 to
8e62e59
Compare
8e62e59 to
be0d278
Compare
be0d278 to
2eeb427
Compare
2eeb427 to
eb955be
Compare
eb955be to
a0e791c
Compare
a0e791c to
36bc3c5
Compare
36bc3c5 to
77f459d
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
None yet
0 participants
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:
3.4.1→3.18.03.4.1→3.18.03.4.1→3.18.03.4.1→3.18.03.4.1→3.18.03.4.1→3.18.0Release Notes
ueberdosis/tiptap (@tiptap/extension-highlight)
v3.18.0Compare Source
Patch Changes
v3.17.1Compare Source
Patch Changes
aa9709e]b46e66a]v3.17.0Compare Source
Patch Changes
eecf1c9]v3.16.0Compare Source
Patch Changes
v3.15.3Compare Source
Patch Changes
8f86f06]v3.15.2Compare Source
Patch Changes
v3.15.1Compare Source
Patch Changes
v3.15.0Compare Source
Patch Changes
ac8361c]v3.14.0Compare Source
Patch Changes
v3.13.0Compare Source
Patch Changes
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
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
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
ueberdosis/tiptap (@tiptap/extension-subscript)
v3.18.0Compare Source
Patch Changes
v3.17.1Compare Source
Patch Changes
aa9709e]b46e66a]v3.17.0Compare Source
Patch Changes
eecf1c9]v3.16.0Compare Source
Patch Changes
v3.15.3Compare Source
Patch Changes
8f86f06]v3.15.2Compare Source
Patch Changes
v3.15.1Compare Source
Patch Changes
v3.15.0Compare Source
Patch Changes
ac8361c]v3.14.0Compare Source
Patch Changes
v3.13.0Compare Source
Patch Changes
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
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
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
ueberdosis/tiptap (@tiptap/extension-superscript)
v3.18.0Compare Source
Patch Changes
v3.17.1Compare Source
Patch Changes
aa9709e]b46e66a]v3.17.0Compare Source
Patch Changes
eecf1c9]v3.16.0Compare Source
Patch Changes
v3.15.3Compare Source
Patch Changes
8f86f06]v3.15.2Compare Source
Patch Changes
v3.15.1Compare Source
Patch Changes
v3.15.0Compare Source
Patch Changes
ac8361c]v3.14.0Compare Source
Patch Changes
v3.13.0Compare Source
Patch Changes
526365a]e3b4f68]Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), 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.
This PR was generated by Mend Renovate. View the repository job log.