File tree Expand file tree Collapse file tree 14 files changed +16
-16
lines changed Expand file tree Collapse file tree 14 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ export function getDefaultIntegrations(_options: BrowserOptions = {}): Integrati
32
32
// - https://github.com/getsentry/sentry-javascript/issues/5417#issuecomment-1453407097
33
33
// - https://github.com/getsentry/sentry-javascript/issues/2744
34
34
return [
35
- // TODO(v10 ): Replace with `eventFiltersIntegration` once we remove the deprecated `inboundFiltersIntegration`
35
+ // TODO(v11 ): Replace with `eventFiltersIntegration` once we remove the deprecated `inboundFiltersIntegration`
36
36
// eslint-disable-next-line deprecation/deprecation
37
37
inboundFiltersIntegration ( ) ,
38
38
functionToStringIntegration ( ) ,
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ const _breadcrumbsIntegration = ((options: Partial<BreadcrumbsOptions> = {}) =>
73
73
return {
74
74
name : INTEGRATION_NAME ,
75
75
setup ( client ) {
76
- // TODO(v10 ): Remove this functionality and use `consoleIntegration` from @sentry/core instead.
76
+ // TODO(v11 ): Remove this functionality and use `consoleIntegration` from @sentry/core instead.
77
77
if ( _options . console ) {
78
78
addConsoleInstrumentationHandler ( _getConsoleBreadcrumbHandler ( client ) ) ;
79
79
}
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ export function getDefaultIntegrations(_options: Options): Integration[] {
26
26
* `getDefaultIntegrations` but with an adjusted set of integrations.
27
27
*/
28
28
return [
29
- // TODO(v10 ): Replace with `eventFiltersIntegration` once we remove the deprecated `inboundFiltersIntegration`
29
+ // TODO(v11 ): Replace with `eventFiltersIntegration` once we remove the deprecated `inboundFiltersIntegration`
30
30
// eslint-disable-next-line deprecation/deprecation
31
31
inboundFiltersIntegration ( ) ,
32
32
functionToStringIntegration ( ) ,
Original file line number Diff line number Diff line change @@ -193,7 +193,7 @@ export function addPreviousTraceSpanLink(
193
193
194
194
// TODO: Remove this once EAP can store span links. We currently only set this attribute so that we
195
195
// can obtain the previous trace information from the EAP store. Long-term, EAP will handle
196
- // span links and then we should remove this again. Also throwing in a TODO(v10 ), to remind us
196
+ // span links and then we should remove this again. Also throwing in a TODO(v11 ), to remind us
197
197
// to check this at v10 time :)
198
198
span . setAttribute (
199
199
PREVIOUS_TRACE_TMP_SPAN_ATTRIBUTE ,
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ export function getDefaultIntegrations(_options: Options): Integration[] {
30
30
// We return a copy of the defaultIntegrations here to avoid mutating this
31
31
return [
32
32
// Common
33
- // TODO(v10 ): Replace with eventFiltersIntegration once we remove the deprecated `inboundFiltersIntegration`
33
+ // TODO(v11 ): Replace with eventFiltersIntegration once we remove the deprecated `inboundFiltersIntegration`
34
34
// eslint-disable-next-line deprecation/deprecation
35
35
inboundFiltersIntegration ( ) ,
36
36
functionToStringIntegration ( ) ,
Original file line number Diff line number Diff line change @@ -25,13 +25,13 @@ export function getDefaultIntegrations(options: CloudflareOptions): Integration[
25
25
// The Dedupe integration should not be used in workflows because we want to
26
26
// capture all step failures, even if they are the same error.
27
27
...( options . enableDedupe === false ? [ ] : [ dedupeIntegration ( ) ] ) ,
28
- // TODO(v10 ): Replace with `eventFiltersIntegration` once we remove the deprecated `inboundFiltersIntegration`
28
+ // TODO(v11 ): Replace with `eventFiltersIntegration` once we remove the deprecated `inboundFiltersIntegration`
29
29
// eslint-disable-next-line deprecation/deprecation
30
30
inboundFiltersIntegration ( ) ,
31
31
functionToStringIntegration ( ) ,
32
32
linkedErrorsIntegration ( ) ,
33
33
fetchIntegration ( ) ,
34
- // TODO(v10 ): the `include` object should be defined directly in the integration based on `sendDefaultPii`
34
+ // TODO(v11 ): the `include` object should be defined directly in the integration based on `sendDefaultPii`
35
35
requestDataIntegration ( sendDefaultPii ? undefined : { include : { cookies : false } } ) ,
36
36
consoleIntegration ( ) ,
37
37
] ;
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ type RequestDataIntegrationOptions = {
21
21
include ?: RequestDataIncludeOptions ;
22
22
} ;
23
23
24
- // TODO(v10 ): Change defaults based on `sendDefaultPii`
24
+ // TODO(v11 ): Change defaults based on `sendDefaultPii`
25
25
const DEFAULT_INCLUDE : RequestDataIncludeOptions = {
26
26
cookies : true ,
27
27
data : true ,
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ const _breadcrumbsIntegration = ((options: Partial<BreadcrumbsOptions> = {}) =>
42
42
return {
43
43
name : INTEGRATION_NAME ,
44
44
setup ( client ) {
45
- // TODO(v10 ): Remove this functionality and use `consoleIntegration` from @sentry/core instead.
45
+ // TODO(v11 ): Remove this functionality and use `consoleIntegration` from @sentry/core instead.
46
46
if ( _options . console ) {
47
47
addConsoleInstrumentationHandler ( _getConsoleBreadcrumbHandler ( client ) ) ;
48
48
}
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ export function getDefaultIntegrations(_options: Options): Integration[] {
24
24
// We return a copy of the defaultIntegrations here to avoid mutating this
25
25
return [
26
26
// Common
27
- // TODO(v10 ): Replace with `eventFiltersIntegration` once we remove the deprecated `inboundFiltersIntegration`
27
+ // TODO(v11 ): Replace with `eventFiltersIntegration` once we remove the deprecated `inboundFiltersIntegration`
28
28
// eslint-disable-next-line deprecation/deprecation
29
29
inboundFiltersIntegration ( ) ,
30
30
functionToStringIntegration ( ) ,
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ const _nodeContextIntegration = ((options: ContextOptions = {}) => {
61
61
62
62
const updatedContext = _updateContext ( await cachedContext ) ;
63
63
64
- // TODO(v10 ): conditional with `sendDefaultPii` here?
64
+ // TODO(v11 ): conditional with `sendDefaultPii` here?
65
65
event . contexts = {
66
66
...event . contexts ,
67
67
app : { ...updatedContext . app , ...event . contexts ?. app } ,
You can’t perform that action at this time.
0 commit comments