Skip to content

Commit 19fdc33

Browse files
committed
Get latest deps and fix missing type
1 parent ce8ed3f commit 19fdc33

8 files changed

Lines changed: 11 additions & 11 deletions

File tree

dev-packages/e2e-tests/test-applications/astro-7-orchestrion/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"mysql": "^2.18.1"
2525
},
2626
"devDependencies": {
27-
"@apm-js-collab/code-transformer-bundler-plugins": "^0.7.0"
27+
"@apm-js-collab/code-transformer-bundler-plugins": "^0.7.1"
2828
},
2929
"volta": {
3030
"node": "22.22.0",

dev-packages/e2e-tests/test-applications/nuxt-4-orchestrion/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"vue-router": "^5.1.0"
2828
},
2929
"devDependencies": {
30-
"@apm-js-collab/code-transformer-bundler-plugins": "^0.7.0",
30+
"@apm-js-collab/code-transformer-bundler-plugins": "^0.7.1",
3131
"@playwright/test": "~1.56.0",
3232
"@sentry-internal/test-utils": "link:../../../test-utils"
3333
},

dev-packages/e2e-tests/test-applications/sveltekit-2-orchestrion/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"mysql": "^2.18.1"
2525
},
2626
"devDependencies": {
27-
"@apm-js-collab/code-transformer-bundler-plugins": "^0.7.0",
27+
"@apm-js-collab/code-transformer-bundler-plugins": "^0.7.1",
2828
"@playwright/test": "~1.56.0",
2929
"@sentry-internal/test-utils": "link:../../../test-utils",
3030
"@sveltejs/adapter-auto": "^7.0.1",

packages/bun/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"access": "public"
5050
},
5151
"dependencies": {
52-
"@apm-js-collab/code-transformer-bundler-plugins": "^0.7.0",
52+
"@apm-js-collab/code-transformer-bundler-plugins": "^0.7.1",
5353
"@sentry/core": "10.66.0",
5454
"@sentry/node": "10.66.0",
5555
"@sentry/server-utils": "10.66.0"

packages/server-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
"access": "public"
117117
},
118118
"dependencies": {
119-
"@apm-js-collab/code-transformer-bundler-plugins": "^0.7.0",
119+
"@apm-js-collab/code-transformer-bundler-plugins": "^0.7.1",
120120
"@apm-js-collab/tracing-hooks": "^0.13.0",
121121
"@sentry/conventions": "^0.16.0",
122122
"@sentry/core": "10.66.0"

packages/server-utils/src/orchestrion/bundler/options.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { InstrumentationConfig } from '..';
1+
import type { InstrumentationConfig, CustomTransform } from '..';
22
import { SENTRY_INSTRUMENTATIONS } from '../config';
33
import type { CodeTransformerPluginOptions } from '@apm-js-collab/code-transformer-bundler-plugins/core';
44

packages/server-utils/src/orchestrion/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export type { IORedisChannelIntegrationOptions, IORedisResponseHook } from '../i
5151
export type { PostgresJsChannelIntegrationOptions } from '../integrations/tracing-channel/postgres-js';
5252
export { redisChannelIntegration } from '../integrations/tracing-channel/redis';
5353
export type { RedisChannelIntegrationOptions, RedisResponseHook } from '../integrations/tracing-channel/redis';
54-
export type { InstrumentationConfig } from '@apm-js-collab/code-transformer-bundler-plugins/core';
54+
export type { InstrumentationConfig, CustomTransform } from '@apm-js-collab/code-transformer-bundler-plugins/core';
5555

5656
// The structural `graphql` package types are the single source of truth shared with `@sentry/node`'s
5757
// vendored OTel graphql instrumentation (re-exported from here so the two can't drift).

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -404,10 +404,10 @@
404404
dependencies:
405405
json-schema-to-ts "^3.1.1"
406406

407-
"@apm-js-collab/code-transformer-bundler-plugins@^0.7.0":
408-
version "0.7.0"
409-
resolved "https://registry.yarnpkg.com/@apm-js-collab/code-transformer-bundler-plugins/-/code-transformer-bundler-plugins-0.7.0.tgz#499cb4730570e4f4bc3a1e77739dc1fb17839a7a"
410-
integrity sha512-huqdbQqE1lTUM2uud/qBY664o5qGPLrI/3ipGRNcTP37otpaVOb6omfIU/8QyR4aObhkpgnFl0ywtoAJZ+y2jw==
407+
"@apm-js-collab/code-transformer-bundler-plugins@^0.7.1":
408+
version "0.7.1"
409+
resolved "https://registry.yarnpkg.com/@apm-js-collab/code-transformer-bundler-plugins/-/code-transformer-bundler-plugins-0.7.1.tgz#f9e7128b87cdabb50e91f2ce3a5c48505b511c41"
410+
integrity sha512-Yidf5GOl60db80UxUtNdKK3pnY7obU/gs0xOfA0SCdnvVLMCvfYIer/egC3TqpPiT0Jg22eg3RlzcO+zKfPMcA==
411411
dependencies:
412412
"@apm-js-collab/code-transformer" "^0.18.0"
413413
es-module-lexer "^2.1.0"

0 commit comments

Comments
 (0)