Skip to content

Commit e9135f3

Browse files
author
Luca Forstner
committed
test & lint
1 parent a817581 commit e9135f3

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

docs/migration/draft-v9-migration-guide.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
- Deprecated `AddRequestDataToEventOptions.transaction`. This option effectively doesn't do anything anymore, and will
88
be removed in v9.
99
- Deprecated `TransactionNamingScheme` type.
10+
- Deprecated `urlEncode`. No replacements.
1011

1112
## `@sentry/core`
1213

packages/core/test/lib/api.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ describe('API', () => {
1818
dsnPublicComponents,
1919
undefined,
2020
undefined,
21-
'https://sentry.io:1234/subpath/api/123/envelope/?sentry_key=abc&sentry_version=7',
21+
'https://sentry.io:1234/subpath/api/123/envelope/?sentry_version=7&sentry_key=abc',
2222
],
2323
['uses `tunnel` value when called with `tunnel` option', dsnPublicComponents, tunnel, undefined, tunnel],
2424
[
@@ -33,7 +33,7 @@ describe('API', () => {
3333
dsnPublicComponents,
3434
undefined,
3535
sdkInfo,
36-
'https://sentry.io:1234/subpath/api/123/envelope/?sentry_key=abc&sentry_version=7&sentry_client=sentry.javascript.browser%2F12.31.12',
36+
'https://sentry.io:1234/subpath/api/123/envelope/?sentry_version=7&sentry_key=abc&sentry_client=sentry.javascript.browser%2F12.31.12',
3737
],
3838
])(
3939
'%s',

packages/utils/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,7 @@ export {
149149
memoBuilder,
150150
arrayify,
151151
normalizeUrlToBase,
152+
// eslint-disable-next-line deprecation/deprecation
152153
urlEncode,
153154
// eslint-disable-next-line deprecation/deprecation
154155
extractPathForTransaction,

0 commit comments

Comments
 (0)