File tree 10 files changed +1
-24
lines changed
10 files changed +1
-24
lines changed Original file line number Diff line number Diff line change @@ -131,6 +131,7 @@ Sentry.init({
131
131
- The ` flatten ` export has been removed. There is no replacement.
132
132
- The ` urlEncode ` method has been removed. There is no replacement.
133
133
- The ` getDomElement ` method has been removed. There is no replacement.
134
+ - The ` Request ` type has been removed. Use ` RequestEventData ` type instead.
134
135
135
136
### ` @sentry/browser `
136
137
Original file line number Diff line number Diff line change 1
1
export type {
2
2
Breadcrumb ,
3
3
BreadcrumbHint ,
4
- // eslint-disable-next-line deprecation/deprecation
5
- Request ,
6
4
RequestEventData ,
7
5
SdkInfo ,
8
6
Event ,
Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ export type {
2
2
Breadcrumb ,
3
3
BreadcrumbHint ,
4
4
PolymorphicRequest ,
5
- // eslint-disable-next-line deprecation/deprecation
6
- Request ,
7
5
RequestEventData ,
8
6
SdkInfo ,
9
7
Event ,
Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ export type {
2
2
Breadcrumb ,
3
3
BreadcrumbHint ,
4
4
PolymorphicRequest ,
5
- // eslint-disable-next-line deprecation/deprecation
6
- Request ,
7
5
RequestEventData ,
8
6
SdkInfo ,
9
7
Event ,
Original file line number Diff line number Diff line change @@ -90,8 +90,6 @@ export type {
90
90
export type {
91
91
QueryParams ,
92
92
RequestEventData ,
93
- // eslint-disable-next-line deprecation/deprecation
94
- Request ,
95
93
SanitizedRequestData ,
96
94
} from './request' ;
97
95
export type { Runtime } from './runtime' ;
Original file line number Diff line number Diff line change @@ -11,12 +11,6 @@ export interface RequestEventData {
11
11
headers ?: { [ key : string ] : string } ;
12
12
}
13
13
14
- /**
15
- * Request data included in an event as sent to Sentry.
16
- * @deprecated : This type will be removed in v9. Use `RequestEventData` instead.
17
- */
18
- export type Request = RequestEventData ;
19
-
20
14
export type QueryParams = string | { [ key : string ] : string } | Array < [ string , string ] > ;
21
15
22
16
/**
Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ export type {
2
2
Breadcrumb ,
3
3
BreadcrumbHint ,
4
4
PolymorphicRequest ,
5
- // eslint-disable-next-line deprecation/deprecation
6
- Request ,
7
5
RequestEventData ,
8
6
SdkInfo ,
9
7
Event ,
Original file line number Diff line number Diff line change @@ -138,8 +138,6 @@ export type {
138
138
Breadcrumb ,
139
139
BreadcrumbHint ,
140
140
PolymorphicRequest ,
141
- // eslint-disable-next-line deprecation/deprecation
142
- Request ,
143
141
RequestEventData ,
144
142
SdkInfo ,
145
143
Event ,
Original file line number Diff line number Diff line change @@ -107,7 +107,6 @@ import type {
107
107
ReplayEvent as ReplayEvent_imported ,
108
108
ReplayRecordingData as ReplayRecordingData_imported ,
109
109
ReplayRecordingMode as ReplayRecordingMode_imported ,
110
- Request as Request_imported ,
111
110
RequestEventData as RequestEventData_imported ,
112
111
Runtime as Runtime_imported ,
113
112
SamplingContext as SamplingContext_imported ,
@@ -379,9 +378,6 @@ export type QueryParams = QueryParams_imported;
379
378
/** @deprecated This type has been moved to `@sentry/core`. */
380
379
export type RequestEventData = RequestEventData_imported ;
381
380
/** @deprecated This type has been moved to `@sentry/core`. */
382
- // eslint-disable-next-line deprecation/deprecation
383
- export type Request = Request_imported ;
384
- /** @deprecated This type has been moved to `@sentry/core`. */
385
381
export type SanitizedRequestData = SanitizedRequestData_imported ;
386
382
/** @deprecated This type has been moved to `@sentry/core`. */
387
383
export type Runtime = Runtime_imported ;
Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ export type {
2
2
Breadcrumb ,
3
3
BreadcrumbHint ,
4
4
PolymorphicRequest ,
5
- // eslint-disable-next-line deprecation/deprecation
6
- Request ,
7
5
RequestEventData ,
8
6
SdkInfo ,
9
7
Event ,
You can’t perform that action at this time.
0 commit comments