[PR #1039] [MERGED] fix(deps): update dependency @sentry/vue to v9.33.0 #3099

Closed
opened 2026-03-22 14:31:11 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

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

Base: mainHead: renovate/sentry-javascript-monorepo


📝 Commits (1)

  • ed107ed fix(deps): update dependency @sentry/vue to v9.33.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 Adoption Passing Confidence
@sentry/vue (source) 9.32.0 -> 9.33.0 age adoption passing confidence

Release Notes

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

v9.33.0

Compare Source

Important Changes
  • feat: Add opt-in vercelAiIntegration to cloudflare & vercel-edge (#​16732)

The vercelAiIntegration is now available as opt-in for the Cloudflare and the Next.js SDK for Vercel Edge.
To use it, add the integration in Sentry.init

Sentry.init({
  tracesSampleRate: 1.0,
  integrations: [Sentry.vercelAIIntegration()],
});

And enable telemetry for Vercel AI calls

const result = await generateText({
  model: openai('gpt-4o'),
  experimental_telemetry: {
    isEnabled: true,
  },
});
  • feat(node): Add postgresjs instrumentation (#​16665)

The Node.js SDK now includes instrumentation for Postgres.js.

  • feat(node): Use diagnostics channel for Fastify v5 error handling (#​16715)

If you're on Fastify v5, you no longer need to call setupFastifyErrorHandler. It is done automatically by the node SDK. Older versions still rely on calling setupFastifyErrorHandler.

Other Changes
  • feat(cloudflare): Allow interop with OpenTelemetry emitted spans (#​16714)
  • feat(cloudflare): Flush after waitUntil (#​16681)
  • fix(nextjs): Remove ai from default server external packages (#​16736)

Work in this release was contributed by @​0xbad0c0d3. 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/1039 **Author:** [@renovate[bot]](https://github.com/apps/renovate) **Created:** 6/27/2025 **Status:** ✅ Merged **Merged:** 6/27/2025 **Merged by:** [@kolaente](https://github.com/kolaente) **Base:** `main` ← **Head:** `renovate/sentry-javascript-monorepo` --- ### 📝 Commits (1) - [`ed107ed`](https://github.com/go-vikunja/vikunja/commit/ed107ed1d4ac07f8ab378b349102fd06b1d6fcbd) fix(deps): update dependency @sentry/vue to v9.33.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 | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@sentry/vue](https://redirect.github.com/getsentry/sentry-javascript/tree/master/packages/vue) ([source](https://redirect.github.com/getsentry/sentry-javascript)) | [`9.32.0` -> `9.33.0`](https://renovatebot.com/diffs/npm/@sentry%2fvue/9.32.0/9.33.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@sentry%2fvue/9.33.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@sentry%2fvue/9.33.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@sentry%2fvue/9.32.0/9.33.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@sentry%2fvue/9.32.0/9.33.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>getsentry/sentry-javascript (@&#8203;sentry/vue)</summary> ### [`v9.33.0`](https://redirect.github.com/getsentry/sentry-javascript/blob/HEAD/CHANGELOG.md#9330) [Compare Source](https://redirect.github.com/getsentry/sentry-javascript/compare/9.32.0...9.33.0) ##### Important Changes - **feat: Add opt-in `vercelAiIntegration` to cloudflare & vercel-edge ([#&#8203;16732](https://redirect.github.com/getsentry/sentry-javascript/pull/16732))** The `vercelAiIntegration` is now available as opt-in for the Cloudflare and the Next.js SDK for Vercel Edge. To use it, add the integration in `Sentry.init` ```js Sentry.init({ tracesSampleRate: 1.0, integrations: [Sentry.vercelAIIntegration()], }); ``` And enable telemetry for Vercel AI calls ```js const result = await generateText({ model: openai('gpt-4o'), experimental_telemetry: { isEnabled: true, }, }); ``` - **feat(node): Add postgresjs instrumentation ([#&#8203;16665](https://redirect.github.com/getsentry/sentry-javascript/pull/16665))** The Node.js SDK now includes instrumentation for [Postgres.js](https://www.npmjs.com/package/postgres). - **feat(node): Use diagnostics channel for Fastify v5 error handling ([#&#8203;16715](https://redirect.github.com/getsentry/sentry-javascript/pull/16715))** If you're on Fastify v5, you no longer need to call `setupFastifyErrorHandler`. It is done automatically by the node SDK. Older versions still rely on calling `setupFastifyErrorHandler`. ##### Other Changes - feat(cloudflare): Allow interop with OpenTelemetry emitted spans ([#&#8203;16714](https://redirect.github.com/getsentry/sentry-javascript/pull/16714)) - feat(cloudflare): Flush after `waitUntil` ([#&#8203;16681](https://redirect.github.com/getsentry/sentry-javascript/pull/16681)) - fix(nextjs): Remove `ai` from default server external packages ([#&#8203;16736](https://redirect.github.com/getsentry/sentry-javascript/pull/16736)) Work in this release was contributed by [@&#8203;0xbad0c0d3](https://redirect.github.com/0xbad0c0d3). 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:eyJjcmVhdGVkSW5WZXIiOiI0MC42Mi4xIiwidXBkYXRlZEluVmVyIjoiNDAuNjIuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19--> --- <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-03-22 14:31:11 -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#3099