Skip to content

chore(deps): bump the minor-and-patch group in /services/agora with 19 updates#970

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/services/agora/minor-and-patch-071b39ef52
Open

chore(deps): bump the minor-and-patch group in /services/agora with 19 updates#970
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/services/agora/minor-and-patch-071b39ef52

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 13, 2026

Bumps the minor-and-patch group in /services/agora with 19 updates:

Package From To
@sentry/vue 10.47.0 10.48.0
@tanstack/vue-query 5.96.2 5.99.0
@tiptap/core 3.22.2 3.22.3
@tiptap/extension-bubble-menu 3.22.2 3.22.3
@tiptap/extension-placeholder 3.22.2 3.22.3
@tiptap/extensions 3.22.2 3.22.3
@tiptap/pm 3.22.2 3.22.3
@tiptap/starter-kit 3.22.2 3.22.3
@tiptap/vue-3 3.22.2 3.22.3
cborg 5.0.1 5.1.0
primevue 4.5.4 4.5.5
vue-i18n 11.3.1 11.3.2
@sentry/vite-plugin 5.1.1 5.2.0
@types/node 25.5.2 25.6.0
globals 17.4.0 17.5.0
jsdom 29.0.1 29.0.2
prettier 3.8.1 3.8.2
vite 8.0.5 8.0.8
vitest 4.1.2 4.1.4

Updates @sentry/vue from 10.47.0 to 10.48.0

Release notes

Sourced from @​sentry/vue's releases.

10.48.0

Important Changes

  • feat(aws-serverless): Ship Lambda extension in npm package for container image Lambdas (#20133)

    The Sentry Lambda extension is now included in the npm package, enabling container image-based Lambda functions to use it. Copy the extension files into your Docker image and set the tunnel option:

    RUN mkdir -p /opt/sentry-extension
    COPY node_modules/@sentry/aws-serverless/build/lambda-extension/sentry-extension /opt/extensions/sentry-extension
    COPY node_modules/@sentry/aws-serverless/build/lambda-extension/index.mjs /opt/sentry-extension/index.mjs
    RUN chmod +x /opt/extensions/sentry-extension /opt/sentry-extension/index.mjs
    Sentry.init({
      dsn: '__DSN__',
      tunnel: 'http://localhost:9000/envelope',
    });

    This works with any Sentry SDK (@sentry/aws-serverless, @sentry/sveltekit, @sentry/node, etc.).

  • feat(cloudflare): Support basic WorkerEntrypoint (#19884)

    withSentry now supports instrumenting classes extending Cloudflare's WorkerEntrypoint. This instruments fetch, scheduled, queue, and tail handlers.

    import * as Sentry from '@sentry/cloudflare';
    import { WorkerEntrypoint } from 'cloudflare:workers';
    class MyWorker extends WorkerEntrypoint {
    async fetch(request: Request): Promise<Response> {
    return new Response('Hello World!');
    }
    }
    export default Sentry.withSentry(env => ({ dsn: env.SENTRY_DSN, tracesSampleRate: 1.0 }), MyWorker);

  • ref(core): Unify .do* span ops to gen_ai.generate_content (#20074)

    All Vercel AI do* spans (ai.generateText.doGenerate, ai.streamText.doStream, ai.generateObject.doGenerate, ai.streamObject.doStream) now use a single unified span op gen_ai.generate_content instead of separate ops like gen_ai.generate_text, gen_ai.stream_text, gen_ai.generate_object, and gen_ai.stream_object.

  • ref(core): Remove provider-specific AI span attributes in favor of gen_ai attributes in sentry conventions (#20011)

    The following provider-specific span attributes have been removed from the OpenAI and Anthropic AI integrations. Use the standardized gen_ai.* equivalents instead:

    Removed attribute Replacement

... (truncated)

Changelog

Sourced from @​sentry/vue's changelog.

10.48.0

Important Changes

  • feat(aws-serverless): Ship Lambda extension in npm package for container image Lambdas (#20133)

    The Sentry Lambda extension is now included in the npm package, enabling container image-based Lambda functions to use it. Copy the extension files into your Docker image and set the tunnel option:

    RUN mkdir -p /opt/sentry-extension
    COPY node_modules/@sentry/aws-serverless/build/lambda-extension/sentry-extension /opt/extensions/sentry-extension
    COPY node_modules/@sentry/aws-serverless/build/lambda-extension/index.mjs /opt/sentry-extension/index.mjs
    RUN chmod +x /opt/extensions/sentry-extension /opt/sentry-extension/index.mjs
    Sentry.init({
      dsn: '__DSN__',
      tunnel: 'http://localhost:9000/envelope',
    });

    This works with any Sentry SDK (@sentry/aws-serverless, @sentry/sveltekit, @sentry/node, etc.).

  • feat(cloudflare): Support basic WorkerEntrypoint (#19884)

    withSentry now supports instrumenting classes extending Cloudflare's WorkerEntrypoint. This instruments fetch, scheduled, queue, and tail handlers.

    import * as Sentry from '@sentry/cloudflare';
    import { WorkerEntrypoint } from 'cloudflare:workers';
    class MyWorker extends WorkerEntrypoint {
    async fetch(request: Request): Promise<Response> {
    return new Response('Hello World!');
    }
    }
    export default Sentry.withSentry(env => ({ dsn: env.SENTRY_DSN, tracesSampleRate: 1.0 }), MyWorker);

  • ref(core): Unify .do* span ops to gen_ai.generate_content (#20074)

    All Vercel AI do* spans (ai.generateText.doGenerate, ai.streamText.doStream, ai.generateObject.doGenerate, ai.streamObject.doStream) now use a single unified span op gen_ai.generate_content instead of separate ops like gen_ai.generate_text, gen_ai.stream_text, gen_ai.generate_object, and gen_ai.stream_object.

  • ref(core): Remove provider-specific AI span attributes in favor of gen_ai attributes in sentry conventions (#20011)

    The following provider-specific span attributes have been removed from the OpenAI and Anthropic AI integrations. Use the standardized gen_ai.* equivalents instead:

    | Removed attribute | Replacement |

... (truncated)

Commits
  • a67df4d release: 10.48.0
  • e0732ff Merge pull request #20172 from getsentry/prepare-release/10.48.0
  • d1ee40f meta(changelog): Update changelog for 10.48.0
  • 2897297 feat(nuxt): Exclude tracing meta tags on cached pages in Nuxt 5 (#20168)
  • 1cc3dd0 chore(deps-dev): Bump effect from 3.20.0 to 3.21.0 (#19999)
  • c273167 fix(core): Fix withStreamedSpan typing error add missing exports (#20124)
  • b6f7b86 feat(core): Apply ignoreSpans to streamed spans (#19934)
  • 7bd8449 test(node,node-core): Add span streaming integration tests (#19806)
  • 51fc6d1 feat(node-core): Add POtel server-side span streaming implementation (#19741)
  • 77357c7 fix(core): Replace global interval with trace-specific interval based flushin...
  • Additional commits viewable in compare view

Updates @tanstack/vue-query from 5.96.2 to 5.99.0

Release notes

Sourced from @​tanstack/vue-query's releases.

@​tanstack/vue-query@​5.99.0

Minor Changes

  • feat(vue-query): add 'mutationOptions' (#10381)

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.99.0

@​tanstack/vue-query@​5.98.0

Minor Changes

  • Add usePrefetchQuery and usePrefetchInfiniteQuery to vue-query. (#10372)

Patch Changes

  • fix(vue-query): fix type of queryOptions to allow plain properies or getters (#10452)

  • Updated dependencies []:

    • @​tanstack/query-core@​5.98.0

@​tanstack/vue-query@​5.97.0

Patch Changes

  • Updated dependencies [2bfb12c]:
    • @​tanstack/query-core@​5.97.0
Changelog

Sourced from @​tanstack/vue-query's changelog.

5.99.0

Minor Changes

  • feat(vue-query): add 'mutationOptions' (#10381)

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.99.0

5.98.0

Minor Changes

  • Add usePrefetchQuery and usePrefetchInfiniteQuery to vue-query. (#10372)

Patch Changes

  • fix(vue-query): fix type of queryOptions to allow plain properies or getters (#10452)

  • Updated dependencies []:

    • @​tanstack/query-core@​5.98.0

5.97.0

Patch Changes

  • Updated dependencies [2bfb12c]:
    • @​tanstack/query-core@​5.97.0
Commits
  • adc2543 ci: Version Packages (#10454)
  • f279ad2 feat(vue-query): add 'mutationOptions' (#10381)
  • 6040278 ci: Version Packages (#10451)
  • 29e80d9 fix(vue-query): fix type of queryOptions to allow plain properies or getters ...
  • b97513f feat(vue-query): add usePrefetchQuery and usePrefetchInfiniteQuery (#10372)
  • 125067c ci: Version Packages (#10436)
  • dbe3f95 test(vue-query): replace hardcoded query keys with 'queryKey()' utility (#10417)
  • 1a6fdd0 test({solid,vue}-query/infiniteQueryOptions): add runtime test for 'infiniteQ...
  • e919c54 test(*): replace deprecated 'toThrowError' with 'toThrow' (#10405)
  • fcaa1d2 test(vue-query/infiniteQueryOptions): replace query-core 'QueryClient' import...
  • See full diff in compare view

Updates @tiptap/core from 3.22.2 to 3.22.3

Release notes

Sourced from @​tiptap/core's releases.

v3.22.3

@​tiptap/core

Patch Changes

  • ac994c5: 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/extension-node-range

Patch Changes

  • ac994c5: Add an option to control whether node ranges extend when a selection only touches a node boundary.

@​tiptap/html

Patch Changes

  • ac994c5: Remove unnecessary xmlns="http://www.w3.org/1999/xhtml" attribute from generateHTML output by using innerHTML instead of XMLSerializer for HTML serialization.

@​tiptap/extension-drag-handle

Patch Changes

  • ac994c5: Fix drag selections so crossing a node boundary does not incorrectly include the next node.

@​tiptap/starter-kit

Patch Changes

  • Updated dependencies [ac994c5]
    • @​tiptap/core@​3.22.3
    • @​tiptap/extension-dropcursor@​3.22.3
    • @​tiptap/extension-gapcursor@​3.22.3
    • @​tiptap/extension-list-item@​3.22.3
    • @​tiptap/extension-list-keymap@​3.22.3
    • @​tiptap/extension-blockquote@​3.22.3
    • @​tiptap/extension-bold@​3.22.3
    • @​tiptap/extension-bullet-list@​3.22.3
    • @​tiptap/extension-code@​3.22.3
    • @​tiptap/extension-code-block@​3.22.3
    • @​tiptap/extension-document@​3.22.3
    • @​tiptap/extension-hard-break@​3.22.3
    • @​tiptap/extension-heading@​3.22.3
    • @​tiptap/extension-horizontal-rule@​3.22.3
    • @​tiptap/extension-italic@​3.22.3
    • @​tiptap/extension-link@​3.22.3
    • @​tiptap/extension-list@​3.22.3
    • @​tiptap/extension-ordered-list@​3.22.3
    • @​tiptap/extension-paragraph@​3.22.3
    • @​tiptap/extension-strike@​3.22.3

... (truncated)

Changelog

Sourced from @​tiptap/core's changelog.

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
Commits

Updates @tiptap/extension-bubble-menu from 3.22.2 to 3.22.3

Release notes

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

v3.22.3

@​tiptap/core

Patch Changes

  • ac994c5: 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/extension-node-range

Patch Changes

  • ac994c5: Add an option to control whether node ranges extend when a selection only touches a node boundary.

@​tiptap/html

Patch Changes

  • ac994c5: Remove unnecessary xmlns="http://www.w3.org/1999/xhtml" attribute from generateHTML output by using innerHTML instead of XMLSerializer for HTML serialization.

@​tiptap/extension-drag-handle

Patch Changes

  • ac994c5: Fix drag selections so crossing a node boundary does not incorrectly include the next node.

@​tiptap/starter-kit

Patch Changes

  • Updated dependencies [ac994c5]
    • @​tiptap/core@​3.22.3
    • @​tiptap/extension-dropcursor@​3.22.3
    • @​tiptap/extension-gapcursor@​3.22.3
    • @​tiptap/extension-list-item@​3.22.3
    • @​tiptap/extension-list-keymap@​3.22.3
    • @​tiptap/extension-blockquote@​3.22.3
    • @​tiptap/extension-bold@​3.22.3
    • @​tiptap/extension-bullet-list@​3.22.3
    • @​tiptap/extension-code@​3.22.3
    • @​tiptap/extension-code-block@​3.22.3
    • @​tiptap/extension-document@​3.22.3
    • @​tiptap/extension-hard-break@​3.22.3
    • @​tiptap/extension-heading@​3.22.3
    • @​tiptap/extension-horizontal-rule@​3.22.3
    • @​tiptap/extension-italic@​3.22.3
    • @​tiptap/extension-link@​3.22.3
    • @​tiptap/extension-list@​3.22.3
    • @​tiptap/extension-ordered-list@​3.22.3
    • @​tiptap/extension-paragraph@​3.22.3
    • @​tiptap/extension-strike@​3.22.3

... (truncated)

Changelog

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

3.22.3

Patch Changes

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

Updates @tiptap/extension-placeholder from 3.22.2 to 3.22.3

Release notes

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

v3.22.3

@​tiptap/core

Patch Changes

  • ac994c5: 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/extension-node-range

Patch Changes

  • ac994c5: Add an option to control whether node ranges extend when a selection only touches a node boundary.

@​tiptap/html

Patch Changes

  • ac994c5: Remove unnecessary xmlns="http://www.w3.org/1999/xhtml" attribute from generateHTML output by using innerHTML instead of XMLSerializer for HTML serialization.

@​tiptap/extension-drag-handle

Patch Changes

  • ac994c5: Fix drag selections so crossing a node boundary does not incorrectly include the next node.

@​tiptap/starter-kit

Patch Changes

  • Updated dependencies [ac994c5]
    • @​tiptap/core@​3.22.3
    • @​tiptap/extension-dropcursor@​3.22.3
    • @​tiptap/extension-gapcursor@​3.22.3
    • @​tiptap/extension-list-item@​3.22.3
    • @​tiptap/extension-list-keymap@​3.22.3
    • @​tiptap/extension-blockquote@​3.22.3
    • @​tiptap/extension-bold@​3.22.3
    • @​tiptap/extension-bullet-list@​3.22.3
    • @​tiptap/extension-code@​3.22.3
    • @​tiptap/extension-code-block@​3.22.3
    • @​tiptap/extension-document@​3.22.3
    • @​tiptap/extension-hard-break@​3.22.3
    • @​tiptap/extension-heading@​3.22.3
    • @​tiptap/extension-horizontal-rule@​3.22.3
    • @​tiptap/extension-italic@​3.22.3
    • @​tiptap/extension-link@​3.22.3
    • @​tiptap/extension-list@​3.22.3
    • @​tiptap/extension-ordered-list@​3.22.3
    • @​tiptap/extension-paragraph@​3.22.3
    • @​tiptap/extension-strike@​3.22.3

... (truncated)

Changelog

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

3.22.3

Patch Changes

  • @​tiptap/extensions@​3.22.3
Commits

Updates @tiptap/extensions from 3.22.2 to 3.22.3

Release notes

Sourced from @​tiptap/extensions's releases.

v3.22.3

@​tiptap/core

Patch Changes

  • ac994c5: 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/extension-node-range

Patch Changes

  • ac994c5: Add an option to control whether node ranges extend when a selection only touches a node boundary.

@​tiptap/html

Patch Changes

  • ac994c5: Remove unnecessary xmlns="http://www.w3.org/1999/xhtml" attribute from generateHTML output by using innerHTML instead of XMLSerializer for HTML serialization.

@​tiptap/extension-drag-handle

Patch Changes

  • ac994c5: Fix drag selections so crossing a node boundary does not incorrectly include the next node.

@​tiptap/starter-kit

Patch Changes

  • Updated dependencies [ac994c5]
    • @​tiptap/core@​3.22.3
    • @​tiptap/extension-dropcursor@​3.22.3
    • @​tiptap/extension-gapcursor@​3.22.3
    • @​tiptap/extension-list-item@​3.22.3
    • @​tiptap/extension-list-keymap@​3.22.3
    • @​tiptap/extension-blockquote@​3.22.3
    • @​tiptap/extension-bold@​3.22.3
    • @​tiptap/extension-bullet-list@​3.22.3
    • @​tiptap/extension-code@​3.22.3
    • @​tiptap/extension-code-block@​3.22.3
    • @​tiptap/extension-document@​3.22.3
    • @​tiptap/extension-hard-break@​3.22.3
    • @​tiptap/extension-heading@​3.22.3
    • @​tiptap/extension-horizontal-rule@​3.22.3
    • @​tiptap/extension-italic@​3.22.3
    • @​tiptap/extension-link@​3.22.3
    • @​tiptap/extension-list@​3.22.3
    • @​tiptap/extension-ordered-list@​3.22.3
    • @​tiptap/extension-paragraph@​3.22.3
    • @​tiptap/extension-strike@​3.22.3

... (truncated)

Commits

Updates @tiptap/pm from 3.22.2 to 3.22.3

Release notes

Sourced from @​tiptap/pm's releases.

v3.22.3

@​tiptap/core

Patch Changes

  • ac994c5: 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/extension-node-range

Patch Changes

  • ac994c5: Add an option to control whether node ranges extend when a selection only touches a node boundary.

@​tiptap/html

Patch Changes

  • ac994c5: Remove unnecessary xmlns="http://www.w3.org/1999/xhtml" attribute from generateHTML output by using innerHTML instead of XMLSerializer for HTML serialization.

@​tiptap/extension-drag-handle

Patch Changes

  • ac994c5: Fix drag selections so crossing a node boundary does not incorrectly include the next node.

@​tiptap/starter-kit

Patch Changes

  • Updated dependencies [ac994c5]
    • @​tiptap/core@​3.22.3
    • @​tiptap/extension-dropcursor@​3.22.3
    • @​tiptap/extension-gapcursor@​3.22.3
    • @​tiptap/extension-list-item@​3.22.3
    • @​tiptap/extension-list-keymap@​3.22.3
    • @​tiptap/extension-blockquote@​3.22.3
    • @​tiptap/extension-bold@​3.22.3
    • @​tiptap/extension-bullet-list@​3.22.3
    • @​tiptap/extension-code@​3.22.3
    • @​tiptap/extension-code-block@​3.22.3
    • @​tiptap/extension-document@​3.22.3
    • @​tiptap/extension-hard-break@​3.22.3
    • @​tiptap/extension-heading@​3.22.3
    • @​tiptap/extension-horizontal-rule@​3.22.3
    • @​tiptap/extension-italic@​3.22.3
    • @​tiptap/extension-link@​3.22.3
    • @​tiptap/extension-list@​3.22.3
    • @​tiptap/extension-ordered-list@​3.22.3
    • @​tiptap/extension-paragraph@​3.22.3
    • @​tiptap/extension-strike@​3.22.3

... (truncated)

Changelog

Sourced from @​tiptap/pm's changelog.

3.22.3

Commits

Updates @tiptap/starter-kit from 3.22.2 to 3.22.3

Release notes

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

v3.22.3

@​tiptap/core

Patch Changes

  • ac994c5: 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/extension-node-range

Patch Changes

  • ac994c5: Add an option to control whether node ranges extend when a selection only touches a node boundary.

@​tiptap/html

Patch Changes

  • ac994c5: Remove unnecessary xmlns="http://www.w3.org/1999/xhtml" attribute from generateHTML output by using innerHTML instead of XMLSerializer for HTML serialization.

@​tiptap/extension-drag-handle

Patch Changes

  • ac994c5: Fix drag selections so crossing a node boundary does not incorrectly include the next node.

@​tiptap/starter-kit

Patch Changes

  • Updated dependencies [ac994c5]
    • @​tiptap/core@​3.22.3
    • @​tiptap/extension-dropcursor@​3.22.3
    • @​tiptap/extension-gapcursor@​3.22.3
    • @​tiptap/extension-list-item@​3.22.3
    • @​tiptap/extension-list-keymap@​3.22.3
    • @​tiptap/extension-blockquote@​3.22.3
    • @​tiptap/extension-bold@​3.22.3
    • @​tiptap/extension-bullet-list@​3.22.3
    • @​tiptap/extension-code@​3.22.3
    • @​tiptap/extension-code-block@​3.22.3
    • @​tiptap/extension-document@​3.22.3
    • @​tiptap/extension-hard-break@​3.22.3
    • @​tiptap/extension-heading@​3.22.3
    • @​tiptap/extension-horizontal-rule@​3.22.3
    • @​tiptap/extension-italic@​3.22.3
    • @​tiptap/extension-link@​3.22.3
    • @​tiptap/extension-list@​3.22.3
    • @​tiptap/extension-ordered-list@​3.22.3
    • @​tiptap/extension-paragraph@​3.22.3
    • @​tiptap/extension-strike@​3.22.3

... (truncated)

Changelog

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

3.22.3

Patch Changes

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

Updates @tiptap/vue-3 from 3.22.2 to 3.22.3

Release notes

Sourced from @​tiptap/vue-3's releases.

v3.22.3

@​tiptap/core

Patch Changes

  • ac994c5: 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/extension-node-range

Patch Changes

  • ac994c5: Add an option to control whether node ranges extend when a selection only touches a node boundary.

@​tiptap/html

Patch Changes

  • ac994c5: Remove unnecessary xmlns="http://www.w3.org/1999/xhtml" attribute from generateHTML output by using innerHTML instead of XMLSerializer for HTML serialization.

@​tiptap/extension-drag-handle

Patch Changes

  • ac994c5: Fix drag selections so crossing a node boundary does not incorrectly include the next node.

@​tiptap/starter-kit

Patch Changes

  • Updated dependencies [ac994c5]
    • @​tiptap/core@​3.22.3
    • @​tiptap/extension-dropcursor@​3.22.3
    • @​tiptap/extension-gapcursor@​3.22.3
    • @​tiptap/extension-list-item@​3.22.3
    • @​tiptap/extension-list-keymap@​3.22.3
    • @​tiptap/extension-blockquote@​3.22.3
    • @​tiptap/extension-bold@​3.22.3
    • @​tiptap/extension-bullet-list@​3.22.3
    • @​tiptap/extension-code@​3.22.3
    • @​tiptap/extension-code-block@​3.22.3
    • @​tiptap/extension-document@​3.22.3
    • @​tiptap/extension-hard-break@​3.22.3
    • @​tiptap/extension-heading@​3.22.3
    • @​tiptap/extension-horizontal-rule@​3.22.3
    • @​tiptap/extension-italic@​3.22.3
    • @​tiptap/extension-link@​3.22.3
    • @​tiptap/extension-list@​3.22.3
    • @​tiptap/extension-ordered-list@​3.22.3
    • @​tiptap/extension-paragraph@​3.22.3
    • @​tiptap/extension-strike@​3.22.3

... (truncated)

Changelog

Sourced from @​tiptap/vue-3's changelog.

3.22.3

Patch Changes

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

Updates cborg from 5.0.1 to 5.1.0

Release notes

Sourced from cborg's releases.

v5.1.0

5.1.0 (2026-04-07)

Features

  • add Tagged class for one-off tag emission and round-trip preservation (#174) (e2e7c20)
Changelog

Sourced from cborg's changelog.

5.1.0 (2026-04-07)

Features

  • add Tagged class for one-off tag emission and round-trip preservation (#174) (e2e7c20)
Commits
  • d61997c chore(release): 5.1.0 [skip ci]
  • e2e7c20 feat: add Tagged class for one-off tag emission and round-trip preservation (...
  • See full diff in compare view

Updates primevue from 4.5.4 to 4.5.5

Release notes

Sourced from primevue's releases.

PrimeVue 4.5.5

What's Changed

New Contributors

Full Changelog: primefaces/primevue@4.5.4...4.5.5

Changelog

Sourced from primevue's changelog.

4.5.5 (2026-04-08)

Full Changelog

Implemented New Features and Enhancements:

  • Timeline: use ordered list for Timeline component to improve accessibility #8155

Fixed bugs:

  • Tree: add filteredNodes to Tree filter event and forward filter event in TreeSelect #8525
  • PrimeIcons: Missing EXPAND key in PrimeIcons #8524
  • broken zIndex with global primevue zIndex undefined #8523
  • Galleria ZIndex Clear throws error when container is unmounted in fullscreen #8519
  • Splitter does not re-initialize when SplitterPanel :size prop changes reactively #8517
  • AutoComplete enter key behavior #8516
  • TieredMenu: popup menu does not reposition when triggered from different elements #8509
  • Select: option selection can run when overlay is already hidden #8508
  • Date column filters cannot take in strings to compare #8506
  • DataTable cannot handle sparse arrays #8503
  • Tooltip elements are not being removed from the DOM when hideDelay is active #8480
  • Splitter does not initialize panels added dynamically via v-if after mount #8477
  • Tab: TabPanel slot types missing scope when asChild is true #8470
  • DatePicker Range throws TypeError on days before 12/1/1969 #8469
  • DatePicker manual input fails when using custom AM/PM locale labels #8462
  • DataTable Column Filter Overlay requires double click to close after internal interaction #8460
  • Autocomplete's clear event not emitted when clicking the clear X button #8459
  • MultiSelect with optionValue object and display="chip" removes 2 chips instead of 1 #8456
  • DatePicker: externally updated modelValue can open with incorrect header year #8455
  • InputNumber: Cursor freezes after first digit when using currency="PYG" and locale="es-PY" #8453
  • DataTable/VirtualScroller: Table errors when virtual loading true and no loading slot provided #8451
  • DatePicker throws error when v-model is initialized with string value #8450
  • DatePicker: year-change event emits inconsistent month values depending on navigation method #8436
  • Select options still selectable after dropdown is hidden #8431
  • Select - Filter - Only able to type one character when Input is not focused #8427
  • FileUpload: TypeError on drag events when component unmounts #8424
  • FormField.d.ts exports duplicate FormEmits type colliding with Form #8420
  • TreeTable: missing types #8419
  • ScrollPanel: horizontal scroll bar goes outside the content div when scrollXRatio is too small #8415
  • Datepicker overlay loses focus capture when selecting different month or year #8402
  • InputOTP allows paste when readonly #8401
  • TieredMenu: hasSubmenu holds items (array) instead of boolean #8397
  • InputNumber allows paste input when disabled #8391
  • Splitter seperator role should be on gutter-handle not gutter #8381
  • Step and StepPanel not reactive after mount #8377
  • SpeedDial: MenuItem disabled not working at all #8375
  • TreeTable: TreeNode children are not sorted #8361
  • Tree: Expose dropPosition or relativePosition in node-drop event #8360
  • Tree Drag and Drop Does Not Prevent Dropping a Node Into Itself or Descendants #8353
  • Wrong step values in nested Stepper (Horizontal in Vertical) #8310

... (truncated)

Commits
  • 66dde67 chore: version 4.5.5 released
  • 625bab0 fix: nested splitter calc defects
  • 83c2750 Fixed #8265 - DataTable writes to localStorage on every reactive change in he...
  • 489913a Fixed #8278 - DataTable row expansion remains open on page change
  • cebb8ed Fixed #8280 - Select an option in MultiSelect/DatePicker within DataTable not...
  • e96df81 Fixed #8288 - AutoComplete doesnt accept mouse selections inside Datatables
  • f4a0100 Fixed #8523 - broken zIndex with global primevue zIndex undefined
  • f8511e0 Fixed #8519 - Galleria ZIndex Clear throws error when container is unmounted ...
  • 103fd6b Fixed #8178 - Password always has aria-haspopup set to true
  • 8ef1a67 Fixed #8218 - DataTable: fixing tabindex initialization with initial selectio...
  • Additional commits viewable in compare view

Updates vue-i18n from 11.3.1 to 11.3.2

Release notes

Sourced from vue-i18n's releases.

v11.3.2

What's Changed

🐛 Bug Fixes

⚡ Improvement Features

Full Changelog: intlify/vue-i18n@v11.3.1...v11.3.2

Commits

Updates @sentry/vite-plugin from 5.1.1 to 5.2.0

Release notes

Sourced from @​sentry/vite-plugin's releases.

5.2.0

New Features ✨

  • (co...

    Description has been truncated

Bumps the minor-and-patch group in /services/agora with 19 updates:

| Package | From | To |
| --- | --- | --- |
| [@sentry/vue](https://github.com/getsentry/sentry-javascript) | `10.47.0` | `10.48.0` |
| [@tanstack/vue-query](https://github.com/TanStack/query/tree/HEAD/packages/vue-query) | `5.96.2` | `5.99.0` |
| [@tiptap/core](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/core) | `3.22.2` | `3.22.3` |
| [@tiptap/extension-bubble-menu](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-bubble-menu) | `3.22.2` | `3.22.3` |
| [@tiptap/extension-placeholder](https://github.com/ueberdosis/tiptap/tree/HEAD/packages-deprecated/extension-placeholder) | `3.22.2` | `3.22.3` |
| [@tiptap/extensions](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension) | `3.22.2` | `3.22.3` |
| [@tiptap/pm](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/pm) | `3.22.2` | `3.22.3` |
| [@tiptap/starter-kit](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/starter-kit) | `3.22.2` | `3.22.3` |
| [@tiptap/vue-3](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/vue-3) | `3.22.2` | `3.22.3` |
| [cborg](https://github.com/rvagg/cborg) | `5.0.1` | `5.1.0` |
| [primevue](https://github.com/primefaces/primevue/tree/HEAD/packages/primevue) | `4.5.4` | `4.5.5` |
| [vue-i18n](https://github.com/intlify/vue-i18n/tree/HEAD/packages/vue-i18n) | `11.3.1` | `11.3.2` |
| [@sentry/vite-plugin](https://github.com/getsentry/sentry-javascript-bundler-plugins) | `5.1.1` | `5.2.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.5.2` | `25.6.0` |
| [globals](https://github.com/sindresorhus/globals) | `17.4.0` | `17.5.0` |
| [jsdom](https://github.com/jsdom/jsdom) | `29.0.1` | `29.0.2` |
| [prettier](https://github.com/prettier/prettier) | `3.8.1` | `3.8.2` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.0.5` | `8.0.8` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.1.2` | `4.1.4` |


Updates `@sentry/vue` from 10.47.0 to 10.48.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@10.47.0...10.48.0)

Updates `@tanstack/vue-query` from 5.96.2 to 5.99.0
- [Release notes](https://github.com/TanStack/query/releases)
- [Changelog](https://github.com/TanStack/query/blob/main/packages/vue-query/CHANGELOG.md)
- [Commits](https://github.com/TanStack/query/commits/@tanstack/vue-query@5.99.0/packages/vue-query)

Updates `@tiptap/core` from 3.22.2 to 3.22.3
- [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.3/packages/core)

Updates `@tiptap/extension-bubble-menu` from 3.22.2 to 3.22.3
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/main/packages/extension-bubble-menu/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.22.3/packages/extension-bubble-menu)

Updates `@tiptap/extension-placeholder` from 3.22.2 to 3.22.3
- [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.3/packages-deprecated/extension-placeholder)

Updates `@tiptap/extensions` from 3.22.2 to 3.22.3
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.22.3/packages/extension)

Updates `@tiptap/pm` from 3.22.2 to 3.22.3
- [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.3/packages/pm)

Updates `@tiptap/starter-kit` from 3.22.2 to 3.22.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.22.3/packages/starter-kit)

Updates `@tiptap/vue-3` from 3.22.2 to 3.22.3
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/main/packages/vue-3/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.22.3/packages/vue-3)

Updates `cborg` from 5.0.1 to 5.1.0
- [Release notes](https://github.com/rvagg/cborg/releases)
- [Changelog](https://github.com/rvagg/cborg/blob/master/CHANGELOG.md)
- [Commits](rvagg/cborg@v5.0.1...v5.1.0)

Updates `primevue` from 4.5.4 to 4.5.5
- [Release notes](https://github.com/primefaces/primevue/releases)
- [Changelog](https://github.com/primefaces/primevue/blob/master/CHANGELOG.md)
- [Commits](https://github.com/primefaces/primevue/commits/4.5.5/packages/primevue)

Updates `vue-i18n` from 11.3.1 to 11.3.2
- [Release notes](https://github.com/intlify/vue-i18n/releases)
- [Changelog](https://github.com/intlify/vue-i18n/blob/master/CHANGELOG.md)
- [Commits](https://github.com/intlify/vue-i18n/commits/v11.3.2/packages/vue-i18n)

Updates `@sentry/vite-plugin` from 5.1.1 to 5.2.0
- [Release notes](https://github.com/getsentry/sentry-javascript-bundler-plugins/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript-bundler-plugins/blob/main/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript-bundler-plugins@5.1.1...5.2.0)

Updates `@types/node` from 25.5.2 to 25.6.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `globals` from 17.4.0 to 17.5.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v17.4.0...v17.5.0)

Updates `jsdom` from 29.0.1 to 29.0.2
- [Release notes](https://github.com/jsdom/jsdom/releases)
- [Commits](jsdom/jsdom@v29.0.1...v29.0.2)

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

Updates `vite` from 8.0.5 to 8.0.8
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v8.0.8/packages/vite)

Updates `vitest` from 4.1.2 to 4.1.4
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.4/packages/vitest)

---
updated-dependencies:
- dependency-name: "@sentry/vue"
  dependency-version: 10.48.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@tanstack/vue-query"
  dependency-version: 5.99.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@tiptap/core"
  dependency-version: 3.22.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@tiptap/extension-bubble-menu"
  dependency-version: 3.22.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@tiptap/extension-placeholder"
  dependency-version: 3.22.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@tiptap/extensions"
  dependency-version: 3.22.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@tiptap/pm"
  dependency-version: 3.22.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@tiptap/starter-kit"
  dependency-version: 3.22.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@tiptap/vue-3"
  dependency-version: 3.22.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: cborg
  dependency-version: 5.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: primevue
  dependency-version: 4.5.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: vue-i18n
  dependency-version: 11.3.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@sentry/vite-plugin"
  dependency-version: 5.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@types/node"
  dependency-version: 25.6.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: globals
  dependency-version: 17.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: jsdom
  dependency-version: 29.0.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: prettier
  dependency-version: 3.8.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: vite
  dependency-version: 8.0.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: vitest
  dependency-version: 4.1.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: 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 Apr 13, 2026
@netlify
Copy link
Copy Markdown

netlify bot commented Apr 13, 2026

Deploy Preview for agoracitizen canceled.

Name Link
🔨 Latest commit bc31098
🔍 Latest deploy log https://app.netlify.com/projects/agoracitizen/deploys/69dc78e6abb0de0008b357bc

@CLAassistant
Copy link
Copy Markdown

CLA assistant check
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.
You have signed the CLA already but the status is still pending? Let us recheck it.

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