Skip to content

chore(deps): bump the npm-minor-and-patch group in /client with 9 updates#399

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/client/npm-minor-and-patch-588bce0a94
Open

chore(deps): bump the npm-minor-and-patch group in /client with 9 updates#399
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/client/npm-minor-and-patch-588bce0a94

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 22, 2026

Copy link
Copy Markdown
Contributor

Bumps the npm-minor-and-patch group in /client with 9 updates:

Package From To
@tiptap/extension-link 3.26.1 3.27.1
@tiptap/extension-placeholder 3.26.1 3.27.1
@tiptap/markdown 3.26.1 3.27.1
@tiptap/react 3.26.1 3.27.1
@tiptap/starter-kit 3.26.1 3.27.1
@xyflow/react 12.11.0 12.11.1
lucide-react 1.20.0 1.21.0
react-hook-form 7.79.0 7.80.0
happy-dom 20.10.5 20.10.6

Updates @tiptap/extension-link from 3.26.1 to 3.27.1

Release notes

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

v3.27.1

@​tiptap/extension-drag-handle

Patch Changes

  • a16901d: Respect margin properties passed via dragImageProperties on the drag preview. The clone reset its margin to 0 after copying styles, which discarded any margin the user explicitly requested. The reset now runs only when no margin property is listed in dragImageProperties, so the drag image can keep the same spacing as the live block.
  • @​tiptap/core@​3.27.1
    • @​tiptap/extension-collaboration@​3.27.1
    • @​tiptap/extension-node-range@​3.27.1
    • @​tiptap/pm@​3.27.1

@​tiptap/extension-list

Patch Changes

  • a16901d: Fix ordered list parsing so under-indented continuation lines preserve their first character.
  • @​tiptap/core@​3.27.1
    • @​tiptap/pm@​3.27.1

@​tiptap/extensions

Patch Changes

  • a16901d: Fix Placeholder flickering while a modal overlay is open. When the editor was occluded during a stream of transactions (e.g. remote collaboration edits), the viewport measurement fell back to a full-document range and repeatedly toggled the data-placeholder attribute on empty blocks. The viewport window is now frozen when the editor can't be measured reliably, so placeholders stay stable.
  • @​tiptap/core@​3.27.1
    • @​tiptap/pm@​3.27.1

v3.27.0

@​tiptap/extension-list

Minor Changes

  • 6270b99: Ordered lists now support the type attribute (a, A, i, I).

    The <ol> type attribute is now fully preserved through the HTML round-trip:

    • type="a" → lowercase alphabetical markers
    • type="A" → uppercase alphabetical markers
    • type="i" → lowercase roman numeral markers
    • type="I" → uppercase roman numeral markers

    Paste from external editors (Google Docs, Word, LibreOffice) now correctly detects the list style — both from the HTML type attribute and from CSS list-style-type properties.

    Plain text paste of typed ordered list markers (e.g. a. Item, I) Item, i. Item\nii. Item) is detected and converted to the correct list type.

    Markdown round-trip preserves typed markers: parsing a. Item creates type: "a", and serializing a typed list back to markdown uses the correct prefix (e.g. I., ii.).

    Joining of adjacent lists now respects type — two lists with different types (e.g. default numeric and type="a") are not merged.

Patch Changes

... (truncated)

Changelog

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

3.27.1

Patch Changes

  • @​tiptap/core@​3.27.1
  • @​tiptap/pm@​3.27.1

3.27.0

Patch Changes

  • 24051bd: Fix isAllowedUri accepting unknown protocols whose name contains a hyphen (e.g. unknown-protocol://test). The hyphen is a valid scheme character per RFC 3986, but the regex was built from a template literal where \- collapsed to -, leaving the terminator class [^a-z+.-:] to parse .-: as a character range that excluded 0-9 and / rather than -. With the proper double-escape, the regex correctly excludes - and unknown hyphenated schemes are rejected again.
  • Updated dependencies [0d0094d]
  • Updated dependencies [795033c]
  • Updated dependencies [0e0c4f9]
  • Updated dependencies [6d12bb9]
    • @​tiptap/core@​3.27.0
    • @​tiptap/pm@​3.27.0
Commits
  • ed5488a chore(release): publish a new stable version (#7955)
  • 2f38887 chore(release): publish a new stable version (#7936)
  • 9e7fc4c chore: add bugs field to all package.json files (#7946)
  • 24051bd fix(extension-link): escape backslash in isAllowedUri regex so hyphens are re...
  • See full diff in compare view

Updates @tiptap/extension-placeholder from 3.26.1 to 3.27.1

Release notes

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

v3.27.1

@​tiptap/extension-drag-handle

Patch Changes

  • a16901d: Respect margin properties passed via dragImageProperties on the drag preview. The clone reset its margin to 0 after copying styles, which discarded any margin the user explicitly requested. The reset now runs only when no margin property is listed in dragImageProperties, so the drag image can keep the same spacing as the live block.
  • @​tiptap/core@​3.27.1
    • @​tiptap/extension-collaboration@​3.27.1
    • @​tiptap/extension-node-range@​3.27.1
    • @​tiptap/pm@​3.27.1

@​tiptap/extension-list

Patch Changes

  • a16901d: Fix ordered list parsing so under-indented continuation lines preserve their first character.
  • @​tiptap/core@​3.27.1
    • @​tiptap/pm@​3.27.1

@​tiptap/extensions

Patch Changes

  • a16901d: Fix Placeholder flickering while a modal overlay is open. When the editor was occluded during a stream of transactions (e.g. remote collaboration edits), the viewport measurement fell back to a full-document range and repeatedly toggled the data-placeholder attribute on empty blocks. The viewport window is now frozen when the editor can't be measured reliably, so placeholders stay stable.
  • @​tiptap/core@​3.27.1
    • @​tiptap/pm@​3.27.1

v3.27.0

@​tiptap/extension-list

Minor Changes

  • 6270b99: Ordered lists now support the type attribute (a, A, i, I).

    The <ol> type attribute is now fully preserved through the HTML round-trip:

    • type="a" → lowercase alphabetical markers
    • type="A" → uppercase alphabetical markers
    • type="i" → lowercase roman numeral markers
    • type="I" → uppercase roman numeral markers

    Paste from external editors (Google Docs, Word, LibreOffice) now correctly detects the list style — both from the HTML type attribute and from CSS list-style-type properties.

    Plain text paste of typed ordered list markers (e.g. a. Item, I) Item, i. Item\nii. Item) is detected and converted to the correct list type.

    Markdown round-trip preserves typed markers: parsing a. Item creates type: "a", and serializing a typed list back to markdown uses the correct prefix (e.g. I., ii.).

    Joining of adjacent lists now respects type — two lists with different types (e.g. default numeric and type="a") are not merged.

Patch Changes

... (truncated)

Changelog

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

3.27.1

Patch Changes

  • Updated dependencies [2be3fb9]
    • @​tiptap/extensions@​3.27.1

3.27.0

Patch Changes

  • @​tiptap/extensions@​3.27.0
Commits

Updates @tiptap/markdown from 3.26.1 to 3.27.1

Release notes

Sourced from @​tiptap/markdown's releases.

v3.27.1

@​tiptap/extension-drag-handle

Patch Changes

  • a16901d: Respect margin properties passed via dragImageProperties on the drag preview. The clone reset its margin to 0 after copying styles, which discarded any margin the user explicitly requested. The reset now runs only when no margin property is listed in dragImageProperties, so the drag image can keep the same spacing as the live block.
  • @​tiptap/core@​3.27.1
    • @​tiptap/extension-collaboration@​3.27.1
    • @​tiptap/extension-node-range@​3.27.1
    • @​tiptap/pm@​3.27.1

@​tiptap/extension-list

Patch Changes

  • a16901d: Fix ordered list parsing so under-indented continuation lines preserve their first character.
  • @​tiptap/core@​3.27.1
    • @​tiptap/pm@​3.27.1

@​tiptap/extensions

Patch Changes

  • a16901d: Fix Placeholder flickering while a modal overlay is open. When the editor was occluded during a stream of transactions (e.g. remote collaboration edits), the viewport measurement fell back to a full-document range and repeatedly toggled the data-placeholder attribute on empty blocks. The viewport window is now frozen when the editor can't be measured reliably, so placeholders stay stable.
  • @​tiptap/core@​3.27.1
    • @​tiptap/pm@​3.27.1

v3.27.0

@​tiptap/extension-list

Minor Changes

  • 6270b99: Ordered lists now support the type attribute (a, A, i, I).

    The <ol> type attribute is now fully preserved through the HTML round-trip:

    • type="a" → lowercase alphabetical markers
    • type="A" → uppercase alphabetical markers
    • type="i" → lowercase roman numeral markers
    • type="I" → uppercase roman numeral markers

    Paste from external editors (Google Docs, Word, LibreOffice) now correctly detects the list style — both from the HTML type attribute and from CSS list-style-type properties.

    Plain text paste of typed ordered list markers (e.g. a. Item, I) Item, i. Item\nii. Item) is detected and converted to the correct list type.

    Markdown round-trip preserves typed markers: parsing a. Item creates type: "a", and serializing a typed list back to markdown uses the correct prefix (e.g. I., ii.).

    Joining of adjacent lists now respects type — two lists with different types (e.g. default numeric and type="a") are not merged.

Patch Changes

... (truncated)

Changelog

Sourced from @​tiptap/markdown's changelog.

3.27.1

Patch Changes

  • @​tiptap/core@​3.27.1
  • @​tiptap/pm@​3.27.1

3.27.0

Patch Changes

  • 33687f1: Fix parsing with injected Marked instances so custom markdown tokenizers registered via marked.use(...) are respected.
  • 852ced3: Fix unrecognized HTML detection during markdown parsing to work without window.DOMParser or HTMLUnknownElement, so angle-bracket placeholders are preserved as literal text in SSR and Node environments.
  • Updated dependencies [0d0094d]
  • Updated dependencies [795033c]
  • Updated dependencies [0e0c4f9]
  • Updated dependencies [6d12bb9]
    • @​tiptap/core@​3.27.0
    • @​tiptap/pm@​3.27.0
Commits
  • ed5488a chore(release): publish a new stable version (#7955)
  • 2f38887 chore(release): publish a new stable version (#7936)
  • 852ced3 fix(markdown): SSR-safe unrecognized HTML detection (#7916)
  • 9e7fc4c chore: add bugs field to all package.json files (#7946)
  • 33687f1 fix(markdown): run custom tokenizers on injected Marked instances (#7928)
  • See full diff in compare view

Updates @tiptap/react from 3.26.1 to 3.27.1

Release notes

Sourced from @​tiptap/react's releases.

v3.27.1

@​tiptap/extension-drag-handle

Patch Changes

  • a16901d: Respect margin properties passed via dragImageProperties on the drag preview. The clone reset its margin to 0 after copying styles, which discarded any margin the user explicitly requested. The reset now runs only when no margin property is listed in dragImageProperties, so the drag image can keep the same spacing as the live block.
  • @​tiptap/core@​3.27.1
    • @​tiptap/extension-collaboration@​3.27.1
    • @​tiptap/extension-node-range@​3.27.1
    • @​tiptap/pm@​3.27.1

@​tiptap/extension-list

Patch Changes

  • a16901d: Fix ordered list parsing so under-indented continuation lines preserve their first character.
  • @​tiptap/core@​3.27.1
    • @​tiptap/pm@​3.27.1

@​tiptap/extensions

Patch Changes

  • a16901d: Fix Placeholder flickering while a modal overlay is open. When the editor was occluded during a stream of transactions (e.g. remote collaboration edits), the viewport measurement fell back to a full-document range and repeatedly toggled the data-placeholder attribute on empty blocks. The viewport window is now frozen when the editor can't be measured reliably, so placeholders stay stable.
  • @​tiptap/core@​3.27.1
    • @​tiptap/pm@​3.27.1

v3.27.0

@​tiptap/extension-list

Minor Changes

  • 6270b99: Ordered lists now support the type attribute (a, A, i, I).

    The <ol> type attribute is now fully preserved through the HTML round-trip:

    • type="a" → lowercase alphabetical markers
    • type="A" → uppercase alphabetical markers
    • type="i" → lowercase roman numeral markers
    • type="I" → uppercase roman numeral markers

    Paste from external editors (Google Docs, Word, LibreOffice) now correctly detects the list style — both from the HTML type attribute and from CSS list-style-type properties.

    Plain text paste of typed ordered list markers (e.g. a. Item, I) Item, i. Item\nii. Item) is detected and converted to the correct list type.

    Markdown round-trip preserves typed markers: parsing a. Item creates type: "a", and serializing a typed list back to markdown uses the correct prefix (e.g. I., ii.).

    Joining of adjacent lists now respects type — two lists with different types (e.g. default numeric and type="a") are not merged.

Patch Changes

... (truncated)

Changelog

Sourced from @​tiptap/react's changelog.

3.27.1

Patch Changes

  • @​tiptap/core@​3.27.1
  • @​tiptap/pm@​3.27.1

3.27.0

Patch Changes

  • Updated dependencies [0d0094d]
  • Updated dependencies [795033c]
  • Updated dependencies [0e0c4f9]
  • Updated dependencies [6d12bb9]
    • @​tiptap/core@​3.27.0
    • @​tiptap/pm@​3.27.0
Commits

Updates @tiptap/starter-kit from 3.26.1 to 3.27.1

Release notes

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

v3.27.1

@​tiptap/extension-drag-handle

Patch Changes

  • a16901d: Respect margin properties passed via dragImageProperties on the drag preview. The clone reset its margin to 0 after copying styles, which discarded any margin the user explicitly requested. The reset now runs only when no margin property is listed in dragImageProperties, so the drag image can keep the same spacing as the live block.
  • @​tiptap/core@​3.27.1
    • @​tiptap/extension-collaboration@​3.27.1
    • @​tiptap/extension-node-range@​3.27.1
    • @​tiptap/pm@​3.27.1

@​tiptap/extension-list

Patch Changes

  • a16901d: Fix ordered list parsing so under-indented continuation lines preserve their first character.
  • @​tiptap/core@​3.27.1
    • @​tiptap/pm@​3.27.1

@​tiptap/extensions

Patch Changes

  • a16901d: Fix Placeholder flickering while a modal overlay is open. When the editor was occluded during a stream of transactions (e.g. remote collaboration edits), the viewport measurement fell back to a full-document range and repeatedly toggled the data-placeholder attribute on empty blocks. The viewport window is now frozen when the editor can't be measured reliably, so placeholders stay stable.
  • @​tiptap/core@​3.27.1
    • @​tiptap/pm@​3.27.1

v3.27.0

@​tiptap/extension-list

Minor Changes

  • 6270b99: Ordered lists now support the type attribute (a, A, i, I).

    The <ol> type attribute is now fully preserved through the HTML round-trip:

    • type="a" → lowercase alphabetical markers
    • type="A" → uppercase alphabetical markers
    • type="i" → lowercase roman numeral markers
    • type="I" → uppercase roman numeral markers

    Paste from external editors (Google Docs, Word, LibreOffice) now correctly detects the list style — both from the HTML type attribute and from CSS list-style-type properties.

    Plain text paste of typed ordered list markers (e.g. a. Item, I) Item, i. Item\nii. Item) is detected and converted to the correct list type.

    Markdown round-trip preserves typed markers: parsing a. Item creates type: "a", and serializing a typed list back to markdown uses the correct prefix (e.g. I., ii.).

    Joining of adjacent lists now respects type — two lists with different types (e.g. default numeric and type="a") are not merged.

Patch Changes

... (truncated)

Changelog

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

3.27.1

Patch Changes

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

3.27.0

Patch Changes

  • Updated dependencies [0d0094d]
  • Updated dependencies [795033c]
  • Updated dependencies [24051bd]
  • Updated dependencies [0e0c4f9]
  • Updated dependencies [6d12bb9]
    • @​tiptap/extension-list@​3.27.0
    • @​tiptap/core@​3.27.0
    • @​tiptap/extension-link@​3.27.0
    • @​tiptap/extension-list-item@​3.27.0
    • @​tiptap/extension-list-keymap@​3.27.0
    • @​tiptap/extension-bullet-list@​3.27.0
    • @​tiptap/extension-ordered-list@​3.27.0
    • @​tiptap/extension-blockquote@​3.27.0
    • @​tiptap/extension-bold@​3.27.0
    • @​tiptap/extension-code@​3.27.0

... (truncated)

Commits

Updates @xyflow/react from 12.11.0 to 12.11.1

Release notes

Sourced from @​xyflow/react's releases.

@​xyflow/react@​12.11.1

Patch Changes

  • #5815 87da45c - Fix FinalConnectionState type so it preserves the discriminated union.

  • #5823 a6afc91 - Update attribution link

  • #5824 6b1dac5 - Do not fire on pane click when connection ends on pane

  • #5818 4ddc2d8 - Provide the shared handle config (connectOnClick, noPanClassName, rfId) through context instead of subscribing to the store in every Handle, so a store update no longer runs a selector once per handle

  • #5817 8df250b - Reduce per-handle work on store updates by returning a shared connection state while no connection is in progress.

  • #5822 a6249de - Return stable reference for edge position when connected node gets deleted

  • Updated dependencies [ceb8604, 87da45c]:

    • @​xyflow/system@​0.0.78
Changelog

Sourced from @​xyflow/react's changelog.

12.11.1

Patch Changes

  • #5815 87da45c - Fix FinalConnectionState type so it preserves the discriminated union.

  • #5823 a6afc91 - Update attribution link

  • #5824 6b1dac5 - Do not fire on pane click when connection ends on pane

  • #5818 4ddc2d8 - Provide the shared handle config (connectOnClick, noPanClassName, rfId) through context instead of subscribing to the store in every Handle, so a store update no longer runs a selector once per handle

  • #5817 8df250b - Reduce per-handle work on store updates by returning a shared connection state while no connection is in progress.

  • #5822 a6249de - Return stable reference for edge position when connected node gets deleted

  • Updated dependencies [ceb8604, 87da45c]:

    • @​xyflow/system@​0.0.78
Commits
  • eedbc81 chore(packages): bump
  • c7bdce4 chore(pane): cleanup
  • cd5ec45 chore(react/pane): cleanup
  • f919daa fix(pane): do not fire pane click when connection ends on pane
  • 36c8a1a chore(attribution): update link
  • 50fd4b4 Merge pull request #5823 from xyflow/refactor/attribution
  • 5f1a206 chore(attr): update link
  • 4710765 Merge pull request #5822 from xyflow/refactor/edge-deleted-nodes
  • 503fc15 Merge branch 'main' into perf/handle-config-context
  • ae1b237 refactor(edges): don't create new object when edge returns early because conn...
  • Additional commits viewable in compare view

Updates lucide-react from 1.20.0 to 1.21.0

Release notes

Sourced from lucide-react's releases.

Version 1.21.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@1.20.0...1.21.0

Commits
  • 5ff536e ci(release.yml): Fix workflow and remove version scripts in package scripts...
  • See full diff in compare view

Updates react-hook-form from 7.79.0 to 7.80.0

Release notes

Sourced from react-hook-form's releases.

Version 7.80.0

🧄 feat: disable useFieldArray fields (#13535)

const { fields } = useFieldArray({ disabled: true });
fields[0].disabled; // contains disabled props

🛺 perf: make rhf more performant (#13524) 🐞 fix(deepEqual): empty array and empty plain object should not be equal (#13533)

thanks to @​JSap0914

Changelog

Sourced from react-hook-form's changelog.

[7.80.0] - 2026-06-20

Added

  • disabled prop support for individual fields within useFieldArray

Fixed

  • deepEqual incorrectly treating empty array [] and empty plain object {} as equal

Performance

  • Improve onChange, setValid, dirty checking, setValue, and setValues performance
Commits

Updates happy-dom from 20.10.5 to 20.10.6

Release notes

Sourced from happy-dom's releases.

v20.10.6

👷‍♂️ Patch fixes

Commits

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the npm-minor-and-patch group in /client with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [@tiptap/extension-link](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-link) | `3.26.1` | `3.27.1` |
| [@tiptap/extension-placeholder](https://github.com/ueberdosis/tiptap/tree/HEAD/packages-deprecated/extension-placeholder) | `3.26.1` | `3.27.1` |
| [@tiptap/markdown](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/markdown) | `3.26.1` | `3.27.1` |
| [@tiptap/react](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/react) | `3.26.1` | `3.27.1` |
| [@tiptap/starter-kit](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/starter-kit) | `3.26.1` | `3.27.1` |
| [@xyflow/react](https://github.com/xyflow/xyflow/tree/HEAD/packages/react) | `12.11.0` | `12.11.1` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `1.20.0` | `1.21.0` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.79.0` | `7.80.0` |
| [happy-dom](https://github.com/capricorn86/happy-dom) | `20.10.5` | `20.10.6` |


Updates `@tiptap/extension-link` from 3.26.1 to 3.27.1
- [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.27.1/packages/extension-link)

Updates `@tiptap/extension-placeholder` from 3.26.1 to 3.27.1
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/main/packages-deprecated/extension-placeholder/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.27.1/packages-deprecated/extension-placeholder)

Updates `@tiptap/markdown` from 3.26.1 to 3.27.1
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/main/packages/markdown/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.27.1/packages/markdown)

Updates `@tiptap/react` from 3.26.1 to 3.27.1
- [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.27.1/packages/react)

Updates `@tiptap/starter-kit` from 3.26.1 to 3.27.1
- [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.1/packages/starter-kit)

Updates `@xyflow/react` from 12.11.0 to 12.11.1
- [Release notes](https://github.com/xyflow/xyflow/releases)
- [Changelog](https://github.com/xyflow/xyflow/blob/main/packages/react/CHANGELOG.md)
- [Commits](https://github.com/xyflow/xyflow/commits/@xyflow/react@12.11.1/packages/react)

Updates `lucide-react` from 1.20.0 to 1.21.0
- [Release notes](https://github.com/lucide-icons/lucide/releases)
- [Commits](https://github.com/lucide-icons/lucide/commits/1.21.0/packages/lucide-react)

Updates `react-hook-form` from 7.79.0 to 7.80.0
- [Release notes](https://github.com/react-hook-form/react-hook-form/releases)
- [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md)
- [Commits](react-hook-form/react-hook-form@v7.79.0...v7.80.0)

Updates `happy-dom` from 20.10.5 to 20.10.6
- [Release notes](https://github.com/capricorn86/happy-dom/releases)
- [Commits](capricorn86/happy-dom@v20.10.5...v20.10.6)

---
updated-dependencies:
- dependency-name: "@tiptap/extension-link"
  dependency-version: 3.27.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-minor-and-patch
- dependency-name: "@tiptap/extension-placeholder"
  dependency-version: 3.27.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-minor-and-patch
- dependency-name: "@tiptap/markdown"
  dependency-version: 3.27.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-minor-and-patch
- dependency-name: "@tiptap/react"
  dependency-version: 3.27.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-minor-and-patch
- dependency-name: "@tiptap/starter-kit"
  dependency-version: 3.27.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-minor-and-patch
- dependency-name: "@xyflow/react"
  dependency-version: 12.11.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-minor-and-patch
- dependency-name: lucide-react
  dependency-version: 1.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-minor-and-patch
- dependency-name: react-hook-form
  dependency-version: 7.80.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-minor-and-patch
- dependency-name: happy-dom
  dependency-version: 20.10.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-minor-and-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 Jun 22, 2026
@github-actions github-actions Bot enabled auto-merge June 22, 2026 14:14
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