Skip to content

Bump the production-dependencies group across 1 directory with 28 updates#104

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/frontend/production-dependencies-4e361c60f8
Closed

Bump the production-dependencies group across 1 directory with 28 updates#104
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/frontend/production-dependencies-4e361c60f8

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 27, 2026

Bumps the production-dependencies group with 28 updates in the /frontend directory:

Package From To
@floating-ui/dom 1.7.5 1.7.6
@hocuspocus/provider 3.4.4 4.0.0
@tiptap/core 3.20.0 3.22.4
@tiptap/extension-collaboration 3.20.0 3.22.4
@tiptap/extension-collaboration-caret 3.20.0 3.22.4
@tiptap/extension-color 3.20.0 3.22.4
@tiptap/extension-image 3.20.0 3.22.4
@tiptap/extension-link 3.20.0 3.22.4
@tiptap/extension-placeholder 3.20.0 3.22.4
@tiptap/extension-table 3.20.0 3.22.4
@tiptap/extension-table-cell 3.20.0 3.22.4
@tiptap/extension-table-header 3.20.0 3.22.4
@tiptap/extension-table-row 3.20.0 3.22.4
@tiptap/extension-text-style 3.20.0 3.22.4
@tiptap/extension-underline 3.20.0 3.22.4
@tiptap/pm 3.20.0 3.22.4
@tiptap/react 3.20.0 3.22.4
@tiptap/starter-kit 3.20.0 3.22.4
i18next 25.8.13 26.0.8
jspdf 4.2.0 4.2.1
postcss 8.5.6 8.5.12
react 19.2.4 19.2.5
react-dom 19.2.4 19.2.5
react-i18next 16.5.4 17.0.4
react-router 7.13.1 7.14.2
uuid 13.0.0 14.0.0
yjs 13.6.29 13.6.30
@rollup/rollup-linux-x64-musl 4.59.0 4.60.2

Updates @floating-ui/dom from 1.7.5 to 1.7.6

Release notes

Sourced from @​floating-ui/dom's releases.

@​floating-ui/dom@​1.7.6

Patch Changes

  • fix(types): ensure Platform type contains detectOverflow type
  • perf: bundle and runtime improvements
  • feat(autoUpdate): allow not passing a floating element
  • Update dependencies: @floating-ui/utils@0.2.11, @floating-ui/core@1.7.5
Changelog

Sourced from @​floating-ui/dom's changelog.

1.7.6

Patch Changes

  • fix(types): ensure Platform type contains detectOverflow type
  • perf: bundle and runtime improvements
  • feat(autoUpdate): allow not passing a floating element
  • Update dependencies: @floating-ui/utils@0.2.11, @floating-ui/core@1.7.5
Commits

Updates @hocuspocus/provider from 3.4.4 to 4.0.0

Release notes

Sourced from @​hocuspocus/provider's releases.

v4.0.0

Hocuspocus v4.0 Release Notes

Hocuspocus v4 is a major release that brings cross-runtime support, improved type safety, and important bug fixes. This release focuses on making Hocuspocus run beyond Node.js -- on Bun, Deno, Cloudflare Workers, and Node with uWebSockets -- while improving the developer experience with generic Context typing and structured transaction origins.

Backward Compatibility

A v3 provider can connect to a v4 server, and a v4 provider can connect to a v3 server. The wire protocol remains compatible in both directions:

  • v3 provider -> v4 server: The server accepts plain document names (no session routing key), does not require Pong responses, and handles auth messages without a provider version string.
  • v4 provider -> v3 server: The provider defaults to sessionAwareness: false, so it sends plain document names. The extra version string in the auth message is ignored by the v3 server as trailing data. The provider does not require server-initiated Ping messages.
  • Session awareness caveat: If sessionAwareness: true is explicitly enabled on a v4 provider connecting to a v3 server, the server will treat the composite routing key (documentName\0sessionId) as a literal document name, creating unintended documents. Keep sessionAwareness: false (the default) when connecting to a v3 server.

Highlights

Cross-Runtime Support

Hocuspocus is no longer tied to the Node.js ws library. The server now uses crossws, a universal WebSocket adapter, enabling Hocuspocus to run on:

  • Node.js (with ws or uWebSockets.js)
  • Bun
  • Deno
  • Cloudflare Workers

The built-in Server class continues to work as before for Node.js users. For other runtimes, use Hocuspocus directly with handleConnection(), which now accepts any WebSocketLike object and a web-standard Request.

Generic Context Type

All core classes and hook payloads now accept a generic Context type parameter, enabling end-to-end type safety:

interface MyContext {
  userId: string;
  permissions: string[];
}
const server = Server.configure<MyContext>({
async onAuthenticate({ context, token }) {
// context is typed as MyContext
return { userId: '123', permissions: ['read', 'write'] };
},
async onChange({ context }) {
// context.userId is typed as string
console.log(context.userId);
},
});

The generic defaults to any, so existing code without explicit typing continues to work.

... (truncated)

Changelog

Sourced from @​hocuspocus/provider's changelog.

4.0.0 (2026-04-23)

Note: Version bump only for package hocuspocus

4.0.0-rc.7 (2026-04-22)

Bug Fixes

  • provider-react ESM now emits a clean import { jsx } from "react/jsx-runtime" and zero CJS shims (e40afd9)

4.0.0-rc.6 (2026-04-20)

Bug Fixes

  • react provider in strict mode (4f27b7f)

4.0.0-rc.5 (2026-04-16)

Features

4.0.0-rc.4 (2026-04-16)

Bug Fixes

  • publishConfig for provider-react (376765f)

... (truncated)

Commits

Updates @tiptap/core from 3.20.0 to 3.22.4

Release notes

Sourced from @​tiptap/core's releases.

v3.22.4

@​tiptap/extension-drag-handle

Patch Changes

  • 032f8f1: Fix drag handle ghost image alignment when dragging blocks inside offset layouts, and preserve correct ghost image behavior for RTL content.
  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
    • @​tiptap/core@​3.22.4
    • @​tiptap/extension-collaboration@​3.22.4
    • @​tiptap/extension-node-range@​3.22.4
    • @​tiptap/pm@​3.22.4

@​tiptap/core

Patch Changes

  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • 032f8f1: Fix text selection collapsing after toggling off a list with AllSelection
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
    • @​tiptap/pm@​3.22.4

@​tiptap/extension-audio

Patch Changes

  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
    • @​tiptap/core@​3.22.4

@​tiptap/extension-blockquote

Patch Changes

  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
    • @​tiptap/core@​3.22.4

@​tiptap/extension-bold

Patch Changes

  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]

... (truncated)

Changelog

Sourced from @​tiptap/core's changelog.

3.22.4

Patch Changes

  • 27ea931: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • 64f36b8: Fix text selection collapsing after toggling off a list with AllSelection
  • Updated dependencies [27ea931]
  • Updated dependencies [032f8f1]
    • @​tiptap/pm@​3.22.4

3.22.3

Patch Changes

  • cb28e7b: Fixed insertContentAt corrupting the document when inserting inline content with marks at the start of a paragraph. The from - 1 position adjustment now only applies to block-level content.
    • @​tiptap/pm@​3.22.3

3.22.2

Patch Changes

  • f1d504c: Fix incorrect selection placement when pasting at the end of a marked text node, ensuring inclusive marks are respected
  • 404c683: Fixes list toggling when the entire document is selected
    • @​tiptap/pm@​3.22.2

3.22.1

Patch Changes

  • ee03ac0: Fix NodeView not re-rendering when a node's position changes without content or decoration changes (e.g. when a sibling node is moved within the same parent)
  • b88f9ed: Don't stop dragover/dragenter events in NodeViews, to prevent spurious drag-copy cursors
    • @​tiptap/pm@​3.22.1

3.22.0

Patch Changes

  • 912a49b: Fix HTML character escaping in markdown roundtrip. HTML entities (&lt;, &gt;, &amp;, &quot;) are now decoded to literal characters when parsing markdown into the editor. <, >, and & are re-encoded when serializing back to markdown, while " is preserved as a literal character since double quotes are ordinary in markdown. Code detection for skipping encoding now uses the code: true extension spec instead of hardcoded type names. Literal characters inside code blocks and inline code are always preserved.
  • 7d4fb9a: Fix ResizableNodeView ignoring node's inline setting by using inline-flex for inline nodes and flex for block nodes
  • 0c1c112: extendMarkRange defaults to using the attributes of the first mark of the given type, instead of attributes = {}. In particular, extendMarkRange('link') no longer extends to adjacent links with different hrefs; restore the previous behavior with extendMarkRange('link', {}).
  • 0c1c112: Fix getMarkRange attributes default to consider the first mark of the given type
  • f99bdc2: Guard mark delete event handling when unsetMark removes a mark from inline content that starts at position 0, preventing a RangeError during the before-node lookup.
    • @​tiptap/pm@​3.22.0

3.21.0

Patch Changes

  • @​tiptap/pm@​3.21.0

... (truncated)

Commits
  • dec9735 chore(release): publish a new stable version (#7727)
  • 27ea931 fix: restrict peer dependency ranges to avoid npm resolution conflicts (#7593)
  • 64f36b8 fix(core): preserve text selection when toggling off list with AllSelection (...
  • 626b052 chore(release): publish a new stable version (#7714)
  • cb28e7b Guard insertContentAt from-1 adjustment to block content only (#7711)
  • 99e204c chore(release): publish a new stable version (#7698)
  • 404c683 Fix/7562 (core): toggle list correctly when document selection is AllSelectio...
  • 8fee91b test(core): add markPasteRule inclusivity regression coverage (#7699)
  • f1d504c fix(core): markPasteRule incorrectly removes storedMarks when mark is at end ...
  • 8ee6d9a chore(release): publish a new stable version (#7687)
  • Additional commits viewable in compare view

Updates @tiptap/extension-collaboration from 3.20.0 to 3.22.4

Release notes

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

v3.22.4

@​tiptap/extension-drag-handle

Patch Changes

  • 032f8f1: Fix drag handle ghost image alignment when dragging blocks inside offset layouts, and preserve correct ghost image behavior for RTL content.
  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
    • @​tiptap/core@​3.22.4
    • @​tiptap/extension-collaboration@​3.22.4
    • @​tiptap/extension-node-range@​3.22.4
    • @​tiptap/pm@​3.22.4

@​tiptap/core

Patch Changes

  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • 032f8f1: Fix text selection collapsing after toggling off a list with AllSelection
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
    • @​tiptap/pm@​3.22.4

@​tiptap/extension-audio

Patch Changes

  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
    • @​tiptap/core@​3.22.4

@​tiptap/extension-blockquote

Patch Changes

  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
    • @​tiptap/core@​3.22.4

@​tiptap/extension-bold

Patch Changes

  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]

... (truncated)

Changelog

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

3.22.4

Patch Changes

  • 27ea931: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • Updated dependencies [27ea931]
  • Updated dependencies [64f36b8]
  • Updated dependencies [032f8f1]
    • @​tiptap/core@​3.22.4
    • @​tiptap/pm@​3.22.4

3.22.3

Patch Changes

  • Updated dependencies [cb28e7b]
    • @​tiptap/core@​3.22.3
    • @​tiptap/pm@​3.22.3

3.22.2

Patch Changes

  • Updated dependencies [f1d504c]
  • Updated dependencies [404c683]
    • @​tiptap/core@​3.22.2
    • @​tiptap/pm@​3.22.2

3.22.1

Patch Changes

  • Updated dependencies [ee03ac0]
  • Updated dependencies [b88f9ed]
    • @​tiptap/core@​3.22.1
    • @​tiptap/pm@​3.22.1

3.22.0

Patch Changes

  • 556b0a3: Moved content validation from Yjs beforeTransaction (whose return value was ignored) to ProseMirror filterTransaction, so invalid collaborative changes are now properly blocked.
  • Updated dependencies [912a49b]
  • Updated dependencies [7d4fb9a]
  • Updated dependencies [0c1c112]
  • Updated dependencies [0c1c112]
  • Updated dependencies [f99bdc2]
    • @​tiptap/core@​3.22.0
    • @​tiptap/pm@​3.22.0

... (truncated)

Commits
  • dec9735 chore(release): publish a new stable version (#7727)
  • 27ea931 fix: restrict peer dependency ranges to avoid npm resolution conflicts (#7593)
  • 626b052 chore(release): publish a new stable version (#7714)
  • 99e204c chore(release): publish a new stable version (#7698)
  • 8ee6d9a chore(release): publish a new stable version (#7687)
  • 7834835 chore(release): publish a new stable version (#7665)
  • 556b0a3 fix(collaboration): move content validation to filterTransaction (#7600)
  • 91c51be chore(release): publish a new stable version (#7658)
  • 9a6d574 chore(release): publish a new stable version (#7655)
  • 18f9afe chore(release): publish a new stable version (#7640)
  • Additional commits viewable in compare view

Updates @tiptap/extension-collaboration-caret from 3.20.0 to 3.22.4

Release notes

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

v3.22.4

@​tiptap/extension-drag-handle

Patch Changes

  • 032f8f1: Fix drag handle ghost image alignment when dragging blocks inside offset layouts, and preserve correct ghost image behavior for RTL content.
  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
    • @​tiptap/core@​3.22.4
    • @​tiptap/extension-collaboration@​3.22.4
    • @​tiptap/extension-node-range@​3.22.4
    • @​tiptap/pm@​3.22.4

@​tiptap/core

Patch Changes

  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • 032f8f1: Fix text selection collapsing after toggling off a list with AllSelection
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
    • @​tiptap/pm@​3.22.4

@​tiptap/extension-audio

Patch Changes

  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
    • @​tiptap/core@​3.22.4

@​tiptap/extension-blockquote

Patch Changes

  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
    • @​tiptap/core@​3.22.4

@​tiptap/extension-bold

Patch Changes

  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]

... (truncated)

Changelog

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

3.22.4

Patch Changes

  • 27ea931: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • Updated dependencies [27ea931]
  • Updated dependencies [64f36b8]
  • Updated dependencies [032f8f1]
    • @​tiptap/core@​3.22.4
    • @​tiptap/pm@​3.22.4

3.22.3

Patch Changes

  • Updated dependencies [cb28e7b]
    • @​tiptap/core@​3.22.3
    • @​tiptap/pm@​3.22.3

3.22.2

Patch Changes

  • Updated dependencies [f1d504c]
  • Updated dependencies [404c683]
    • @​tiptap/core@​3.22.2
    • @​tiptap/pm@​3.22.2

3.22.1

Patch Changes

  • Updated dependencies [ee03ac0]
  • Updated dependencies [b88f9ed]
    • @​tiptap/core@​3.22.1
    • @​tiptap/pm@​3.22.1

3.22.0

Patch Changes

  • Updated dependencies [912a49b]
  • Updated dependencies [7d4fb9a]
  • Updated dependencies [0c1c112]
  • Updated dependencies [0c1c112]
  • Updated dependencies [f99bdc2]
    • @​tiptap/core@​3.22.0
    • @​tiptap/pm@​3.22.0

3.21.0

... (truncated)

Commits
  • dec9735 chore(release): publish a new stable version (#7727)
  • 27ea931 fix: restrict peer dependency ranges to avoid npm resolution conflicts (#7593)
  • 626b052 chore(release): publish a new stable version (#7714)
  • 99e204c chore(release): publish a new stable version (#7698)
  • 8ee6d9a chore(release): publish a new stable version (#7687)
  • 7834835 chore(release): publish a new stable version (#7665)
  • 91c51be chore(release): publish a new stable version (#7658)
  • 9a6d574 chore(release): publish a new stable version (#7655)
  • 18f9afe chore(release): publish a new stable version (#7640)
  • 3d893bb chore(release): publish a new stable version (#7617)
  • Additional commits viewable in compare view

Updates @tiptap/extension-color from 3.20.0 to 3.22.4

Release notes

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

v3.22.4

@​tiptap/extension-drag-handle

Patch Changes

  • 032f8f1: Fix drag handle ghost image alignment when dragging blocks inside offset layouts, and preserve correct ghost image behavior for RTL content.
  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
    • @​tiptap/core@​3.22.4
    • @​tiptap/extension-collaboration@​3.22.4
    • @​tiptap/extension-node-range@​3.22.4
    • @​tiptap/pm@​3.22.4

@​tiptap/core

Patch Changes

  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • 032f8f1: Fix text selection collapsing after toggling off a list with AllSelection
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
    • @​tiptap/pm@​3.22.4

@​tiptap/extension-audio

Patch Changes

  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
    • @​tiptap/core@​3.22.4

@​tiptap/extension-blockquote

Patch Changes

  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
    • @​tiptap/core@​3.22.4

@​tiptap/extension-bold

Patch Changes

  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]

... (truncated)

Changelog

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

3.22.4

Patch Changes

  • 27ea931: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • Updated dependencies [27ea931]
    • @​tiptap/extension-text-style@​3.22.4

3.22.3

Patch Changes

  • @​tiptap/extension-text-style@​3.22.3

3.22.2

Patch Changes

  • @​tiptap/extension-text-style@​3.22.2

3.22.1

Patch Changes

  • @​tiptap/extension-text-style@​3.22.1

3.22.0

Patch Changes

  • @​tiptap/extension-text-style@​3.22.0

3.21.0

Patch Changes

  • @​tiptap/extension-text-style@​3.21.0

3.20.6

Patch Changes

  • @​tiptap/extension-text-style@​3.20.6

3.20.5

Patch Changes

  • @​tiptap/extension-text-style@​3.20.5

... (truncated)

Commits
  • dec9735 chore(release): publish a new stable version (#7727)
  • 27ea931 fix: restrict peer dependency ranges to avoid npm resolution conflicts (#7593)
  • 626b052 chore(release): publish a new stable version (#7714)
  • 99e204c chore(release): publish a new stable version (#7698)
  • 8ee6d9a chore(release): publish a new stable version (#7687)
  • 7834835 chore(release): publish a new stable version (#7665)
  • 91c51be chore(release): publish a new stable version (#7658)
  • 9a6d574 chore(release): publish a new stable version (#7655)
  • 18f9afe chore(release): publish a new stable version (#7640)
  • 3d893bb chore(release): publish a new stable version (#7617)
  • Additional commits viewable in compare view

Updates @tiptap/extension-image from 3.20.0 to 3.22.4

Release notes

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

v3.22.4

@​tiptap/extension-drag-handle

Patch Changes

  • 032f8f1: Fix drag handle ghost image alignment when dragging blocks inside offset layouts, and preserve correct ghost image behavior for RTL content.
  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
    • @​tiptap/core@​3.22.4
    • @​tiptap/extension-collaboration@​3.22.4
    • @​tiptap/extension-node-range@​3.22.4
    • @​tiptap/pm@​3.22.4

@​tiptap/core

Patch Changes

  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • 032f8f1: Fix text selection collapsing after toggling off a list with AllSelection
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
    • @​tiptap/pm@​3.22.4

@​tiptap/extension-audio

Patch Changes

  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
    • @​tiptap/core@​3.22.4

@​tiptap/extension-blockquote

Patch Changes

  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
    • @​tiptap/core@​3.22.4

@​tiptap/extension-bold

Patch Changes

  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]

... (truncated)

Changelog

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

3.22.4

Patch Changes

  • 27ea931: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • Updated dependencies [27ea931]
  • Updated dependencies [64f36b8]
    • @​tiptap/core@​3.22.4

3.22.3

Patch Changes

  • Updated dependencies [cb28e7b]
    • @​tiptap/core@​3.22.3

3.22.2

Patch Changes

  • Updated dependencies [f1d504c]
  • Updated dependencies [404c683]
    • @​tiptap/core@​3.22.2

3.22.1

Patch Changes

  • Updated dependencies [ee03ac0]
  • Updated dependencies [b88f9ed]
    • @​tiptap/core@​3.22.1

3.22.0

Patch Changes

  • Updated dependencies [912a49b]
  • Updated dependencies [7d4fb9a]
  • Updated dependencies [0c1c112]
  • Updated dependencies [0c1c112]
  • Updated dependencies [f99bdc2]
    • @​tiptap/core@​3.22.0

3.21.0

Patch Changes

  • @​tiptap/core@​3.21.0

3.20.6

... (truncated)

Commits
  • dec9735 chore(release): publish a new stable version (#7727)
  • 27ea931 fix: restrict peer dependency ranges to avoid npm resolution conflicts (#7593)
  • 626b052 chore(release): publish a new stable version (#7714)
  • 99e204c chore(release): publish a new stable version (#7698)
  • 8ee6d9a chore(release): publish a new stable version (#7687)
  • 7834835 chore(release): publish a new stable version (#7665)
  • 91c51be chore(release): publish a new stable version (#7658)
  • 9a6d574 chore(release): publish a new stable version (#7655)
  • 18f9afe chore(release): publish a new stable version (#7640)
  • 3d893bb chore(release): publish a new stable version (#7617)
  • Additional commits viewable in compare view

Updates @tiptap/extension-link from 3.20.0 to 3.22.4

Release notes

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

v3.22.4

@​tiptap/extension-drag-handle

Patch Changes

  • 032f8f1: Fix drag handle ghost image alignment when dragging blocks inside offset layouts, and preserve correct ghost image behavior for RTL content.
  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
    • @​tiptap/core@​3.22.4
    • @​tiptap/extension-collaboration@​3.22.4
    • @​tiptap/extension-node-range@​3.22.4
    • @​tiptap/pm@​3.22.4

@​tiptap/core

Patch Changes

  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • 032f8f1: Fix text selection collapsing after toggling off a list with AllSelection
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
    • @​tiptap/pm@​3.22.4

@​tiptap/extension-audio

Patch Changes

  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
    • @​tiptap/core@​3.22.4

@​tiptap/extension-blockquote

Patch Changes

  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
    • @​tiptap/core@​3.22.4

@​tiptap/extension-bold

Patch Changes

  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]

... (truncated)

Changelog

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

3.22.4

Patch Changes

  • 27ea931: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • Updated dependencies [27ea931]
  • Updated dependencies [64f36b8]
  • Updated dependencies [032f8f1]
    • @​tiptap/core@​3.22.4
    • @​tiptap/pm@​3.22.4

3.22.3

Patch Changes

  • Updated dependencies [cb28e7b]
    • @​tiptap/core@​3.22.3
    • @​tiptap/pm@​3.22.3

3.22.2

Patch Changes

  • Updated dependencies [f1d504c]
  • Updated dependencies [404c683]
    • @​tiptap/core@​3.22.2
    • @​tiptap/pm@​3.22.2

3.22.1

Patch Changes

  • Updated dependencies [ee03ac0]
  • Updated dependencies [b88f9ed]
    • @​tiptap/core@​3.22.1
    • @​tiptap/pm@​3.22.1

3.22.0

Patch Changes

  • Updated dependencies [912a49b]
  • Updated dependencies [7d4fb9a]
  • Updated dependencies [0c1c112]
  • Updated dependencies [0c1c112]
  • Updated dependencies [f99bdc2]
    • @​tiptap/core@​3.22.0
    • @​tiptap/pm@​3.22.0

3.21.0

... (truncated)

Commits
  • dec9735 chore(release): publish a new stable version (#7727)
  • 27ea931 fix: restrict peer dependency ranges to avoid npm resolution conflicts (#7593)
  • 626b052 chore(release): publish a new stable version (#7714)
  • 99e204c chore(release): publish a new stable version (#7698)
  • 8ee6d9a chore(release): publish a new stable version (#7687)
  • 7834835 chore(release): publish a new stable version (#7665)
  • 91c51be chore(release): publish a new stable version (#7658)
  • 9a6d574 chore(release): publish a new stable version (#7655)
  • 18f9afe chore(release): publish a new stable version (#7640)
  • 3d893bb chore(release): publish a new stable version (#7617)
  • Additional commits viewable in compare view

Updates @tiptap/extension-placeholder from 3.20.0 to 3.22.4

Release notes

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

v3.22.4

@​tiptap/extension-drag-handle

Patch Changes

  • 032f8f1: Fix drag handle ghost image alignment when dragging blocks inside offset layouts, and preserve correct ghost image behavior for RTL content.
  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
    • @​tiptap/core@​3.22.4
    • @​tiptap/extension-collaboration@​3.22.4
    • @​tiptap/extension-node-range@​3.22.4
    • @​tiptap/pm@​3.22.4

@​tiptap/core

Patch Changes

  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • 032f8f1: Fix text selection collapsing after toggling off a list with AllSelection
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
    • @​tiptap/pm@​3.22.4

@​tiptap/extension-audio

Patch Changes

  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
    • @​tiptap/core@​3.22.4

@​tiptap/extension-blockquote

Patch Changes

  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]
    • @​tiptap/core@​3.22.4

@​tiptap/extension-bold

Patch Changes

  • 032f8f1: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • Updated dependencies [032f8f1]
  • Updated dependencies [032f8f1]

... (truncated)

Changelog

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

3.22.4

Patch Changes

  • 27ea931: Fix dependencies installation after packages updates producing peer dependency resolution conflicts
  • Updated dependencies [27ea931]
    • @​tiptap/extensions@​3.22.4

3.22.3

Patch Changes

  • @​tiptap/extensions@​3.22.3

3.22.2

Patch Changes

  • @​tiptap/extensions@​3.22.2

3.22.1

Patch Changes

  • @​tiptap/extensions@​3.22.1

3.22.0

Patch Changes

  • @​tiptap/extensions@​3.22.0

3.21.0

Patch Changes

  • @​tiptap/extensions@​3.21.0

3.20.6

Patch Changes

  • @​tiptap/extensions@​3.20.6

3.20.5

Patch Changes

  • Updated dependencies [0c2bbfe]
    • @​tiptap/extensions@​3.20.5

... (truncated)

Commits
  • dec9735 chore(release): publish a new stable version (#7727)
  • 27ea931 fix: restrict peer dependency ranges to avoid npm resolution conflicts (#7593)
  • <...

    Description has been truncated

…ates

Bumps the production-dependencies group with 28 updates in the /frontend directory:

| Package | From | To |
| --- | --- | --- |
| [@floating-ui/dom](https://github.com/floating-ui/floating-ui/tree/HEAD/packages/dom) | `1.7.5` | `1.7.6` |
| [@hocuspocus/provider](https://github.com/ueberdosis/hocuspocus) | `3.4.4` | `4.0.0` |
| [@tiptap/core](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/core) | `3.20.0` | `3.22.4` |
| [@tiptap/extension-collaboration](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-collaboration) | `3.20.0` | `3.22.4` |
| [@tiptap/extension-collaboration-caret](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-collaboration-caret) | `3.20.0` | `3.22.4` |
| [@tiptap/extension-color](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-color) | `3.20.0` | `3.22.4` |
| [@tiptap/extension-image](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-image) | `3.20.0` | `3.22.4` |
| [@tiptap/extension-link](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-link) | `3.20.0` | `3.22.4` |
| [@tiptap/extension-placeholder](https://github.com/ueberdosis/tiptap/tree/HEAD/packages-deprecated/extension-placeholder) | `3.20.0` | `3.22.4` |
| [@tiptap/extension-table](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-table) | `3.20.0` | `3.22.4` |
| [@tiptap/extension-table-cell](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-table-cell) | `3.20.0` | `3.22.4` |
| [@tiptap/extension-table-header](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-table-header) | `3.20.0` | `3.22.4` |
| [@tiptap/extension-table-row](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-table-row) | `3.20.0` | `3.22.4` |
| [@tiptap/extension-text-style](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-text-style) | `3.20.0` | `3.22.4` |
| [@tiptap/extension-underline](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-underline) | `3.20.0` | `3.22.4` |
| [@tiptap/pm](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/pm) | `3.20.0` | `3.22.4` |
| [@tiptap/react](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/react) | `3.20.0` | `3.22.4` |
| [@tiptap/starter-kit](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/starter-kit) | `3.20.0` | `3.22.4` |
| [i18next](https://github.com/i18next/i18next) | `25.8.13` | `26.0.8` |
| [jspdf](https://github.com/parallax/jsPDF) | `4.2.0` | `4.2.1` |
| [postcss](https://github.com/postcss/postcss) | `8.5.6` | `8.5.12` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.4` | `19.2.5` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.4` | `19.2.5` |
| [react-i18next](https://github.com/i18next/react-i18next) | `16.5.4` | `17.0.4` |
| [react-router](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router) | `7.13.1` | `7.14.2` |
| [uuid](https://github.com/uuidjs/uuid) | `13.0.0` | `14.0.0` |
| [yjs](https://github.com/yjs/yjs) | `13.6.29` | `13.6.30` |
| [@rollup/rollup-linux-x64-musl](https://github.com/rollup/rollup) | `4.59.0` | `4.60.2` |



Updates `@floating-ui/dom` from 1.7.5 to 1.7.6
- [Release notes](https://github.com/floating-ui/floating-ui/releases)
- [Changelog](https://github.com/floating-ui/floating-ui/blob/master/packages/dom/CHANGELOG.md)
- [Commits](https://github.com/floating-ui/floating-ui/commits/@floating-ui/dom@1.7.6/packages/dom)

Updates `@hocuspocus/provider` from 3.4.4 to 4.0.0
- [Release notes](https://github.com/ueberdosis/hocuspocus/releases)
- [Changelog](https://github.com/ueberdosis/hocuspocus/blob/main/CHANGELOG.md)
- [Commits](ueberdosis/hocuspocus@v3.4.4...v4.0.0)

Updates `@tiptap/core` from 3.20.0 to 3.22.4
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/main/packages/core/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.22.4/packages/core)

Updates `@tiptap/extension-collaboration` from 3.20.0 to 3.22.4
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/main/packages/extension-collaboration/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.22.4/packages/extension-collaboration)

Updates `@tiptap/extension-collaboration-caret` from 3.20.0 to 3.22.4
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/main/packages/extension-collaboration-caret/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.22.4/packages/extension-collaboration-caret)

Updates `@tiptap/extension-color` from 3.20.0 to 3.22.4
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/main/packages/extension-color/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.22.4/packages/extension-color)

Updates `@tiptap/extension-image` from 3.20.0 to 3.22.4
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/main/packages/extension-image/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.22.4/packages/extension-image)

Updates `@tiptap/extension-link` from 3.20.0 to 3.22.4
- [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.22.4/packages/extension-link)

Updates `@tiptap/extension-placeholder` from 3.20.0 to 3.22.4
- [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.22.4/packages-deprecated/extension-placeholder)

Updates `@tiptap/extension-table` from 3.20.0 to 3.22.4
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/main/packages/extension-table/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.22.4/packages/extension-table)

Updates `@tiptap/extension-table-cell` from 3.20.0 to 3.22.4
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.22.4/packages/extension-table-cell)

Updates `@tiptap/extension-table-header` from 3.20.0 to 3.22.4
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.22.4/packages/extension-table-header)

Updates `@tiptap/extension-table-row` from 3.20.0 to 3.22.4
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.22.4/packages/extension-table-row)

Updates `@tiptap/extension-text-style` from 3.20.0 to 3.22.4
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/main/packages/extension-text-style/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.22.4/packages/extension-text-style)

Updates `@tiptap/extension-underline` from 3.20.0 to 3.22.4
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/main/packages/extension-underline/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.22.4/packages/extension-underline)

Updates `@tiptap/pm` from 3.20.0 to 3.22.4
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/main/packages/pm/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.22.4/packages/pm)

Updates `@tiptap/react` from 3.20.0 to 3.22.4
- [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.22.4/packages/react)

Updates `@tiptap/starter-kit` from 3.20.0 to 3.22.4
- [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.22.4/packages/starter-kit)

Updates `i18next` from 25.8.13 to 26.0.8
- [Release notes](https://github.com/i18next/i18next/releases)
- [Changelog](https://github.com/i18next/i18next/blob/master/CHANGELOG.md)
- [Commits](i18next/i18next@v25.8.13...v26.0.8)

Updates `jspdf` from 4.2.0 to 4.2.1
- [Release notes](https://github.com/parallax/jsPDF/releases)
- [Changelog](https://github.com/parallax/jsPDF/blob/master/RELEASE.md)
- [Commits](parallax/jsPDF@v4.2.0...v4.2.1)

Updates `postcss` from 8.5.6 to 8.5.12
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.5.6...8.5.12)

Updates `react` from 19.2.4 to 19.2.5
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.5/packages/react)

Updates `react-dom` from 19.2.4 to 19.2.5
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.5/packages/react-dom)

Updates `react-i18next` from 16.5.4 to 17.0.4
- [Changelog](https://github.com/i18next/react-i18next/blob/master/CHANGELOG.md)
- [Commits](i18next/react-i18next@v16.5.4...v17.0.4)

Updates `react-router` from 7.13.1 to 7.14.2
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router@7.14.2/packages/react-router)

Updates `uuid` from 13.0.0 to 14.0.0
- [Release notes](https://github.com/uuidjs/uuid/releases)
- [Changelog](https://github.com/uuidjs/uuid/blob/main/CHANGELOG.md)
- [Commits](uuidjs/uuid@v13.0.0...v14.0.0)

Updates `yjs` from 13.6.29 to 13.6.30
- [Release notes](https://github.com/yjs/yjs/releases)
- [Commits](yjs/yjs@v13.6.29...v13.6.30)

Updates `@rollup/rollup-linux-x64-musl` from 4.59.0 to 4.60.2
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.59.0...v4.60.2)

---
updated-dependencies:
- dependency-name: "@floating-ui/dom"
  dependency-version: 1.7.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@hocuspocus/provider"
  dependency-version: 4.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@tiptap/core"
  dependency-version: 3.22.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tiptap/extension-collaboration"
  dependency-version: 3.22.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tiptap/extension-collaboration-caret"
  dependency-version: 3.22.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tiptap/extension-color"
  dependency-version: 3.22.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tiptap/extension-image"
  dependency-version: 3.22.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tiptap/extension-link"
  dependency-version: 3.22.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tiptap/extension-placeholder"
  dependency-version: 3.22.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tiptap/extension-table"
  dependency-version: 3.22.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tiptap/extension-table-cell"
  dependency-version: 3.22.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tiptap/extension-table-header"
  dependency-version: 3.22.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tiptap/extension-table-row"
  dependency-version: 3.22.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tiptap/extension-text-style"
  dependency-version: 3.22.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tiptap/extension-underline"
  dependency-version: 3.22.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tiptap/pm"
  dependency-version: 3.22.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tiptap/react"
  dependency-version: 3.22.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tiptap/starter-kit"
  dependency-version: 3.22.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: i18next
  dependency-version: 26.0.8
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: jspdf
  dependency-version: 4.2.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: postcss
  dependency-version: 8.5.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: react
  dependency-version: 19.2.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: react-dom
  dependency-version: 19.2.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: react-i18next
  dependency-version: 17.0.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: react-router
  dependency-version: 7.14.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: uuid
  dependency-version: 14.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: yjs
  dependency-version: 13.6.30
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@rollup/rollup-linux-x64-musl"
  dependency-version: 4.60.2
  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 added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Apr 27, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github May 25, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this May 25, 2026
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/frontend/production-dependencies-4e361c60f8 branch May 25, 2026 02: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