File tree 6 files changed +1
-17
lines changed
dev-packages/e2e-tests/test-applications/node-exports-test-app/scripts
google-cloud-serverless/src
6 files changed +1
-17
lines changed Original file line number Diff line number Diff line change @@ -50,8 +50,6 @@ const DEPENDENTS: Dependent[] = [
50
50
ignoreExports : [
51
51
// not supported in bun:
52
52
'NodeClient' ,
53
- // Bun doesn't emit the required diagnostics_channel events
54
- 'processThreadBreadcrumbIntegration' ,
55
53
'childProcessIntegration' ,
56
54
] ,
57
55
} ,
Original file line number Diff line number Diff line change @@ -97,8 +97,6 @@ export {
97
97
parameterize ,
98
98
postgresIntegration ,
99
99
prismaIntegration ,
100
- // eslint-disable-next-line deprecation/deprecation
101
- processThreadBreadcrumbIntegration ,
102
100
childProcessIntegration ,
103
101
redisIntegration ,
104
102
requestDataIntegration ,
Original file line number Diff line number Diff line change @@ -110,8 +110,6 @@ export {
110
110
setupNestErrorHandler ,
111
111
postgresIntegration ,
112
112
prismaIntegration ,
113
- // eslint-disable-next-line deprecation/deprecation
114
- processThreadBreadcrumbIntegration ,
115
113
childProcessIntegration ,
116
114
hapiIntegration ,
117
115
setupHapiErrorHandler ,
Original file line number Diff line number Diff line change @@ -123,8 +123,6 @@ export {
123
123
zodErrorsIntegration ,
124
124
profiler ,
125
125
amqplibIntegration ,
126
- // eslint-disable-next-line deprecation/deprecation
127
- processThreadBreadcrumbIntegration ,
128
126
childProcessIntegration ,
129
127
} from '@sentry/node' ;
130
128
Original file line number Diff line number Diff line change @@ -34,8 +34,7 @@ export { tediousIntegration } from './integrations/tracing/tedious';
34
34
export { genericPoolIntegration } from './integrations/tracing/genericPool' ;
35
35
export { dataloaderIntegration } from './integrations/tracing/dataloader' ;
36
36
export { amqplibIntegration } from './integrations/tracing/amqplib' ;
37
- // eslint-disable-next-line deprecation/deprecation
38
- export { processThreadBreadcrumbIntegration , childProcessIntegration } from './integrations/childProcess' ;
37
+ export { childProcessIntegration } from './integrations/childProcess' ;
39
38
40
39
export { SentryContextManager } from './otel/contextManager' ;
41
40
export { generateInstrumentOnce } from './otel/instrument' ;
Original file line number Diff line number Diff line change @@ -39,13 +39,6 @@ export const childProcessIntegration = defineIntegration((options: Options = {})
39
39
} ;
40
40
} ) ;
41
41
42
- /**
43
- * Capture breadcrumbs for child processes and worker threads.
44
- *
45
- * @deprecated Use `childProcessIntegration` integration instead. Functionally they are the same. `processThreadBreadcrumbIntegration` will be removed in the next major version.
46
- */
47
- export const processThreadBreadcrumbIntegration = childProcessIntegration ;
48
-
49
42
function captureChildProcessEvents ( child : ChildProcess , options : Options ) : void {
50
43
let hasExited = false ;
51
44
let data : Record < string , unknown > | undefined ;
You can’t perform that action at this time.
0 commit comments