fix(deps): update dependency @sentry/nuxt to v9.13.0 #2393

Merged
group_2759636_bot_1c34751f7eccad09e089ac15ee7bd902 merged 1 commits from renovate/sentry-javascript-monorepo into main 2025-04-16 14:22:55 +00:00
group_2759636_bot_1c34751f7eccad09e089ac15ee7bd902 commented 2025-04-16 14:02:37 +00:00 (Migrated from gitlab.com)

This MR contains the following updates:

Package Type Update Change
@sentry/nuxt (source) dependencies minor 9.12.0 -> 9.13.0

Release Notes

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

v9.13.0

Compare Source

Important Changes
  • feat(node): Add support for winston logger (#​15983)

    Sentry is adding support for structured logging. In this release we've added support for sending logs to Sentry via the winston logger to the Sentry Node SDK (and SDKs that use the Node SDK under the hood like @sentry/nestjs). The Logging APIs in the Sentry SDK are still experimental and subject to change.

    const winston = require('winston');
    const Transport = require('winston-transport');
    
    const transport = Sentry.createSentryWinstonTransport(Transport);
    
    const logger = winston.createLogger({
      transports: [transport],
    });
    
  • feat(core): Add wrapMcpServerWithSentry to instrument MCP servers from @modelcontextprotocol/sdk (#​16032)

    The Sentry SDK now supports instrumenting MCP servers from the @modelcontextprotocol/sdk package. Compatible with versions ^1.9.0 of the @modelcontextprotocol/sdk package.

    import { McpServer } from '@​modelcontextprotocol/sdk/server/mcp.js';
    
    // Create an MCP server
    const server = new McpServer({
      name: 'Demo',
      version: '1.0.0',
    });
    
    // Use the instrumented server in your application
    const instrumentedServer = Sentry.wrapMcpServerWithSentry(server);
    
  • feat(core): Move console integration into core and add to cloudflare/vercel-edge (#​16024)

    Console instrumentation has been added to @sentry/cloudflare and @sentry/nextjs Edge Runtime and is enabled by default. Now calls to the console object will be captured as breadcrumbs for those SDKs.

  • feat(bun): Support new Bun.serve APIs (#​16035)

    Bun 1.2.6 and above have a new Bun.serve API, which the Bun SDK now supports. The SDK instruments the new routes object that can be used to define routes for the server.

    Thanks to @​Jarred-Sumner for helping us get this supported!

Other Changes
  • feat(browser): Warn on duplicate browserTracingIntegration (#​16042)
  • feat(core): Allow delayed sending with offline transport (#​15937)
  • feat(deps): Bump @​sentry/webpack-plugin from 3.2.4 to 3.3.1 (#​16057)
  • feat(vue): Apply stateTransformer to attachments in Pinia Plugin (#​16034)
  • fix(core): Run beforeSendLog after we process log (#​16019)
  • fix(nextjs): Don't show turbopack warning for newer Next.js canaries (#​16065)
  • fix(nextjs): Include patch version 0 for min supported 15.3.0 (#​16026)
  • fix(node): Ensure late init works with all integrations (#​16016)
  • fix(react-router): Pass unstable_sentryVitePluginOptions to cli instance (#​16033)
  • fix(serverless-aws): Overwrite root span name with GraphQL if set (#​16010)

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 MR is behind base branch, or you tick the rebase/retry checkbox.

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


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

This MR has been generated by Renovate Bot.

This MR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [@sentry/nuxt](https://github.com/getsentry/sentry-javascript/tree/master/packages/nuxt) ([source](https://github.com/getsentry/sentry-javascript)) | dependencies | minor | [`9.12.0` -> `9.13.0`](https://renovatebot.com/diffs/npm/@sentry%2fnuxt/9.12.0/9.13.0) | --- ### Release Notes <details> <summary>getsentry/sentry-javascript (@&#8203;sentry/nuxt)</summary> ### [`v9.13.0`](https://github.com/getsentry/sentry-javascript/blob/HEAD/CHANGELOG.md#9130) [Compare Source](https://github.com/getsentry/sentry-javascript/compare/9.12.0...9.13.0) ##### Important Changes - **feat(node): Add support for winston logger ([#&#8203;15983](https://github.com/getsentry/sentry-javascript/pull/15983))** Sentry is adding support for [structured logging](https://github.com/getsentry/sentry-javascript/discussions/15916). In this release we've added support for sending logs to Sentry via the [winston](https://github.com/winstonjs/winston) logger to the Sentry Node SDK (and SDKs that use the Node SDK under the hood like `@sentry/nestjs`). The Logging APIs in the Sentry SDK are still experimental and subject to change. ```js const winston = require('winston'); const Transport = require('winston-transport'); const transport = Sentry.createSentryWinstonTransport(Transport); const logger = winston.createLogger({ transports: [transport], }); ``` - **feat(core): Add `wrapMcpServerWithSentry` to instrument MCP servers from `@modelcontextprotocol/sdk` ([#&#8203;16032](https://github.com/getsentry/sentry-javascript/pull/16032))** The Sentry SDK now supports instrumenting MCP servers from the `@modelcontextprotocol/sdk` package. Compatible with versions `^1.9.0` of the `@modelcontextprotocol/sdk` package. ```js import { McpServer } from '@&#8203;modelcontextprotocol/sdk/server/mcp.js'; // Create an MCP server const server = new McpServer({ name: 'Demo', version: '1.0.0', }); // Use the instrumented server in your application const instrumentedServer = Sentry.wrapMcpServerWithSentry(server); ``` - **feat(core): Move console integration into core and add to cloudflare/vercel-edge ([#&#8203;16024](https://github.com/getsentry/sentry-javascript/pull/16024))** Console instrumentation has been added to `@sentry/cloudflare` and `@sentry/nextjs` Edge Runtime and is enabled by default. Now calls to the console object will be captured as breadcrumbs for those SDKs. - **feat(bun): Support new `Bun.serve` APIs ([#&#8203;16035](https://github.com/getsentry/sentry-javascript/pull/16035))** Bun `1.2.6` and above have a new `Bun.serve` API, which the Bun SDK now supports. The SDK instruments the new routes object that can be used to define routes for the server. Thanks to [@&#8203;Jarred-Sumner](https://github.com/Jarred-Sumner) for helping us get this supported! ##### Other Changes - feat(browser): Warn on duplicate `browserTracingIntegration` ([#&#8203;16042](https://github.com/getsentry/sentry-javascript/pull/16042)) - feat(core): Allow delayed sending with offline transport ([#&#8203;15937](https://github.com/getsentry/sentry-javascript/pull/15937)) - feat(deps): Bump [@&#8203;sentry/webpack-plugin](https://github.com/sentry/webpack-plugin) from 3.2.4 to 3.3.1 ([#&#8203;16057](https://github.com/getsentry/sentry-javascript/pull/16057)) - feat(vue): Apply stateTransformer to attachments in Pinia Plugin ([#&#8203;16034](https://github.com/getsentry/sentry-javascript/pull/16034)) - fix(core): Run `beforeSendLog` after we process log ([#&#8203;16019](https://github.com/getsentry/sentry-javascript/pull/16019)) - fix(nextjs): Don't show turbopack warning for newer Next.js canaries ([#&#8203;16065](https://github.com/getsentry/sentry-javascript/pull/16065)) - fix(nextjs): Include patch version 0 for min supported 15.3.0 ([#&#8203;16026](https://github.com/getsentry/sentry-javascript/pull/16026)) - fix(node): Ensure late init works with all integrations ([#&#8203;16016](https://github.com/getsentry/sentry-javascript/pull/16016)) - fix(react-router): Pass `unstable_sentryVitePluginOptions` to cli instance ([#&#8203;16033](https://github.com/getsentry/sentry-javascript/pull/16033)) - fix(serverless-aws): Overwrite root span name with GraphQL if set ([#&#8203;16010](https://github.com/getsentry/sentry-javascript/pull/16010)) </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 MR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this MR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this MR, check this box --- This MR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNDYuMCIsInVwZGF0ZWRJblZlciI6IjM5LjI0Ni4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
group_2759636_bot_1c34751f7eccad09e089ac15ee7bd902 commented 2025-04-16 14:02:39 +00:00 (Migrated from gitlab.com)

restored source branch renovate/sentry-javascript-monorepo

restored source branch `renovate/sentry-javascript-monorepo`
group_2759636_bot_1c34751f7eccad09e089ac15ee7bd902 commented 2025-04-16 14:02:41 +00:00 (Migrated from gitlab.com)

mentioned in issue #49

mentioned in issue #49
argoyle (Migrated from gitlab.com) merged commit into main 2025-04-16 14:22:55 +00:00
Sign in to join this conversation.