Skip to content

Commit f5f595e

Browse files
committed
use node instead of node-experimental
1 parent d53f922 commit f5f595e

File tree

7 files changed

+8
-10
lines changed

7 files changed

+8
-10
lines changed

packages/google-cloud/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
},
4444
"dependencies": {
4545
"@sentry/core": "8.0.0-alpha.2",
46-
"@sentry/node-experimental": "8.0.0-alpha.2",
46+
"@sentry/node": "8.0.0-alpha.2",
4747
"@sentry/types": "8.0.0-alpha.2",
4848
"@sentry/utils": "8.0.0-alpha.2",
4949
"@types/express": "^4.17.14"

packages/google-cloud/src/gcpfunction/cloud_events.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN, SEMANTIC_ATTRIBUTE_SENTRY_SOURCE, handleCallbackErrors } from '@sentry/core';
2-
import { captureException, flush, getCurrentScope, startSpanManual } from '@sentry/node-experimental';
2+
import { captureException, flush, getCurrentScope, startSpanManual } from '@sentry/node';
33
import { logger } from '@sentry/utils';
44

55
import { DEBUG_BUILD } from '../debug-build';

packages/google-cloud/src/gcpfunction/events.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN, SEMANTIC_ATTRIBUTE_SENTRY_SOURCE, handleCallbackErrors } from '@sentry/core';
2-
import { captureException, flush, getCurrentScope, startSpanManual } from '@sentry/node-experimental';
2+
import { captureException, flush, getCurrentScope, startSpanManual } from '@sentry/node';
33
import { logger } from '@sentry/utils';
44

55
import { DEBUG_BUILD } from '../debug-build';

packages/google-cloud/src/gcpfunction/http.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@ import {
55
handleCallbackErrors,
66
setHttpStatus,
77
} from '@sentry/core';
8-
import { continueTrace, startSpanManual } from '@sentry/node-experimental';
9-
import { getCurrentScope } from '@sentry/node-experimental';
10-
import { captureException, flush } from '@sentry/node-experimental';
8+
import { captureException, continueTrace, flush, getCurrentScope, startSpanManual } from '@sentry/node';
119
import { isString, logger, stripUrlQueryAndFragment } from '@sentry/utils';
1210

1311
import { DEBUG_BUILD } from '../debug-build';

packages/google-cloud/src/integrations/google-cloud-grpc.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { EventEmitter } from 'events';
22
import { SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN, defineIntegration, getClient } from '@sentry/core';
3-
import { startInactiveSpan } from '@sentry/node-experimental';
3+
import { startInactiveSpan } from '@sentry/node';
44
import type { Client, IntegrationFn } from '@sentry/types';
55
import { fill } from '@sentry/utils';
66

packages/google-cloud/src/integrations/google-cloud-http.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type * as common from '@google-cloud/common';
22
import { SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN, SentryNonRecordingSpan, defineIntegration, getClient } from '@sentry/core';
3-
import { startInactiveSpan } from '@sentry/node-experimental';
3+
import { startInactiveSpan } from '@sentry/node';
44
import type { Client, IntegrationFn } from '@sentry/types';
55
import { fill } from '@sentry/utils';
66

packages/google-cloud/src/sdk.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import type { NodeOptions } from '@sentry/node-experimental';
1+
import type { NodeOptions } from '@sentry/node';
22
import {
33
SDK_VERSION,
44
getDefaultIntegrations as getDefaultNodeIntegrations,
55
init as initNode,
6-
} from '@sentry/node-experimental';
6+
} from '@sentry/node';
77
import type { Integration, Options, SdkMetadata } from '@sentry/types';
88

99
import { googleCloudGrpcIntegration } from './integrations/google-cloud-grpc';

0 commit comments

Comments
 (0)