diff --git a/CHANGELOG.md b/CHANGELOG.md index 18913af34f9b..9863d05c2b8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -129,6 +129,7 @@ A comprehensive migration guide outlining all changes for all the frameworks can - feat(gatsby): Preserve user-provided source map settings (#15006) - feat(nestjs): Remove `SentryTracingInterceptor`, `SentryGlobalGraphQLFilter`, `SentryGlobalGenericFilter` (#14761) - feat(nextjs): Directly forward `sourcemaps.disable` to webpack plugin (#15109) +- feat(node): Add missing `vercelAIIntegration` export (#15318) - feat(node): Add `processSessionIntegration` (#15081) - feat(node): Capture exceptions from `worker_threads` (#15105) - feat(nuxt): add `silent`, `errorHandler`, `release` to `SourceMapsOptions` (#15246) @@ -171,7 +172,7 @@ A comprehensive migration guide outlining all changes for all the frameworks can - ref(svelte): Remove SvelteKit detection (#15313) - ref(sveltekit): Clean up sub-request check (#15251) -Work in this release was contributed by @tjhiggins, @chris-basebone, @GrizliK1988, @davidturissini, @nwalters512, @aloisklink, @arturovt, @benjick, @maximepvrt, @mstrokin, @kunal-511, @jahands, @jrandolf, @tannerlinsley, @Zen-cronic, @maxmaxme and @nathankleyn. Thank you for your contributions! +Work in this release was contributed by @aloisklink, @arturovt, @aryanvdesh, @benjick, @chris-basebone, @davidturissini, @GrizliK1988, @jahands, @jrandolf, @kunal-511, @maximepvrt, @maxmaxme, @mstrokin, @nathankleyn, @nwalters512, @tannerlinsley, @tjhiggins, and @Zen-cronic. Thank you for your contributions! ## 9.0.0-alpha.2 diff --git a/packages/astro/src/index.server.ts b/packages/astro/src/index.server.ts index 57abd7efede3..c7b997c2cb92 100644 --- a/packages/astro/src/index.server.ts +++ b/packages/astro/src/index.server.ts @@ -118,6 +118,7 @@ export { tediousIntegration, trpcMiddleware, updateSpanName, + vercelAIIntegration, withActiveSpan, withIsolationScope, withMonitor, diff --git a/packages/aws-serverless/src/index.ts b/packages/aws-serverless/src/index.ts index 60747de09dd5..2cd5ee5661ec 100644 --- a/packages/aws-serverless/src/index.ts +++ b/packages/aws-serverless/src/index.ts @@ -110,6 +110,7 @@ export { zodErrorsIntegration, profiler, amqplibIntegration, + vercelAIIntegration, } from '@sentry/node'; export { diff --git a/packages/bun/src/index.ts b/packages/bun/src/index.ts index 8617030f12d9..770cf2eb2ebe 100644 --- a/packages/bun/src/index.ts +++ b/packages/bun/src/index.ts @@ -129,6 +129,7 @@ export { zodErrorsIntegration, profiler, amqplibIntegration, + vercelAIIntegration, } from '@sentry/node'; export { diff --git a/packages/google-cloud-serverless/src/index.ts b/packages/google-cloud-serverless/src/index.ts index dd7558351911..4d7c23ecf87e 100644 --- a/packages/google-cloud-serverless/src/index.ts +++ b/packages/google-cloud-serverless/src/index.ts @@ -110,6 +110,7 @@ export { profiler, amqplibIntegration, childProcessIntegration, + vercelAIIntegration, } from '@sentry/node'; export { diff --git a/packages/node/src/index.ts b/packages/node/src/index.ts index 6493e0280b3b..2ebb7445a817 100644 --- a/packages/node/src/index.ts +++ b/packages/node/src/index.ts @@ -32,6 +32,7 @@ export { tediousIntegration } from './integrations/tracing/tedious'; export { genericPoolIntegration } from './integrations/tracing/genericPool'; export { dataloaderIntegration } from './integrations/tracing/dataloader'; export { amqplibIntegration } from './integrations/tracing/amqplib'; +export { vercelAIIntegration } from './integrations/tracing/vercelai'; export { childProcessIntegration } from './integrations/childProcess'; export { SentryContextManager } from './otel/contextManager';