Skip to content

Commit 725a548

Browse files
aryanvdeshLms24
andauthored
feat(node): Add missing vercelAIIntegration export (#15318)
Export the previously missing `vercelAIIntegration`. It's enabled by default but prior to this change, it couldn't be manually added due to it not being exported by the Node SDK. --------- Co-authored-by: Lukas Stracke <[email protected]>
1 parent 61f5fd5 commit 725a548

File tree

6 files changed

+7
-1
lines changed

6 files changed

+7
-1
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ A comprehensive migration guide outlining all changes for all the frameworks can
129129
- feat(gatsby): Preserve user-provided source map settings (#15006)
130130
- feat(nestjs): Remove `SentryTracingInterceptor`, `SentryGlobalGraphQLFilter`, `SentryGlobalGenericFilter` (#14761)
131131
- feat(nextjs): Directly forward `sourcemaps.disable` to webpack plugin (#15109)
132+
- feat(node): Add missing `vercelAIIntegration` export (#15318)
132133
- feat(node): Add `processSessionIntegration` (#15081)
133134
- feat(node): Capture exceptions from `worker_threads` (#15105)
134135
- 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
171172
- ref(svelte): Remove SvelteKit detection (#15313)
172173
- ref(sveltekit): Clean up sub-request check (#15251)
173174

174-
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!
175+
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!
175176

176177
## 9.0.0-alpha.2
177178

packages/astro/src/index.server.ts

+1
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ export {
118118
tediousIntegration,
119119
trpcMiddleware,
120120
updateSpanName,
121+
vercelAIIntegration,
121122
withActiveSpan,
122123
withIsolationScope,
123124
withMonitor,

packages/aws-serverless/src/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ export {
110110
zodErrorsIntegration,
111111
profiler,
112112
amqplibIntegration,
113+
vercelAIIntegration,
113114
} from '@sentry/node';
114115

115116
export {

packages/bun/src/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ export {
129129
zodErrorsIntegration,
130130
profiler,
131131
amqplibIntegration,
132+
vercelAIIntegration,
132133
} from '@sentry/node';
133134

134135
export {

packages/google-cloud-serverless/src/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ export {
110110
profiler,
111111
amqplibIntegration,
112112
childProcessIntegration,
113+
vercelAIIntegration,
113114
} from '@sentry/node';
114115

115116
export {

packages/node/src/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ export { tediousIntegration } from './integrations/tracing/tedious';
3232
export { genericPoolIntegration } from './integrations/tracing/genericPool';
3333
export { dataloaderIntegration } from './integrations/tracing/dataloader';
3434
export { amqplibIntegration } from './integrations/tracing/amqplib';
35+
export { vercelAIIntegration } from './integrations/tracing/vercelai';
3536
export { childProcessIntegration } from './integrations/childProcess';
3637

3738
export { SentryContextManager } from './otel/contextManager';

0 commit comments

Comments
 (0)