Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 18, 2025

Bumps the bun group with 1 update in the /edge-apps/asset-metadata directory: vue.
Bumps the bun group with 1 update in the /edge-apps/bamboo-hr-app directory: vue.
Bumps the bun group with 2 updates in the /edge-apps/blueprint directory: vue and @sentry/vue.
Bumps the bun group with 3 updates in the /edge-apps/calendar directory: vue, @sentry/vue and @sentry/browser.
Bumps the bun group with 1 update in the /edge-apps/clock directory: vue.
Bumps the bun group with 1 update in the /edge-apps/edge-apps-library directory: @types/bun.
Bumps the bun group with 3 updates in the /edge-apps/google-calendar directory: vue, @sentry/vue and @sentry/browser.
Bumps the bun group with 1 update in the /edge-apps/menu-board directory: @types/bun.
Bumps the bun group with 3 updates in the /edge-apps/outlook-calendar directory: vue, @sentry/vue and @sentry/browser.
Bumps the bun group with 1 update in the /edge-apps/qr-code directory: @types/bun.
Bumps the bun group with 1 update in the /edge-apps/simple-message-app directory: vue.
Bumps the bun group with 1 update in the /edge-apps/simple-table-app directory: vue.
Bumps the bun group with 1 update in the /edge-apps/welcome-app directory: vue.

Updates vue from 3.5.25 to 3.5.26

Release notes

Sourced from vue's releases.

v3.5.26

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

Changelog

Sourced from vue's changelog.

3.5.26 (2025-12-18)

Bug Fixes

Performance Improvements

  • compiler-core: use binary-search to get line and column (#14222) (1904053)
Commits
  • c68bebf release: v3.5.26
  • e857e12 fix(runtime-core): pass component instance to flushPreFlushCbs on unmount (#1...
  • f33b308 types(defineProps): avoid never props becoming boolean flags (#14059)
  • 94aeb64 fix(runtime-core): handle patch stable fragment edge case (#12411)
  • ed85953 fix(compat): fix compat handler of draggable (#12445)
  • 4783118 fix(compiler-ssr): handle ssr attr fallthrough when preserve whitespace (#12304)
  • 6611dda types(runtime-core): export DirectiveModifiers type (#14198)
  • e24ff7d fix(compiler-sfc): demote const reactive bindings used in v-model (#14214)
  • 69ce3c7 fix(hmr): handle cached text node update (#14134)
  • 1904053 perf(compiler-core): use binary-search to get line and column (#14222)
  • Additional commits viewable in compare view

Updates vue from 3.5.25 to 3.5.26

Release notes

Sourced from vue's releases.

v3.5.26

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

Changelog

Sourced from vue's changelog.

3.5.26 (2025-12-18)

Bug Fixes

Performance Improvements

  • compiler-core: use binary-search to get line and column (#14222) (1904053)
Commits
  • c68bebf release: v3.5.26
  • e857e12 fix(runtime-core): pass component instance to flushPreFlushCbs on unmount (#1...
  • f33b308 types(defineProps): avoid never props becoming boolean flags (#14059)
  • 94aeb64 fix(runtime-core): handle patch stable fragment edge case (#12411)
  • ed85953 fix(compat): fix compat handler of draggable (#12445)
  • 4783118 fix(compiler-ssr): handle ssr attr fallthrough when preserve whitespace (#12304)
  • 6611dda types(runtime-core): export DirectiveModifiers type (#14198)
  • e24ff7d fix(compiler-sfc): demote const reactive bindings used in v-model (#14214)
  • 69ce3c7 fix(hmr): handle cached text node update (#14134)
  • 1904053 perf(compiler-core): use binary-search to get line and column (#14222)
  • Additional commits viewable in compare view

Updates vue from 3.5.25 to 3.5.26

Release notes

Sourced from vue's releases.

v3.5.26

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

Changelog

Sourced from vue's changelog.

3.5.26 (2025-12-18)

Bug Fixes

Performance Improvements

  • compiler-core: use binary-search to get line and column (#14222) (1904053)
Commits
  • c68bebf release: v3.5.26
  • e857e12 fix(runtime-core): pass component instance to flushPreFlushCbs on unmount (#1...
  • f33b308 types(defineProps): avoid never props becoming boolean flags (#14059)
  • 94aeb64 fix(runtime-core): handle patch stable fragment edge case (#12411)
  • ed85953 fix(compat): fix compat handler of draggable (#12445)
  • 4783118 fix(compiler-ssr): handle ssr attr fallthrough when preserve whitespace (#12304)
  • 6611dda types(runtime-core): export DirectiveModifiers type (#14198)
  • e24ff7d fix(compiler-sfc): demote const reactive bindings used in v-model (#14214)
  • 69ce3c7 fix(hmr): handle cached text node update (#14134)
  • 1904053 perf(compiler-core): use binary-search to get line and column (#14222)
  • Additional commits viewable in compare view

Updates @sentry/vue from 10.31.0 to 10.32.0

Release notes

Sourced from @​sentry/vue's releases.

10.32.0

Important Changes

  • feat(core): Apply scope attributes to logs (#18184)

    You can now set attributes on the SDK's scopes which will be applied to all logs as long as the respective scopes are active. For the time being, only string, number and boolean attribute values are supported.

    Sentry.getGlobalScope().setAttributes({ is_admin: true, auth_provider: 'google' });
    Sentry.withScope(scope => {
    scope.setAttribute('step', 'authentication');
    // scope attributes is_admin, auth_provider and step are added
    Sentry.logger.info(user ${user.id} logged in, { activeSince: 100 });
    Sentry.logger.info(updated ${user.id} last activity);
    });
    // scope attributes is_admin and auth_provider are added
    Sentry.logger.warn('stale website version, reloading page');

  • feat(replay): Add Request body with attachRawBodyFromRequest option (#18501)

    To attach the raw request body (from Request objects passed as the first fetch argument) to replay events, you can now use the attachRawBodyFromRequest option in the Replay integration:

    Sentry.init({
      integrations: [
        Sentry.replayIntegration({
          attachRawBodyFromRequest: true,
        }),
      ],
    });
  • feat(tanstackstart-react): Trace server functions (#18500)

    To enable tracing for server-side requests, you can now explicitly define a server entry point in your application and wrap your request handler with wrapFetchWithSentry.

    // src/server.ts
    import { wrapFetchWithSentry } from '@sentry/tanstackstart-react';
    import handler, { createServerEntry } from '@tanstack/react-start/server-entry';
    export default createServerEntry(
    wrapFetchWithSentry({
    fetch(request: Request) {
    return handler.fetch(request);
    },

... (truncated)

Changelog

Sourced from @​sentry/vue's changelog.

10.32.0

Important Changes

  • feat(core): Apply scope attributes to logs (#18184)

    You can now set attributes on the SDK's scopes which will be applied to all logs as long as the respective scopes are active. For the time being, only string, number and boolean attribute values are supported.

    Sentry.geGlobalScope().setAttributes({ is_admin: true, auth_provider: 'google' });
    Sentry.withScope(scope => {
    scope.setAttribute('step', 'authentication');
    // scope attributes is_admin, auth_provider and step are added
    Sentry.logger.info(user ${user.id} logged in, { activeSince: 100 });
    Sentry.logger.info(updated ${user.id} last activity);
    });
    // scope attributes is_admin and auth_provider are added
    Sentry.logger.warn('stale website version, reloading page');

  • feat(replay): Add Request body with attachRawBodyFromRequest option (#18501)

    To attach the raw request body (from Request objects passed as the first fetch argument) to replay events, you can now use the attachRawBodyFromRequest option in the Replay integration:

    Sentry.init({
      integrations: [
        Sentry.replayIntegration({
          attachRawBodyFromRequest: true,
        }),
      ],
    });
  • feat(tanstackstart-react): Trace server functions (#18500)

    To enable tracing for server-side requests, you can now explicitly define a server entry point in your application and wrap your request handler with wrapFetchWithSentry.

    // src/server.ts
    import { wrapFetchWithSentry } from '@sentry/tanstackstart-react';
    import handler, { createServerEntry } from '@tanstack/react-start/server-entry';
    export default createServerEntry(
    wrapFetchWithSentry({
    fetch(request: Request) {
    return handler.fetch(request);

... (truncated)

Commits
  • 341340e release: 10.32.0
  • 445b682 Merge pull request #18560 from getsentry/prepare-release/10.32.0
  • b21806c meta(changelog): Update changelog for 10.32.0
  • dac328a chore(changelog): Add entry for tanstack start wrapFetchWithSentry (#18558)
  • f196ba2 chore(deps): bump @​trpc/server from 10.45.2 to 10.45.3 in /dev-packages/e2e-t...
  • ea3a45f chore(changelog): Add entry for scope attributes (#18555)
  • 8da7295 feat(core): Apply scope attributes to logs (#18184)
  • 968e529 feat(vue): Add TanStack Router integration (#18547)
  • 97e0be0 chore(e2e): Pin to react-router 7.10.1 in spa e2e test (#18548)
  • ad28c4d fix(solid/tanstackrouter): Ensure web vitals are sent on pageload (#18542)
  • Additional commits viewable in compare view

Updates vue from 3.5.25 to 3.5.26

Release notes

Sourced from vue's releases.

v3.5.26

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

Changelog

Sourced from vue's changelog.

3.5.26 (2025-12-18)

Bug Fixes

Performance Improvements

  • compiler-core: use binary-search to get line and column (#14222) (1904053)
Commits
  • c68bebf release: v3.5.26
  • e857e12 fix(runtime-core): pass component instance to flushPreFlushCbs on unmount (#1...
  • f33b308 types(defineProps): avoid never props becoming boolean flags (#14059)
  • 94aeb64 fix(runtime-core): handle patch stable fragment edge case (#12411)
  • ed85953 fix(compat): fix compat handler of draggable (#12445)
  • 4783118 fix(compiler-ssr): handle ssr attr fallthrough when preserve whitespace (#12304)
  • 6611dda types(runtime-core): export DirectiveModifiers type (#14198)
  • e24ff7d fix(compiler-sfc): demote const reactive bindings used in v-model (#14214)
  • 69ce3c7 fix(hmr): handle cached text node update (#14134)
  • 1904053 perf(compiler-core): use binary-search to get line and column (#14222)
  • Additional commits viewable in compare view

Updates @sentry/vue from 10.31.0 to 10.32.0

Release notes

Sourced from @​sentry/vue's releases.

10.32.0

Important Changes

  • feat(core): Apply scope attributes to logs (#18184)

    You can now set attributes on the SDK's scopes which will be applied to all logs as long as the respective scopes are active. For the time being, only string, number and boolean attribute values are supported.

    Sentry.getGlobalScope().setAttributes({ is_admin: true, auth_provider: 'google' });
    Sentry.withScope(scope => {
    scope.setAttribute('step', 'authentication');
    // scope attributes is_admin, auth_provider and step are added
    Sentry.logger.info(user ${user.id} logged in, { activeSince: 100 });
    Sentry.logger.info(updated ${user.id} last activity);
    });
    // scope attributes is_admin and auth_provider are added
    Sentry.logger.warn('stale website version, reloading page');

  • feat(replay): Add Request body with attachRawBodyFromRequest option (#18501)

    To attach the raw request body (from Request objects passed as the first fetch argument) to replay events, you can now use the attachRawBodyFromRequest option in the Replay integration:

    Sentry.init({
      integrations: [
        Sentry.replayIntegration({
          attachRawBodyFromRequest: true,
        }),
      ],
    });
  • feat(tanstackstart-react): Trace server functions (#18500)

    To enable tracing for server-side requests, you can now explicitly define a server entry point in your application and wrap your request handler with wrapFetchWithSentry.

    // src/server.ts
    import { wrapFetchWithSentry } from '@sentry/tanstackstart-react';
    import handler, { createServerEntry } from '@tanstack/react-start/server-entry';
    export default createServerEntry(
    wrapFetchWithSentry({
    fetch(request: Request) {
    return handler.fetch(request);
    },

... (truncated)

Changelog

Sourced from @​sentry/vue's changelog.

10.32.0

Important Changes

  • feat(core): Apply scope attributes to logs (#18184)

    You can now set attributes on the SDK's scopes which will be applied to all logs as long as the respective scopes are active. For the time being, only string, number and boolean attribute values are supported.

    Sentry.geGlobalScope().setAttributes({ is_admin: true, auth_provider: 'google' });
    Sentry.withScope(scope => {
    scope.setAttribute('step', 'authentication');
    // scope attributes is_admin, auth_provider and step are added
    Sentry.logger.info(user ${user.id} logged in, { activeSince: 100 });
    Sentry.logger.info(updated ${user.id} last activity);
    });
    // scope attributes is_admin and auth_provider are added
    Sentry.logger.warn('stale website version, reloading page');

  • feat(replay): Add Request body with attachRawBodyFromRequest option (#18501)

    To attach the raw request body (from Request objects passed as the first fetch argument) to replay events, you can now use the attachRawBodyFromRequest option in the Replay integration:

    Sentry.init({
      integrations: [
        Sentry.replayIntegration({
          attachRawBodyFromRequest: true,
        }),
      ],
    });
  • feat(tanstackstart-react): Trace server functions (#18500)

    To enable tracing for server-side requests, you can now explicitly define a server entry point in your application and wrap your request handler with wrapFetchWithSentry.

    // src/server.ts
    import { wrapFetchWithSentry } from '@sentry/tanstackstart-react';
    import handler, { createServerEntry } from '@tanstack/react-start/server-entry';
    export default createServerEntry(
    wrapFetchWithSentry({
    fetch(request: Request) {
    return handler.fetch(request);

... (truncated)

Commits
  • 341340e release: 10.32.0
  • 445b682 Merge pull request #18560 from getsentry/prepare-release/10.32.0
  • b21806c meta(changelog): Update changelog for 10.32.0
  • dac328a chore(changelog): Add entry for tanstack start wrapFetchWithSentry (#18558)
  • f196ba2 chore(deps): bump @​trpc/server from 10.45.2 to 10.45.3 in /dev-packages/e2e-t...
  • ea3a45f chore(changelog): Add entry for scope attributes (#18555)
  • 8da7295 feat(core): Apply scope attributes to logs (#18184)
  • 968e529 feat(vue): Add TanStack Router integration (#18547)
  • 97e0be0 chore(e2e): Pin to react-router 7.10.1 in spa e2e test (#18548)
  • ad28c4d fix(solid/tanstackrouter): Ensure web vitals are sent on pageload (#18542)
  • Additional commits viewable in compare view

Updates @sentry/browser from 10.31.0 to 10.32.0

Release notes

Sourced from @​sentry/browser's releases.

10.32.0

Important Changes

  • feat(core): Apply scope attributes to logs (#18184)

    You can now set attributes on the SDK's scopes which will be applied to all logs as long as the respective scopes are active. For the time being, only string, number and boolean attribute values are supported.

    Sentry.getGlobalScope().setAttributes({ is_admin: true, auth_provider: 'google' });
    Sentry.withScope(scope => {
    scope.setAttribute('step', 'authentication');
    // scope attributes is_admin, auth_provider and step are added
    Sentry.logger.info(user ${user.id} logged in, { activeSince: 100 });
    Sentry.logger.info(updated ${user.id} last activity);
    });
    // scope attributes is_admin and auth_provider are added
    Sentry.logger.warn('stale website version, reloading page');

  • feat(replay): Add Request body with attachRawBodyFromRequest option (#18501)

    To attach the raw request body (from Request objects passed as the first fetch argument) to replay events, you can now use the attachRawBodyFromRequest option in the Replay integration:

    Sentry.init({
      integrations: [
        Sentry.replayIntegration({
          attachRawBodyFromRequest: true,
        }),
      ],
    });
  • feat(tanstackstart-react): Trace server functions (#18500)

    To enable tracing for server-side requests, you can now explicitly define a server entry point in your application and wrap your request handler with wrapFetchWithSentry.

    // src/server.ts
    import { wrapFetchWithSentry } from '@sentry/tanstackstart-react';
    import handler, { createServerEntry } from '@tanstack/react-start/server-entry';
    export default createServerEntry(
    wrapFetchWithSentry({
    fetch(request: Request) {
    return handler.fetch(request);
    },

... (truncated)

Changelog

Sourced from @​sentry/browser's changelog.

10.32.0

Important Changes

  • feat(core): Apply scope attributes to logs (#18184)

    You can now set attributes on the SDK's scopes which will be applied to all logs as long as the respective scopes are active. For the time being, only string, number and boolean attribute values are supported.

    Sentry.geGlobalScope().setAttributes({ is_admin: true, auth_provider: 'google' });
    Sentry.withScope(scope => {
    scope.setAttribute('step', 'authentication');
    // scope attributes is_admin, auth_provider and step are added
    Sentry.logger.info(user ${user.id} logged in, { activeSince: 100 });
    Sentry.logger.info(updated ${user.id} last activity);
    });
    // scope attributes is_admin and auth_provider are added
    Sentry.logger.warn('stale website version, reloading page');

  • feat(replay): Add Request body with attachRawBodyFromRequest option (#18501)

    To attach the raw request body (from Request objects passed as the first fetch argument) to replay events, you can now use the attachRawBodyFromRequest option in the Replay integration:

    Sentry.init({
      integrations: [
        Sentry.replayIntegration({
          attachRawBodyFromRequest: true,
        }),
      ],
    });
  • feat(tanstackstart-react): Trace server functions (#18500)

    To enable tracing for server-side requests, you can now explicitly define a server entry point in your application and wrap your request handler with wrapFetchWithSentry.

    // src/server.ts
    import { wrapFetchWithSentry } from '@sentry/tanstackstart-react';
    import handler, { createServerEntry } from '@tanstack/react-start/server-entry';
    export default createServerEntry(
    wrapFetchWithSentry({
    fetch(request: Request) {
    return handler.fetch(request);

... (truncated)

Commits
  • 341340e release: 10.32.0
  • 445b682 Merge pull request #18560 from getsentry/prepare-release/10.32.0
  • b21806c meta(changelog): Update changelog for 10.32.0
  • dac328a chore(changelog): Add entry for tanstack start wrapFetchWithSentry (#18558)
  • f196ba2 chore(deps): bump @​trpc/server from 10.45.2 to 10.45.3 in /dev-packages/e2e-t...
  • ea3a45f chore(changelog): Add entry for scope attributes (#18555)
  • 8da7295 feat(core): Apply scope attributes to logs (#18184)
  • 968e529 feat(vue): Add TanStack Router integration (#18547)
  • 97e0be0 chore(e2e): Pin to react-router 7.10.1 in spa e2e test (#18548)
  • ad28c4d fix(solid/tanstackrouter): Ensure web vitals are sent on pageload (#18542)
  • Additional commits viewable in compare view

Updates vue from 3.5.25 to 3.5.26

Release notes

Sourced from vue's releases.

v3.5.26

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

Changelog

Sourced from vue's changelog.

3.5.26 (2025-12-18)

Bug Fixes

Performance Improvements

  • compiler-core: use binary-search to get line and column (#14222) (1904053)
Commits
  • c68bebf release: v3.5.26
  • e857e12 fix(runtime-core): pass component instance to flushPreFlushCbs on unmount (#1...
  • f33b308 types(defineProps): avoid never props becoming boolean flags (#14059)
  • 94aeb64 fix(runtime-core): handle patch stable fragment edge case (#12411)
  • ed85953 fix(compat): fix compat handler of draggable (#12445)
  • 4783118 fix(compiler-ssr): handle ssr attr fallthrough when preserve whitespace (#12304)
  • 6611dda types(runtime-core): export DirectiveModifiers type (#14198)
  • e24ff7d fix(compiler-sfc): demote const reactive bindings used in v-model (#14214)
  • 69ce3c7 fix(hmr): handle cached text node update (#14134)
  • 1904053 perf(compiler-core): use binary-search to get line and column (#14222)
  • Additional commits viewable in compare view

Updates @types/bun from 1.3.4 to 1.3.5

Commits

Updates vue from 3.5.25 to 3.5.26

Release notes

Sourced from vue's releases.

v3.5.26

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

Changelog

Sourced from vue's changelog.

3.5.26 (2025-12-18)

Bug Fixes

  • compat: fix compat handler of draggable (#12445) (ed85953), closes #12444
  • compat: handle v-model deprecation warning with missing appContext (#14203) (945a543), closes #14202
  • compiler-sfc: demote const reactive bindings used in v-model (#14214) (e24ff7d), closes #11265 #11275
  • compiler-ssr: handle ssr attr fallthrough when preserve whitespace (#12304) (4783118), closes #8072
  • hmr: handle cached text node update (#14134) (69ce3c7), closes #14127
  • keep-alive: use resolved component name for async components in cache pruning (#14212) (dfe667c), closes #14210
  • runtime-core: ensure correct anchor el for deeper unresolved async components (

Bumps the bun group with 1 update in the /edge-apps/asset-metadata directory: [vue](https://github.com/vuejs/core).
Bumps the bun group with 1 update in the /edge-apps/bamboo-hr-app directory: [vue](https://github.com/vuejs/core).
Bumps the bun group with 2 updates in the /edge-apps/blueprint directory: [vue](https://github.com/vuejs/core) and [@sentry/vue](https://github.com/getsentry/sentry-javascript).
Bumps the bun group with 3 updates in the /edge-apps/calendar directory: [vue](https://github.com/vuejs/core), [@sentry/vue](https://github.com/getsentry/sentry-javascript) and [@sentry/browser](https://github.com/getsentry/sentry-javascript).
Bumps the bun group with 1 update in the /edge-apps/clock directory: [vue](https://github.com/vuejs/core).
Bumps the bun group with 1 update in the /edge-apps/edge-apps-library directory: [@types/bun](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/bun).
Bumps the bun group with 3 updates in the /edge-apps/google-calendar directory: [vue](https://github.com/vuejs/core), [@sentry/vue](https://github.com/getsentry/sentry-javascript) and [@sentry/browser](https://github.com/getsentry/sentry-javascript).
Bumps the bun group with 1 update in the /edge-apps/menu-board directory: [@types/bun](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/bun).
Bumps the bun group with 3 updates in the /edge-apps/outlook-calendar directory: [vue](https://github.com/vuejs/core), [@sentry/vue](https://github.com/getsentry/sentry-javascript) and [@sentry/browser](https://github.com/getsentry/sentry-javascript).
Bumps the bun group with 1 update in the /edge-apps/qr-code directory: [@types/bun](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/bun).
Bumps the bun group with 1 update in the /edge-apps/simple-message-app directory: [vue](https://github.com/vuejs/core).
Bumps the bun group with 1 update in the /edge-apps/simple-table-app directory: [vue](https://github.com/vuejs/core).
Bumps the bun group with 1 update in the /edge-apps/welcome-app directory: [vue](https://github.com/vuejs/core).


Updates `vue` from 3.5.25 to 3.5.26
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](vuejs/core@v3.5.25...v3.5.26)

Updates `vue` from 3.5.25 to 3.5.26
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](vuejs/core@v3.5.25...v3.5.26)

Updates `vue` from 3.5.25 to 3.5.26
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](vuejs/core@v3.5.25...v3.5.26)

Updates `@sentry/vue` from 10.31.0 to 10.32.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.31.0...10.32.0)

Updates `vue` from 3.5.25 to 3.5.26
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](vuejs/core@v3.5.25...v3.5.26)

Updates `@sentry/vue` from 10.31.0 to 10.32.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.31.0...10.32.0)

Updates `@sentry/browser` from 10.31.0 to 10.32.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.31.0...10.32.0)

Updates `vue` from 3.5.25 to 3.5.26
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](vuejs/core@v3.5.25...v3.5.26)

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

Updates `vue` from 3.5.25 to 3.5.26
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](vuejs/core@v3.5.25...v3.5.26)

Updates `@sentry/vue` from 10.31.0 to 10.32.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.31.0...10.32.0)

Updates `@sentry/browser` from 10.31.0 to 10.32.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.31.0...10.32.0)

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

Updates `vue` from 3.5.25 to 3.5.26
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](vuejs/core@v3.5.25...v3.5.26)

Updates `@sentry/vue` from 10.31.0 to 10.32.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.31.0...10.32.0)

Updates `@sentry/browser` from 10.31.0 to 10.32.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.31.0...10.32.0)

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

Updates `vue` from 3.5.25 to 3.5.26
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](vuejs/core@v3.5.25...v3.5.26)

Updates `vue` from 3.5.25 to 3.5.26
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](vuejs/core@v3.5.25...v3.5.26)

Updates `vue` from 3.5.25 to 3.5.26
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](vuejs/core@v3.5.25...v3.5.26)

---
updated-dependencies:
- dependency-name: vue
  dependency-version: 3.5.26
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: bun
- dependency-name: vue
  dependency-version: 3.5.26
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: bun
- dependency-name: vue
  dependency-version: 3.5.26
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: bun
- dependency-name: "@sentry/vue"
  dependency-version: 10.32.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: bun
- dependency-name: vue
  dependency-version: 3.5.26
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: bun
- dependency-name: "@sentry/vue"
  dependency-version: 10.32.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: bun
- dependency-name: "@sentry/browser"
  dependency-version: 10.32.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: bun
- dependency-name: vue
  dependency-version: 3.5.26
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: bun
- dependency-name: "@types/bun"
  dependency-version: 1.3.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: bun
- dependency-name: vue
  dependency-version: 3.5.26
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: bun
- dependency-name: "@sentry/vue"
  dependency-version: 10.32.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: bun
- dependency-name: "@sentry/browser"
  dependency-version: 10.32.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: bun
- dependency-name: "@types/bun"
  dependency-version: 1.3.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: bun
- dependency-name: vue
  dependency-version: 3.5.26
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: bun
- dependency-name: "@sentry/vue"
  dependency-version: 10.32.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: bun
- dependency-name: "@sentry/browser"
  dependency-version: 10.32.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: bun
- dependency-name: "@types/bun"
  dependency-version: 1.3.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: bun
- dependency-name: vue
  dependency-version: 3.5.26
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: bun
- dependency-name: vue
  dependency-version: 3.5.26
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: bun
- dependency-name: vue
  dependency-version: 3.5.26
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: bun
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Dec 18, 2025
@nicomiguelino nicomiguelino merged commit 3a7a6a2 into master Dec 19, 2025
18 checks passed
@nicomiguelino nicomiguelino deleted the dependabot/bun/edge-apps/asset-metadata/bun-b97b7c10d1 branch December 19, 2025 15:21
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