File tree Expand file tree Collapse file tree 3 files changed +3
-11
lines changed
packages/core/src/utils-hoist Expand file tree Collapse file tree 3 files changed +3
-11
lines changed Original file line number Diff line number Diff line change @@ -142,6 +142,7 @@ Sentry.init({
142
142
- The ` urlEncode ` method has been removed. There is no replacement.
143
143
- The ` getDomElement ` method has been removed. There is no replacement.
144
144
- The ` Request ` type has been removed. Use ` RequestEventData ` type instead.
145
+ - The ` TransactionNamingScheme ` type has been removed. There is no replacement.
145
146
- The ` memoBuilder ` method has been removed. There is no replacement.
146
147
147
148
### ` @sentry/browser `
Original file line number Diff line number Diff line change @@ -80,11 +80,7 @@ export {
80
80
extractQueryParamsFromUrl ,
81
81
headersToDict ,
82
82
} from './requestdata' ;
83
- export type {
84
- AddRequestDataToEventOptions ,
85
- // eslint-disable-next-line deprecation/deprecation
86
- TransactionNamingScheme ,
87
- } from './requestdata' ;
83
+ export type { AddRequestDataToEventOptions } from './requestdata' ;
88
84
89
85
export { severityLevelFromString } from './severity' ;
90
86
export {
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ export type AddRequestDataToEventOptions = {
37
37
request ?: boolean | Array < ( typeof DEFAULT_REQUEST_INCLUDES ) [ number ] > ;
38
38
/** @deprecated This option will be removed in v9. It does not do anything anymore, the `transcation` is set in other places. */
39
39
// eslint-disable-next-line deprecation/deprecation
40
- transaction ?: boolean | TransactionNamingScheme ;
40
+ transaction ?: boolean | 'path' | 'methodPath' | 'handler' ;
41
41
user ?: boolean | Array < ( typeof DEFAULT_USER_INCLUDES ) [ number ] > ;
42
42
} ;
43
43
@@ -54,11 +54,6 @@ export type AddRequestDataToEventOptions = {
54
54
} ;
55
55
} ;
56
56
57
- /**
58
- * @deprecated This type will be removed in v9. It is not in use anymore.
59
- */
60
- export type TransactionNamingScheme = 'path' | 'methodPath' | 'handler' ;
61
-
62
57
/**
63
58
* Extracts a complete and parameterized path from the request object and uses it to construct transaction name.
64
59
* If the parameterized transaction name cannot be extracted, we fall back to the raw URL.
You can’t perform that action at this time.
0 commit comments