Skip to content

build(deps): Bump the production-dependencies group across 1 directory with 3 updates - #199

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/production-dependencies-783b39f695
Open

build(deps): Bump the production-dependencies group across 1 directory with 3 updates#199
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/production-dependencies-783b39f695

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the production-dependencies group with 3 updates in the / directory: @tiptap/extension-link, @tiptap/react and @tiptap/starter-kit.

Updates @tiptap/extension-link from 3.29.2 to 3.30.3

Release notes

Sourced from @​tiptap/extension-link's releases.

v3.30.3

@​tiptap/extension-text-style

Patch Changes

  • Unsetting one text style inside a blockquote no longer removes the other text styles in it.

@​tiptap/extension-youtube

Patch Changes

  • YouTube live URLs (/live/<id>) now embed the video.

@​tiptap/core

Patch Changes

  • Fix JSX runtime to properly render nested sibling elements by spreading children arrays into DOMOutputSpec

@​tiptap/react

Patch Changes

  • Fix ReactNodeViewRenderer crash when contentComponent is not available

@​tiptap/ai-toolkit

Minor Changes

  • Add the AiInsertReveal extension (@tiptap/ai-toolkit/streaming-reveal) to fade in text as the AI streams it into a collaborative document.

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

... (truncated)

Changelog

Sourced from @​tiptap/extension-link's changelog.

3.30.3

Patch Changes

  • Updated dependencies [965a880]
    • @​tiptap/core@​3.30.3
    • @​tiptap/pm@​3.30.3

3.30.2

Patch Changes

  • Updated dependencies [3dffed5]
  • Updated dependencies [214a140]
    • @​tiptap/core@​3.30.2
    • @​tiptap/pm@​3.30.2

3.30.1

Patch Changes

  • Updated dependencies [abc8828]
    • @​tiptap/core@​3.30.1
    • @​tiptap/pm@​3.30.1

3.30.0

Patch Changes

  • Updated dependencies [0247d39]
  • Updated dependencies [58a8953]
  • Updated dependencies [51909d3]
  • Updated dependencies [3099eef]
    • @​tiptap/core@​3.30.0
    • @​tiptap/pm@​3.30.0
Commits
  • db790a7 chore(release): release new stable release (#8216)
  • f434577 chore: migrate over to vite+ for tooling (#8151)
  • cef2c9a chore(release): release new stable release (#8190)
  • 4c4933d chore(release): release new stable release (#8181)
  • 7901bc2 chore(release): release new stable release (#8142)
  • 2036090 test(extension-link): guard non-link click selection with enableClickSelectio...
  • See full diff in compare view

Updates @tiptap/react from 3.29.2 to 3.30.3

Release notes

Sourced from @​tiptap/react's releases.

v3.30.3

@​tiptap/extension-text-style

Patch Changes

  • Unsetting one text style inside a blockquote no longer removes the other text styles in it.

@​tiptap/extension-youtube

Patch Changes

  • YouTube live URLs (/live/<id>) now embed the video.

@​tiptap/core

Patch Changes

  • Fix JSX runtime to properly render nested sibling elements by spreading children arrays into DOMOutputSpec

@​tiptap/react

Patch Changes

  • Fix ReactNodeViewRenderer crash when contentComponent is not available

@​tiptap/ai-toolkit

Minor Changes

  • Add the AiInsertReveal extension (@tiptap/ai-toolkit/streaming-reveal) to fade in text as the AI streams it into a collaborative document.

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

... (truncated)

Changelog

Sourced from @​tiptap/react's changelog.

3.30.3

Patch Changes

  • 1cb7ad3: Fix ReactNodeViewRenderer crash when contentComponent is not available
  • Updated dependencies [965a880]
    • @​tiptap/core@​3.30.3
    • @​tiptap/pm@​3.30.3

3.30.2

Patch Changes

  • Updated dependencies [3dffed5]
  • Updated dependencies [214a140]
    • @​tiptap/core@​3.30.2
    • @​tiptap/pm@​3.30.2

3.30.1

Patch Changes

  • Updated dependencies [abc8828]
    • @​tiptap/core@​3.30.1
    • @​tiptap/pm@​3.30.1

3.30.0

Minor Changes

  • 3099eef: 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)

Commits
  • db790a7 chore(release): release new stable release (#8216)
  • f434577 chore: migrate over to vite+ for tooling (#8151)
  • 1cb7ad3 fix(react): prevent crash when ReactNodeViewRenderer returns early (#7670)
  • cef2c9a chore(release): release new stable release (#8190)
  • 4c4933d chore(release): release new stable release (#8181)
  • 7901bc2 chore(release): release new stable release (#8142)
  • 3099eef feat(core): add Decorations API with framework widget renderers (#7902)
  • 31e176c fix(react): avoid stale position when syncing node view selection (#8165)
  • See full diff in compare view

Updates @tiptap/starter-kit from 3.29.2 to 3.30.3

Release notes

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

v3.30.3

@​tiptap/extension-text-style

Patch Changes

  • Unsetting one text style inside a blockquote no longer removes the other text styles in it.

@​tiptap/extension-youtube

Patch Changes

  • YouTube live URLs (/live/<id>) now embed the video.

@​tiptap/core

Patch Changes

  • Fix JSX runtime to properly render nested sibling elements by spreading children arrays into DOMOutputSpec

@​tiptap/react

Patch Changes

  • Fix ReactNodeViewRenderer crash when contentComponent is not available

@​tiptap/ai-toolkit

Minor Changes

  • Add the AiInsertReveal extension (@tiptap/ai-toolkit/streaming-reveal) to fade in text as the AI streams it into a collaborative document.

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

... (truncated)

Changelog

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

3.30.3

Patch Changes

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

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

... (truncated)

Commits


View with [code]smith Autofix with [code]smith
Need help on this PR? Tag @codesmith-bot with what you need. Autofix is disabled.

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 20, 2026
@github-actions

Copy link
Copy Markdown
Contributor

Held for manual review: @tiptap/extension-link, @tiptap/react, @tiptap/starter-kit is on the security-sensitive auto-merge exclusion list. Verify the changelog and source diff before merging.

@github-actions

github-actions Bot commented Aug 20, 2026

Copy link
Copy Markdown
Contributor

Cloudflare preview

✅ Deployed 174d0aa · Branch preview · Commit preview · Build logs

@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Aug 20, 2026

Copy link
Copy Markdown
Contributor

Deploying with  Cloudflare Workers  Cloudflare Workers

The latest updates on your project. Learn more about integrating Git with Workers.

Status Name Latest Commit Preview URL Updated (UTC)
✅ Deployment successful!
View logs
block-kitchen 174d0aa Commit Preview URL

Branch Preview URL
Aug 27 2026, 03:53 PM

@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/production-dependencies-783b39f695 branch from cd4e104 to 6b85a43 Compare August 27, 2026 15:45
@dependabot dependabot Bot changed the title build(deps): Bump the production-dependencies group with 3 updates build(deps): Bump the production-dependencies group across 1 directory with 3 updates Aug 27, 2026
@github-actions

Copy link
Copy Markdown
Contributor

Held for manual review: @tiptap/extension-link, @tiptap/react, @tiptap/starter-kit is on the security-sensitive auto-merge exclusion list. Verify the changelog and source diff before merging.

…y with 3 updates

Bumps the production-dependencies group with 3 updates in the / directory: [@tiptap/extension-link](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-link), [@tiptap/react](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/react) and [@tiptap/starter-kit](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/starter-kit).


Updates `@tiptap/extension-link` from 3.29.2 to 3.30.3
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/main/packages/extension-link/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.30.3/packages/extension-link)

Updates `@tiptap/react` from 3.29.2 to 3.30.3
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/main/packages/react/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.30.3/packages/react)

Updates `@tiptap/starter-kit` from 3.29.2 to 3.30.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.30.3/packages/starter-kit)

---
updated-dependencies:
- dependency-name: "@tiptap/extension-link"
  dependency-version: 3.30.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tiptap/react"
  dependency-version: 3.30.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tiptap/starter-kit"
  dependency-version: 3.30.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/production-dependencies-783b39f695 branch from 6b85a43 to 174d0aa Compare August 27, 2026 15:52
@github-actions

Copy link
Copy Markdown
Contributor

Held for manual review: @tiptap/extension-link, @tiptap/react, @tiptap/starter-kit is on the security-sensitive auto-merge exclusion list. Verify the changelog and source diff before merging.

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.

0 participants