Skip to content

chore(deps): bump @tiptap/starter-kit from 2.27.2 to 3.30.2 - #326

Merged
yakew7 merged 1 commit into
mainfrom
dependabot/npm_and_yarn/tiptap/starter-kit-3.30.2
Aug 26, 2026
Merged

chore(deps): bump @tiptap/starter-kit from 2.27.2 to 3.30.2#326
yakew7 merged 1 commit into
mainfrom
dependabot/npm_and_yarn/tiptap/starter-kit-3.30.2

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 26, 2026

Copy link
Copy Markdown
Contributor

Bumps @tiptap/starter-kit from 2.27.2 to 3.30.2.

Release notes

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

v3.30.2

@​tiptap/core

Patch Changes

  • Keep mixed JSX children as separate siblings in DOM output.
  • Fixed a bug where editor.chain and editor.can can not be accessed on editor initialization

@​tiptap/extension-image

Patch Changes

  • Fix resizable images staying hidden when the image is cached or fails to load.

v3.30.1

@​tiptap/extension-table

Patch Changes

  • Fixed table markdown pipe escaping so the extension loads on older Safari and iOS versions (WebKit before Safari 16.4).

@​tiptap/core

Patch Changes

  • Added new ProseMirror helpers that check whether a value is a specific ProseMirror type.

v3.30.0

@​tiptap/vue-2

Minor Changes

  • ceb0dac: New Decorations API

    Finally the decorations API is here! Even though Decorations itself are nothing new in ProseMirror, the new API makes it much easier to use them in Tiptap without leaving your extensions.

    Decorations change how the document looks without changing the document itself. Highlighting search results, marking spelling mistakes, showing collaborator cursors, putting a drag handle next to every block.

    Until now you had to write a ProseMirror plugin by hand for this, keep the decoration set in plugin state, and map it forward on every transaction. Extensions can now declare decorations directly with a new addDecorations() hook.

    addDecorations() {
      return {
        create: ({ state }) =>
          // findMatches can be any function that returns an array of { from, to } ranges
          findMatches(state.doc).map(match =>
            Decoration.Inline(match.from, match.to, { class: 'highlight' }),
          ),
      }

... (truncated)

Changelog

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

3.30.2

Patch Changes

  • Updated dependencies [3dffed5]
  • Updated dependencies [214a140]
    • @​tiptap/core@​3.30.2
    • @​tiptap/extension-blockquote@​3.30.2
    • @​tiptap/extension-bold@​3.30.2
    • @​tiptap/extension-code@​3.30.2
    • @​tiptap/extension-code-block@​3.30.2
    • @​tiptap/extension-document@​3.30.2
    • @​tiptap/extension-hard-break@​3.30.2
    • @​tiptap/extension-heading@​3.30.2
    • @​tiptap/extension-horizontal-rule@​3.30.2
    • @​tiptap/extension-italic@​3.30.2
    • @​tiptap/extension-link@​3.30.2
    • @​tiptap/extension-list@​3.30.2
    • @​tiptap/extension-paragraph@​3.30.2
    • @​tiptap/extension-strike@​3.30.2
    • @​tiptap/extension-text@​3.30.2
    • @​tiptap/extension-underline@​3.30.2
    • @​tiptap/extensions@​3.30.2
    • @​tiptap/extension-list-item@​3.30.2
    • @​tiptap/extension-list-keymap@​3.30.2
    • @​tiptap/extension-bullet-list@​3.30.2
    • @​tiptap/extension-ordered-list@​3.30.2
    • @​tiptap/extension-dropcursor@​3.30.2
    • @​tiptap/extension-gapcursor@​3.30.2
    • @​tiptap/pm@​3.30.2

3.30.1

Patch Changes

  • Updated dependencies [abc8828]
    • @​tiptap/core@​3.30.1
    • @​tiptap/extension-blockquote@​3.30.1
    • @​tiptap/extension-bold@​3.30.1
    • @​tiptap/extension-code@​3.30.1
    • @​tiptap/extension-code-block@​3.30.1
    • @​tiptap/extension-document@​3.30.1
    • @​tiptap/extension-hard-break@​3.30.1
    • @​tiptap/extension-heading@​3.30.1
    • @​tiptap/extension-horizontal-rule@​3.30.1
    • @​tiptap/extension-italic@​3.30.1
    • @​tiptap/extension-link@​3.30.1
    • @​tiptap/extension-list@​3.30.1
    • @​tiptap/extension-paragraph@​3.30.1
    • @​tiptap/extension-strike@​3.30.1

... (truncated)

Commits
  • cef2c9a chore(release): release new stable release (#8190)
  • 4c4933d chore(release): release new stable release (#8181)
  • 7901bc2 chore(release): release new stable release (#8142)
  • d18533a fix(starter-kit): pin bundled @tiptap/* deps with workspace:* (#8160)
  • 5158212 chore(release): release new stable release (#8132)
  • 896564a chore(release): release new stable release (#8128)
  • 1afef87 chore(release): release new stable release (#8087)
  • c5f4b57 chore(release): release new stable release (#8038)
  • 24263ec chore(release): publish a new stable version
  • 24d6aba chore(release): publish a new stable version (#8002)
  • Additional commits viewable 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)

Bumps [@tiptap/starter-kit](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/starter-kit) from 2.27.2 to 3.30.2.
- [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.30.2/packages/starter-kit)

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

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 Aug 26, 2026
@vercel

vercel Bot commented Aug 26, 2026

Copy link
Copy Markdown
Contributor

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

Project Deployment Actions Updated (UTC)
pepiros Error Error Aug 26, 2026 2:35am

@dependabot dependabot Bot added the javascript Pull requests that update javascript code label Aug 26, 2026
@yakew7
yakew7 merged commit 5a0d893 into main Aug 26, 2026
1 of 3 checks passed
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/tiptap/starter-kit-3.30.2 branch August 26, 2026 06:35
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

None yet

Development

Successfully merging this pull request may close these issues.

1 participant