Skip to content

Commit b9261fa

Browse files
Lms24aryanvdesh
andauthored
feat(v8/node): Add missing vercelAIIntegration export (#15339)
--------- Co-authored-by: Aryan Deshpande <[email protected]>
1 parent 6305a0c commit b9261fa

File tree

6 files changed

+7
-0
lines changed

6 files changed

+7
-0
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
- "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott
1212

13+
Work in this release was contributed by @aryanvdesh. Thank you for your contribution!
14+
1315
## 8.54.0
1416

1517
- feat(v8/deps): Upgrade all OpenTelemetry dependencies ([#15098](https://github.com/getsentry/sentry-javascript/pull/15098))

packages/astro/src/index.server.ts

+1
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ export {
139139
tediousIntegration,
140140
trpcMiddleware,
141141
updateSpanName,
142+
vercelAIIntegration,
142143
withActiveSpan,
143144
withIsolationScope,
144145
withMonitor,

packages/aws-serverless/src/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ export {
127127
zodErrorsIntegration,
128128
profiler,
129129
amqplibIntegration,
130+
vercelAIIntegration,
130131
} from '@sentry/node';
131132

132133
export {

packages/bun/src/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ export {
147147
zodErrorsIntegration,
148148
profiler,
149149
amqplibIntegration,
150+
vercelAIIntegration,
150151
} from '@sentry/node';
151152

152153
export {

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

+1
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ export {
127127
// eslint-disable-next-line deprecation/deprecation
128128
processThreadBreadcrumbIntegration,
129129
childProcessIntegration,
130+
vercelAIIntegration,
130131
} from '@sentry/node';
131132

132133
export {

packages/node/src/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ export { dataloaderIntegration } from './integrations/tracing/dataloader';
3636
export { amqplibIntegration } from './integrations/tracing/amqplib';
3737
// eslint-disable-next-line deprecation/deprecation
3838
export { processThreadBreadcrumbIntegration, childProcessIntegration } from './integrations/childProcess';
39+
export { vercelAIIntegration } from './integrations/tracing/vercelai';
3940

4041
export { SentryContextManager } from './otel/contextManager';
4142
export { generateInstrumentOnce } from './otel/instrument';

0 commit comments

Comments
 (0)