[PR #2134] [MERGED] fix(deps): update dependency @sentry/vue to v10.35.0 #9800

Closed
opened 2026-04-23 09:13:27 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/go-vikunja/vikunja/pull/2134
Author: @renovate[bot]
Created: 1/22/2026
Status: Merged
Merged: 1/23/2026
Merged by: @kolaente

Base: mainHead: renovate/sentry-javascript-monorepo


📝 Commits (1)

  • 4bdd688 fix(deps): update dependency @sentry/vue to v10.35.0

📊 Changes

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

View changed files

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

📄 Description

This PR contains the following updates:

Package Change Age Confidence
@sentry/vue (source) 10.34.010.35.0 age confidence

Release Notes

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

v10.35.0

Compare Source

Important Changes
  • feat(tanstackstart-react): Add sentryTanstackStart vite plugin to manage automatic source map uploads (#​18712)

    You can now configure source maps upload for TanStack Start using the sentryTanstackStart Vite plugin:

    // vite.config.ts
    import { defineConfig } from 'vite';
    import { sentryTanstackStart } from '@​sentry/tanstackstart-react';
    import { tanstackStart } from '@​tanstack/react-start/plugin/vite';
    
    export default defineConfig({
      plugins: [
        sentryTanstackStart({
          authToken: process.env.SENTRY_AUTH_TOKEN,
          org: 'your-org',
          project: 'your-project',
        }),
        tanstackStart(),
      ],
    });
    
Other Changes
  • feat(browser): Add CDN bundle for tracing.replay.feedback.logs.metrics (#​18785)
  • feat(browser): Add shim package for logs (#​18831)
  • feat(cloudflare): Automatically set the release id when CF_VERSION_METADATA is enabled (#​18855)
  • feat(core): Add ignored client report event drop reason (#​18815)
  • feat(logs): Add Log exports to browser and node packages (#​18857)
  • feat(node-core,bun): Export processSessionIntegration from node-core and add it to bun (#​18852)
  • fix(core): Find the correct IP address regardless their case (#​18880)
  • fix(core): Check for AI operation id to detect a vercelai span (#​18823)
  • fix(ember): Use ES5 syntax in inline vendor scripts (#​18858)
  • fix(fetch): Shallow-clone fetch options to prevent mutation (#​18867)
Internal Changes
  • chore(ci): Use javascript-sdk-gitflow app instead of personal token (#​18829)
  • chore(deps): Bump @sveltejs/kit devDependency to 2.49.5 (#​18848)
  • chore(deps): Bump bundler plugins to ^4.6.2 (#​18822)
  • chore(deps): bump hono from 4.10.3 to 4.11.4 in /dev-packages/e2e-tests/test-applications/cloudflare-hono (#​18806)
  • chore(test): Bump svelte dependencies (#​18850)
  • chore(core): Comment out Error tests in langchain (#​18837)
  • meta(changelog): Fix entry for tanstack start vite plugin (#​18883)
  • test(e2e): Add testing app for User Feedback (#​18877)
  • test(fastify): Verify if upstream error is fixed and won't regress (#​18838)

Work in this release was contributed by @​rreckonerr. Thank you for your contribution!


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/2134 **Author:** [@renovate[bot]](https://github.com/apps/renovate) **Created:** 1/22/2026 **Status:** ✅ Merged **Merged:** 1/23/2026 **Merged by:** [@kolaente](https://github.com/kolaente) **Base:** `main` ← **Head:** `renovate/sentry-javascript-monorepo` --- ### 📝 Commits (1) - [`4bdd688`](https://github.com/go-vikunja/vikunja/commit/4bdd688d35a5fd3bed0396c64f7b0e75d6fc2f7a) fix(deps): update dependency @sentry/vue to v10.35.0 ### 📊 Changes **2 files changed** (+37 additions, -37 deletions) <details> <summary>View changed files</summary> 📝 `frontend/package.json` (+1 -1) 📝 `frontend/pnpm-lock.yaml` (+36 -36) </details> ### 📄 Description This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [@sentry/vue](https://redirect.github.com/getsentry/sentry-javascript/tree/master/packages/vue) ([source](https://redirect.github.com/getsentry/sentry-javascript)) | [`10.34.0` → `10.35.0`](https://renovatebot.com/diffs/npm/@sentry%2fvue/10.34.0/10.35.0) | ![age](https://developer.mend.io/api/mc/badges/age/npm/@sentry%2fvue/10.35.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@sentry%2fvue/10.34.0/10.35.0?slim=true) | --- ### Release Notes <details> <summary>getsentry/sentry-javascript (@&#8203;sentry/vue)</summary> ### [`v10.35.0`](https://redirect.github.com/getsentry/sentry-javascript/blob/HEAD/CHANGELOG.md#10350) [Compare Source](https://redirect.github.com/getsentry/sentry-javascript/compare/10.34.0...10.35.0) ##### Important Changes - **feat(tanstackstart-react): Add `sentryTanstackStart` vite plugin to manage automatic source map uploads ([#&#8203;18712](https://redirect.github.com/getsentry/sentry-javascript/pull/18712))** You can now configure source maps upload for TanStack Start using the `sentryTanstackStart` Vite plugin: ```ts // vite.config.ts import { defineConfig } from 'vite'; import { sentryTanstackStart } from '@&#8203;sentry/tanstackstart-react'; import { tanstackStart } from '@&#8203;tanstack/react-start/plugin/vite'; export default defineConfig({ plugins: [ sentryTanstackStart({ authToken: process.env.SENTRY_AUTH_TOKEN, org: 'your-org', project: 'your-project', }), tanstackStart(), ], }); ``` ##### Other Changes - feat(browser): Add CDN bundle for `tracing.replay.feedback.logs.metrics` ([#&#8203;18785](https://redirect.github.com/getsentry/sentry-javascript/pull/18785)) - feat(browser): Add shim package for logs ([#&#8203;18831](https://redirect.github.com/getsentry/sentry-javascript/pull/18831)) - feat(cloudflare): Automatically set the release id when CF\_VERSION\_METADATA is enabled ([#&#8203;18855](https://redirect.github.com/getsentry/sentry-javascript/pull/18855)) - feat(core): Add `ignored` client report event drop reason ([#&#8203;18815](https://redirect.github.com/getsentry/sentry-javascript/pull/18815)) - feat(logs): Add `Log` exports to browser and node packages ([#&#8203;18857](https://redirect.github.com/getsentry/sentry-javascript/pull/18857)) - feat(node-core,bun): Export processSessionIntegration from node-core and add it to bun ([#&#8203;18852](https://redirect.github.com/getsentry/sentry-javascript/pull/18852)) - fix(core): Find the correct IP address regardless their case ([#&#8203;18880](https://redirect.github.com/getsentry/sentry-javascript/pull/18880)) - fix(core): Check for AI operation id to detect a vercelai span ([#&#8203;18823](https://redirect.github.com/getsentry/sentry-javascript/pull/18823)) - fix(ember): Use ES5 syntax in inline vendor scripts ([#&#8203;18858](https://redirect.github.com/getsentry/sentry-javascript/pull/18858)) - fix(fetch): Shallow-clone fetch options to prevent mutation ([#&#8203;18867](https://redirect.github.com/getsentry/sentry-javascript/pull/18867)) <details> <summary><strong>Internal Changes</strong></summary> - chore(ci): Use javascript-sdk-gitflow app instead of personal token ([#&#8203;18829](https://redirect.github.com/getsentry/sentry-javascript/pull/18829)) - chore(deps): Bump `@sveltejs/kit` devDependency to `2.49.5` ([#&#8203;18848](https://redirect.github.com/getsentry/sentry-javascript/pull/18848)) - chore(deps): Bump bundler plugins to ^4.6.2 ([#&#8203;18822](https://redirect.github.com/getsentry/sentry-javascript/pull/18822)) - chore(deps): bump hono from 4.10.3 to 4.11.4 in /dev-packages/e2e-tests/test-applications/cloudflare-hono ([#&#8203;18806](https://redirect.github.com/getsentry/sentry-javascript/pull/18806)) - chore(test): Bump svelte dependencies ([#&#8203;18850](https://redirect.github.com/getsentry/sentry-javascript/pull/18850)) - chore(core): Comment out Error tests in langchain ([#&#8203;18837](https://redirect.github.com/getsentry/sentry-javascript/pull/18837)) - meta(changelog): Fix entry for tanstack start vite plugin ([#&#8203;18883](https://redirect.github.com/getsentry/sentry-javascript/pull/18883)) - test(e2e): Add testing app for User Feedback ([#&#8203;18877](https://redirect.github.com/getsentry/sentry-javascript/pull/18877)) - test(fastify): Verify if upstream error is fixed and won't regress ([#&#8203;18838](https://redirect.github.com/getsentry/sentry-javascript/pull/18838)) </details> Work in this release was contributed by [@&#8203;rreckonerr](https://redirect.github.com/rreckonerr). Thank you for your contribution! </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:eyJjcmVhdGVkSW5WZXIiOiI0Mi44NS4xIiwidXBkYXRlZEluVmVyIjoiNDIuODUuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19--> --- <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-23 09:13:27 -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#9800