[PR #1249] [MERGED] fix(deps): update dependency @sentry/vue to v10.2.0 #7414

Closed
opened 2026-04-20 17:41:56 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/go-vikunja/vikunja/pull/1249
Author: @renovate[bot]
Created: 8/6/2025
Status: Merged
Merged: 8/6/2025
Merged by: @kolaente

Base: mainHead: renovate/sentry-javascript-monorepo


📝 Commits (1)

  • fca52f8 fix(deps): update dependency @sentry/vue to v10.2.0

📊 Changes

2 files changed (+38 additions, -37 deletions)

View changed files

📝 frontend/package.json (+1 -1)
📝 frontend/pnpm-lock.yaml (+37 -36)

📄 Description

This PR contains the following updates:

Package Change Age Confidence
@sentry/vue (source) 10.1.0 -> 10.2.0 age confidence

Release Notes

getsentry/sentry-javascript (@​sentry/vue)

v10.2.0

Compare Source

Important Changes
  • feat(core): Add ignoreSpans option (#​17078)

This release adds a new top-level Sentry.init option, ignoreSpans, that can be used as follows:

Sentry.init({
  ignoreSpans: [
    'partial match', // string matching on the span name
    /regex/, // regex matching on the span name
    {
      name: 'span name',
      op: /http.client/,
    },
  ],
});

Spans matching the filter criteria will not be recorded. Potential child spans of filtered spans will be re-parented, if possible.

  • feat(cloudflare,vercel-edge): Add support for OpenAI instrumentation (#​17338)

Adds support for OpenAI manual instrumentation in @sentry/cloudflare and @sentry/vercel-edge.

To instrument the OpenAI client, wrap it with Sentry.instrumentOpenAiClient and set recording settings.

import * as Sentry from '@​sentry/cloudflare';
import OpenAI from 'openai';

const openai = new OpenAI();
const client = Sentry.instrumentOpenAiClient(openai, { recordInputs: true, recordOutputs: true });

// use the wrapped client
  • ref(aws): Remove manual span creation (#​17310)

The startTrace option is deprecated and will be removed in a future major version. If you want to disable tracing, set SENTRY_TRACES_SAMPLE_RATE to 0.0. instead. As of today, the flag does not affect traces anymore.

Other Changes

Bundle size 📦

Path Size
@​sentry/browser 23.48 KB
@​sentry/browser - with treeshaking flags 22.09 KB
@​sentry/browser (incl. Tracing) 38.82 KB
@​sentry/browser (incl. Tracing, Replay) 76.03 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 66.11 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 80.62 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 92.44 KB
@​sentry/browser (incl. Feedback) 39.74 KB
@​sentry/browser (incl. sendFeedback) 28.03 KB
@​sentry/browser (incl. FeedbackAsync) 32.81 KB
@​sentry/react 25.16 KB
@​sentry/react (incl. Tracing) 40.72 KB
@​sentry/vue 27.84 KB
@​sentry/vue (incl. Tracing) 40.59 KB
@​sentry/svelte 23.51 KB
CDN Bundle 24.95 KB
CDN Bundle (incl. Tracing) 38.71 KB
CDN Bundle (incl. Tracing, Replay) 73.92 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 79.21 KB
CDN Bundle - uncompressed 72.95 KB
CDN Bundle (incl. Tracing) - uncompressed 114.57 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 226.16 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 238.47 KB
@​sentry/nextjs (client) 42.72 KB
@​sentry/sveltekit (client) 39.25 KB
@​sentry/node-core 46.61 KB
@​sentry/node 143.18 KB
@​sentry/node - without tracing 89.68 KB
@​sentry/aws-serverless 100.85 KB

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/go-vikunja/vikunja/pull/1249 **Author:** [@renovate[bot]](https://github.com/apps/renovate) **Created:** 8/6/2025 **Status:** ✅ Merged **Merged:** 8/6/2025 **Merged by:** [@kolaente](https://github.com/kolaente) **Base:** `main` ← **Head:** `renovate/sentry-javascript-monorepo` --- ### 📝 Commits (1) - [`fca52f8`](https://github.com/go-vikunja/vikunja/commit/fca52f84850f640b28774747eba5a90aea17708c) fix(deps): update dependency @sentry/vue to v10.2.0 ### 📊 Changes **2 files changed** (+38 additions, -37 deletions) <details> <summary>View changed files</summary> 📝 `frontend/package.json` (+1 -1) 📝 `frontend/pnpm-lock.yaml` (+37 -36) </details> ### 📄 Description This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [@sentry/vue](https://redirect.github.com/getsentry/sentry-javascript/tree/master/packages/vue) ([source](https://redirect.github.com/getsentry/sentry-javascript)) | [`10.1.0` -> `10.2.0`](https://renovatebot.com/diffs/npm/@sentry%2fvue/10.1.0/10.2.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@sentry%2fvue/10.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@sentry%2fvue/10.1.0/10.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>getsentry/sentry-javascript (@&#8203;sentry/vue)</summary> ### [`v10.2.0`](https://redirect.github.com/getsentry/sentry-javascript/releases/tag/10.2.0) [Compare Source](https://redirect.github.com/getsentry/sentry-javascript/compare/10.1.0...10.2.0) ##### Important Changes - **feat(core): Add `ignoreSpans` option ([#&#8203;17078](https://redirect.github.com/getsentry/sentry-javascript/pull/17078))** This release adds a new top-level `Sentry.init` option, `ignoreSpans`, that can be used as follows: ```js Sentry.init({ ignoreSpans: [ 'partial match', // string matching on the span name /regex/, // regex matching on the span name { name: 'span name', op: /http.client/, }, ], }); ``` Spans matching the filter criteria will not be recorded. Potential child spans of filtered spans will be re-parented, if possible. - **feat(cloudflare,vercel-edge): Add support for OpenAI instrumentation ([#&#8203;17338](https://redirect.github.com/getsentry/sentry-javascript/pull/17338))** Adds support for OpenAI manual instrumentation in `@sentry/cloudflare` and `@sentry/vercel-edge`. To instrument the OpenAI client, wrap it with `Sentry.instrumentOpenAiClient` and set recording settings. ```js import * as Sentry from '@&#8203;sentry/cloudflare'; import OpenAI from 'openai'; const openai = new OpenAI(); const client = Sentry.instrumentOpenAiClient(openai, { recordInputs: true, recordOutputs: true }); // use the wrapped client ``` - **ref(aws): Remove manual span creation ([#&#8203;17310](https://redirect.github.com/getsentry/sentry-javascript/pull/17310))** The `startTrace` option is deprecated and will be removed in a future major version. If you want to disable tracing, set `SENTRY_TRACES_SAMPLE_RATE` to `0.0`. instead. As of today, the flag does not affect traces anymore. ##### Other Changes - feat(astro): Streamline build logs ([#&#8203;17301](https://redirect.github.com/getsentry/sentry-javascript/pull/17301)) - feat(browser): Handles data URIs in chrome stack frames ([#&#8203;17292](https://redirect.github.com/getsentry/sentry-javascript/pull/17292)) - feat(core): Accumulate tokens for `gen_ai.invoke_agent` spans from child LLM calls ([#&#8203;17281](https://redirect.github.com/getsentry/sentry-javascript/pull/17281)) - feat(deps): Bump [@&#8203;prisma/instrumentation](https://redirect.github.com/prisma/instrumentation) from 6.12.0 to 6.13.0 ([#&#8203;17315](https://redirect.github.com/getsentry/sentry-javascript/pull/17315)) - feat(deps): Bump [@&#8203;sentry/cli](https://redirect.github.com/sentry/cli) from 2.50.0 to 2.50.2 ([#&#8203;17316](https://redirect.github.com/getsentry/sentry-javascript/pull/17316)) - feat(deps): Bump [@&#8203;sentry/rollup-plugin](https://redirect.github.com/sentry/rollup-plugin) from 4.0.0 to 4.0.2 ([#&#8203;17317](https://redirect.github.com/getsentry/sentry-javascript/pull/17317)) - feat(deps): Bump [@&#8203;sentry/webpack-plugin](https://redirect.github.com/sentry/webpack-plugin) from 4.0.0 to 4.0.2 ([#&#8203;17314](https://redirect.github.com/getsentry/sentry-javascript/pull/17314)) - feat(nuxt): Do not inject trace meta-tags on cached HTML pages ([#&#8203;17305](https://redirect.github.com/getsentry/sentry-javascript/pull/17305)) - feat(nuxt): Streamline build logs ([#&#8203;17308](https://redirect.github.com/getsentry/sentry-javascript/pull/17308)) - feat(react-router): Add support for Hydrogen with RR7 ([#&#8203;17145](https://redirect.github.com/getsentry/sentry-javascript/pull/17145)) - feat(react-router): Streamline build logs ([#&#8203;17303](https://redirect.github.com/getsentry/sentry-javascript/pull/17303)) - feat(solidstart): Streamline build logs ([#&#8203;17304](https://redirect.github.com/getsentry/sentry-javascript/pull/17304)) - fix(nestjs): Add missing `sentry.origin` span attribute to `SentryTraced` decorator ([#&#8203;17318](https://redirect.github.com/getsentry/sentry-javascript/pull/17318)) - fix(node): Assign default export of `openai` to the instrumented fn ([#&#8203;17320](https://redirect.github.com/getsentry/sentry-javascript/pull/17320)) - fix(replay): Call `sendBufferedReplayOrFlush` when opening/sending feedback ([#&#8203;17236](https://redirect.github.com/getsentry/sentry-javascript/pull/17236)) #### Bundle size 📦 | Path | Size | | ---------------------------------------------------------------- | ----------------- | | [@&#8203;sentry/browser](https://redirect.github.com/sentry/browser) | 23.48 KB | | [@&#8203;sentry/browser](https://redirect.github.com/sentry/browser) - with treeshaking flags | 22.09 KB | | [@&#8203;sentry/browser](https://redirect.github.com/sentry/browser) (incl. Tracing) | 38.82 KB | | [@&#8203;sentry/browser](https://redirect.github.com/sentry/browser) (incl. Tracing, Replay) | 76.03 KB | | [@&#8203;sentry/browser](https://redirect.github.com/sentry/browser) (incl. Tracing, Replay) - with treeshaking flags | 66.11 KB | | [@&#8203;sentry/browser](https://redirect.github.com/sentry/browser) (incl. Tracing, Replay with Canvas) | 80.62 KB | | [@&#8203;sentry/browser](https://redirect.github.com/sentry/browser) (incl. Tracing, Replay, Feedback) | 92.44 KB | | [@&#8203;sentry/browser](https://redirect.github.com/sentry/browser) (incl. Feedback) | 39.74 KB | | [@&#8203;sentry/browser](https://redirect.github.com/sentry/browser) (incl. sendFeedback) | 28.03 KB | | [@&#8203;sentry/browser](https://redirect.github.com/sentry/browser) (incl. FeedbackAsync) | 32.81 KB | | [@&#8203;sentry/react](https://redirect.github.com/sentry/react) | 25.16 KB | | [@&#8203;sentry/react](https://redirect.github.com/sentry/react) (incl. Tracing) | 40.72 KB | | [@&#8203;sentry/vue](https://redirect.github.com/sentry/vue) | 27.84 KB | | [@&#8203;sentry/vue](https://redirect.github.com/sentry/vue) (incl. Tracing) | 40.59 KB | | [@&#8203;sentry/svelte](https://redirect.github.com/sentry/svelte) | 23.51 KB | | CDN Bundle | 24.95 KB | | CDN Bundle (incl. Tracing) | 38.71 KB | | CDN Bundle (incl. Tracing, Replay) | 73.92 KB | | CDN Bundle (incl. Tracing, Replay, Feedback) | 79.21 KB | | CDN Bundle - uncompressed | 72.95 KB | | CDN Bundle (incl. Tracing) - uncompressed | 114.57 KB | | CDN Bundle (incl. Tracing, Replay) - uncompressed | 226.16 KB | | CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed | 238.47 KB | | [@&#8203;sentry/nextjs](https://redirect.github.com/sentry/nextjs) (client) | 42.72 KB | | [@&#8203;sentry/sveltekit](https://redirect.github.com/sentry/sveltekit) (client) | 39.25 KB | | [@&#8203;sentry/node-core](https://redirect.github.com/sentry/node-core) | 46.61 KB | | [@&#8203;sentry/node](https://redirect.github.com/sentry/node) | 143.18 KB | | [@&#8203;sentry/node](https://redirect.github.com/sentry/node) - without tracing | 89.68 KB | | [@&#8203;sentry/aws-serverless](https://redirect.github.com/sentry/aws-serverless) | 100.85 KB | </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/go-vikunja/vikunja). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS41MS4xIiwidXBkYXRlZEluVmVyIjoiNDEuNTEuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19--> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-20 17:41:56 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/vikunja#7414