Skip to content

chore(deps): bump @tiptap/starter-kit from 3.27.1 to 3.27.3#606

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/tiptap/starter-kit-3.27.3
Open

chore(deps): bump @tiptap/starter-kit from 3.27.1 to 3.27.3#606
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/tiptap/starter-kit-3.27.3

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 10, 2026

Copy link
Copy Markdown
Contributor

Bumps @tiptap/starter-kit from 3.27.1 to 3.27.3.

Release notes

Sourced from @​tiptap/starter-kit's releases.

v3.27.3

@​tiptap/core

Patch Changes

  • 94de762: Fix deleteSelection to delete content across all selection ranges instead of only the first range. This restores multi-cell table selections and other custom selections with multiple ranges.
  • @​tiptap/pm@​3.27.3

@​tiptap/extension-list

Patch Changes

  • 94de762: Fix markdown parsing bugs where block elements right after an ordered list item (with no blank line in between) were wrongly treated as lazy continuation of the list item, instead of terminating the list the way other markdown parsers do:

    • Thematic breaks (---, ***, ___, * * *) were swallowed into the list item as literal paragraph text — along with every line after them. They now terminate the list and become a horizontal rule.
    • Fenced code blocks (``` and ~~~) were nested inside the list item. They now terminate the list and become a top-level code block.
    • Unindented bullet markers (- item) were nested inside the ordered list item. They now terminate the ordered list and start a new top-level bullet list. Indented bullets still nest inside the item as before.

    An indented ***/___ inside item content is now also parsed as a horizontal rule inside the item instead of literal text. A --- line directly below item paragraph text keeps its current behavior because it is a setext heading underline per CommonMark, not a thematic break.

  • 94de762: Fix indented ordered list items (e.g. one leading space before the marker, as happens when a top-level ordered list is itself nested inside another list) losing inline formatting during markdown parsing. The custom ordered-list markdown tokenizer built its nested structure with a hardcoded base indentation of 0, so an item whose actual indentation was non-zero never matched, causing the tokenizer to silently produce zero items and bail out — falling back to a path that left the item's content as literal, unparsed text instead of running it through inline tokenization (bold, italic, etc. were lost). The base indentation is now taken from the first collected item instead of being hardcoded.

  • Updated dependencies [94de762]

    • @​tiptap/core@​3.27.3
    • @​tiptap/pm@​3.27.3

@​tiptap/extensions

Patch Changes

  • 94de762: Fixed placeholder flickering and disappearance on large documents. Replaced the viewport-based decoration scan with an incremental StateField<DecorationSet> that only re-computes decorations for top-level nodes touched by each transaction. This eliminates the dependency on DOM measurement (posAtCoords), requestAnimationFrame scheduling, and scroll listeners that caused flickering under collaboration, occlusion, and rapid edits.

v3.27.2

@​tiptap/extension-emoji

Patch Changes

  • ceebb31: Fix arrow key navigation past emoji nodes in Firefox. Previously, pressing ArrowLeft with the cursor adjacent to an inline non-selectable emoji node at a paragraph boundary would not move the cursor in Firefox. The cursor now correctly skips over emoji nodes in both directions.
  • Updated dependencies [ceebb31]
    • @​tiptap/pm@​3.27.2
    • @​tiptap/core@​3.27.2
    • @​tiptap/suggestion@​3.27.2

@​tiptap/extension-file-handler

Patch Changes

  • ceebb31: Add consumePasteEvent option to the file-handler extension. When true, handlePaste returns true even when HTML content is present in the clipboard, preventing paste rules from other extensions from creating duplicate content. Default is false.
  • Updated dependencies [ceebb31]
    • @​tiptap/pm@​3.27.2
    • @​tiptap/core@​3.27.2
    • @​tiptap/extension-text-style@​3.27.2

... (truncated)

Changelog

Sourced from @​tiptap/starter-kit's changelog.

3.27.3

Patch Changes

  • Updated dependencies [023f98c]
  • Updated dependencies [b4600b6]
  • Updated dependencies [1f3ca7a]
  • Updated dependencies [76a76da]
    • @​tiptap/core@​3.27.3
    • @​tiptap/extension-list@​3.27.3
    • @​tiptap/extensions@​3.27.3
    • @​tiptap/extension-blockquote@​3.27.3
    • @​tiptap/extension-bold@​3.27.3
    • @​tiptap/extension-code@​3.27.3
    • @​tiptap/extension-code-block@​3.27.3
    • @​tiptap/extension-document@​3.27.3
    • @​tiptap/extension-hard-break@​3.27.3
    • @​tiptap/extension-heading@​3.27.3
    • @​tiptap/extension-horizontal-rule@​3.27.3
    • @​tiptap/extension-italic@​3.27.3
    • @​tiptap/extension-link@​3.27.3
    • @​tiptap/extension-paragraph@​3.27.3
    • @​tiptap/extension-strike@​3.27.3
    • @​tiptap/extension-text@​3.27.3
    • @​tiptap/extension-underline@​3.27.3
    • @​tiptap/extension-list-item@​3.27.3
    • @​tiptap/extension-list-keymap@​3.27.3
    • @​tiptap/extension-bullet-list@​3.27.3
    • @​tiptap/extension-ordered-list@​3.27.3
    • @​tiptap/extension-dropcursor@​3.27.3
    • @​tiptap/extension-gapcursor@​3.27.3
    • @​tiptap/pm@​3.27.3

3.27.2

Patch Changes

  • Updated dependencies [d3eb052]
  • Updated dependencies [f586b6f]
  • Updated dependencies [ceebb31]
    • @​tiptap/extension-link@​3.27.2
    • @​tiptap/extension-list@​3.27.2
    • @​tiptap/pm@​3.27.2
    • @​tiptap/extension-list-item@​3.27.2
    • @​tiptap/extension-list-keymap@​3.27.2
    • @​tiptap/extension-bullet-list@​3.27.2
    • @​tiptap/extension-ordered-list@​3.27.2
    • @​tiptap/core@​3.27.2
    • @​tiptap/extension-code-block@​3.27.2
    • @​tiptap/extension-horizontal-rule@​3.27.2

... (truncated)

Commits
  • 24d6aba chore(release): publish a new stable version (#8002)
  • a14683f chore(release): publish a new stable version (#7963)
  • 06b4274 fix(extension-file-handler): add consumePasteEvent option to prevent duplicat...
  • See full diff in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

View with Codesmith Autofix with Codesmith
Need help on this PR? Tag /codesmith with what you need. Autofix is disabled.

Review in cubic

Bumps [@tiptap/starter-kit](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/starter-kit) from 3.27.1 to 3.27.3.
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/main/packages/starter-kit/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.27.3/packages/starter-kit)

---
updated-dependencies:
- dependency-name: "@tiptap/starter-kit"
  dependency-version: 3.27.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jul 10, 2026
@github-project-automation github-project-automation Bot moved this to Backlog in Dev Board Jul 10, 2026
@greptile-apps

greptile-apps Bot commented Jul 10, 2026

Copy link
Copy Markdown
Contributor

PR author is in the excluded authors list.

@capy-ai

capy-ai Bot commented Jul 10, 2026

Copy link
Copy Markdown
Contributor

Capy auto-review is paused for this organization because the usage-cycle auto-review limit has been reached. Increase the limit or turn it off in billing settings to resume automatic reviews.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

Status: Backlog

Development

Successfully merging this pull request may close these issues.

0 participants