File tree Expand file tree Collapse file tree 4 files changed +1
-12
lines changed
Expand file tree Collapse file tree 4 files changed +1
-12
lines changed Original file line number Diff line number Diff line change @@ -106,6 +106,7 @@ It will be removed in a future major version.
106106
107107- The ` getNumberOfUrlSegments ` method has been removed. There is no replacement.
108108- The ` validSeverityLevels ` export has been removed. There is no replacement.
109+ - The ` BAGGAGE_HEADER_NAME ` export has been removed. There is no replacement.
109110
110111### ` @sentry/nestjs `
111112
Original file line number Diff line number Diff line change @@ -4,11 +4,6 @@ import { DEBUG_BUILD } from './debug-build';
44import { isString } from './is' ;
55import { logger } from './logger' ;
66
7- /**
8- * @deprecated Use a `"baggage"` string directly
9- */
10- export const BAGGAGE_HEADER_NAME = 'baggage' ;
11-
127export const SENTRY_BAGGAGE_KEY_PREFIX = 'sentry-' ;
138
149export const SENTRY_BAGGAGE_KEY_PREFIX_REGEX = / ^ s e n t r y - / ;
Original file line number Diff line number Diff line change @@ -151,8 +151,6 @@ export {
151151} from './ratelimit' ;
152152export type { RateLimits } from './ratelimit' ;
153153export {
154- // eslint-disable-next-line deprecation/deprecation
155- BAGGAGE_HEADER_NAME ,
156154 MAX_BAGGAGE_STRING_LENGTH ,
157155 SENTRY_BAGGAGE_KEY_PREFIX ,
158156 SENTRY_BAGGAGE_KEY_PREFIX_REGEX ,
Original file line number Diff line number Diff line change 11/* eslint-disable max-lines */
22import {
3- BAGGAGE_HEADER_NAME as BAGGAGE_HEADER_NAME_imported ,
43 CONSOLE_LEVELS as CONSOLE_LEVELS_imported ,
54 DEFAULT_RETRY_AFTER as DEFAULT_RETRY_AFTER_imported ,
65 DEFAULT_USER_INCLUDES as DEFAULT_USER_INCLUDES_imported ,
@@ -634,10 +633,6 @@ export const extractRequestData = extractRequestData_imported;
634633// eslint-disable-next-line deprecation/deprecation
635634export const addRequestDataToEvent = addRequestDataToEvent_imported ;
636635
637- /** @deprecated Import from `@sentry/core` instead. */
638- // eslint-disable-next-line deprecation/deprecation
639- export const BAGGAGE_HEADER_NAME = BAGGAGE_HEADER_NAME_imported ;
640-
641636/** @deprecated Import from `@sentry/core` instead. */
642637export const getSanitizedUrlString = getSanitizedUrlString_imported ;
643638
You can’t perform that action at this time.
0 commit comments