Skip to content

Commit 4576c83

Browse files
github-actions[bot]web-flowkrystofwoldrich
authored
chore(deps): update JavaScript SDK to v7.73.0 (#3297)
Co-authored-by: GitHub <[email protected]> Co-authored-by: Krystof Woldrich <[email protected]>
1 parent 0ebefdf commit 4576c83

File tree

4 files changed

+98
-85
lines changed

4 files changed

+98
-85
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,9 @@
6565
- Bump Android SDK from v6.29.0 to v6.30.0 ([#3309](https://github.com/getsentry/sentry-react-native/pull/3309))
6666
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#6300)
6767
- [diff](https://github.com/getsentry/sentry-java/compare/6.29.0...6.30.0)
68+
- Bump JavaScript SDK from v7.69.0 to v7.73.0 ([#3297](https://github.com/getsentry/sentry-react-native/pull/3297))
69+
- [changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md#7730)
70+
- [diff](https://github.com/getsentry/sentry-javascript/compare/7.69.0...7.73.0)
6871

6972
## 5.10.0
7073

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -58,18 +58,18 @@
5858
"react-native": ">=0.65.0"
5959
},
6060
"dependencies": {
61-
"@sentry/browser": "7.69.0",
61+
"@sentry/browser": "7.73.0",
6262
"@sentry/cli": "2.21.2",
63-
"@sentry/core": "7.69.0",
64-
"@sentry/hub": "7.69.0",
65-
"@sentry/integrations": "7.69.0",
66-
"@sentry/react": "7.69.0",
67-
"@sentry/types": "7.69.0",
68-
"@sentry/utils": "7.69.0"
63+
"@sentry/core": "7.73.0",
64+
"@sentry/hub": "7.73.0",
65+
"@sentry/integrations": "7.73.0",
66+
"@sentry/react": "7.73.0",
67+
"@sentry/types": "7.73.0",
68+
"@sentry/utils": "7.73.0"
6969
},
7070
"devDependencies": {
71-
"@sentry-internal/eslint-config-sdk": "7.69.0",
72-
"@sentry-internal/eslint-plugin-sdk": "7.69.0",
71+
"@sentry-internal/eslint-config-sdk": "7.73.0",
72+
"@sentry-internal/eslint-plugin-sdk": "7.73.0",
7373
"@sentry/typescript": "^5.20.1",
7474
"@sentry/wizard": "3.13.0",
7575
"@types/jest": "^29.5.3",

test/tracing/reactnativetracing.test.ts

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,17 @@ const getMockScope = () => {
7474
};
7575

7676
const getMockHub = () => {
77-
const mockHub = new Hub(new BrowserClient({ tracesSampleRate: 1 } as BrowserClientOptions));
77+
const mockHub = new Hub(
78+
new BrowserClient({
79+
tracesSampleRate: 1,
80+
integrations: [],
81+
transport: () => ({
82+
send: jest.fn(),
83+
flush: jest.fn(),
84+
}),
85+
stackParser: () => [],
86+
}),
87+
);
7888
const mockScope = getMockScope();
7989

8090
// eslint-disable-next-line @typescript-eslint/no-explicit-any
@@ -85,7 +95,6 @@ const getMockHub = () => {
8595
return mockHub;
8696
};
8797

88-
import type { BrowserClientOptions } from '@sentry/browser/types/client';
8998
import type { Scope } from '@sentry/types';
9099
import type { AppState, AppStateStatus } from 'react-native';
91100

yarn.lock

Lines changed: 75 additions & 74 deletions
Original file line numberDiff line numberDiff line change
@@ -1939,13 +1939,13 @@
19391939
invariant "^2.2.4"
19401940
nullthrows "^1.1.1"
19411941

1942-
"@sentry-internal/eslint-config-sdk@7.69.0":
1943-
version "7.69.0"
1944-
resolved "https://registry.yarnpkg.com/@sentry-internal/eslint-config-sdk/-/eslint-config-sdk-7.69.0.tgz#ce5a1ea615afcb89d433f4913b425ed839d8a8ce"
1945-
integrity sha512-TIiw6KkMSZ/8Pdamp+ie7nRfp5XtYJK0SvoTtjhj5EuEDidciL5jR7Llyh7y3FgJqBoNe6TBcYSfdhhaUmSlCA==
1942+
"@sentry-internal/eslint-config-sdk@7.73.0":
1943+
version "7.73.0"
1944+
resolved "https://registry.yarnpkg.com/@sentry-internal/eslint-config-sdk/-/eslint-config-sdk-7.73.0.tgz#b2c480aebe86b033697492c1232a4db29f5e64e9"
1945+
integrity sha512-tC+GlHtXs2iwkul34WnCYLzMXakLmVY6/ODnkr+25nNo4TSwSqVON4X/98w2IPTbArzU4dLqDzuTmYgbV7TsHg==
19461946
dependencies:
1947-
"@sentry-internal/eslint-plugin-sdk" "7.69.0"
1948-
"@sentry-internal/typescript" "7.69.0"
1947+
"@sentry-internal/eslint-plugin-sdk" "7.73.0"
1948+
"@sentry-internal/typescript" "7.73.0"
19491949
"@typescript-eslint/eslint-plugin" "^5.48.0"
19501950
"@typescript-eslint/parser" "^5.48.0"
19511951
eslint-config-prettier "^6.11.0"
@@ -1955,10 +1955,10 @@
19551955
eslint-plugin-jsdoc "^30.0.3"
19561956
eslint-plugin-simple-import-sort "^5.0.3"
19571957

1958-
"@sentry-internal/eslint-plugin-sdk@7.69.0":
1959-
version "7.69.0"
1960-
resolved "https://registry.yarnpkg.com/@sentry-internal/eslint-plugin-sdk/-/eslint-plugin-sdk-7.69.0.tgz#fbc1ffc692a4eac234dbd83e3fb2514267f8da68"
1961-
integrity sha512-vGshbqiidYW5druM+dhHHMoRKSZSWlkIGrA+r+diOg/ow41OjAiPvC95lqJeBiTgODZIfGcUBADqsOKEkO/WFQ==
1958+
"@sentry-internal/eslint-plugin-sdk@7.73.0":
1959+
version "7.73.0"
1960+
resolved "https://registry.yarnpkg.com/@sentry-internal/eslint-plugin-sdk/-/eslint-plugin-sdk-7.73.0.tgz#80b421924b823fd6fe487b014048362577660a15"
1961+
integrity sha512-V53mpXiKXQOC3qw8LbAoVfvpDqSDT2L9Zfwctz2+URbny4A8pRMpZ7jOgu2R4ZOu8z7WZYPuCH6P7ZZL8b0iXg==
19621962
dependencies:
19631963
requireindex "~1.1.0"
19641964

@@ -1972,31 +1972,31 @@
19721972
"@sentry/utils" "7.61.1"
19731973
tslib "^2.4.1 || ^1.9.3"
19741974

1975-
"@sentry-internal/tracing@7.69.0":
1976-
version "7.69.0"
1977-
resolved "https://registry.yarnpkg.com/@sentry-internal/tracing/-/tracing-7.69.0.tgz#8d8eb740b72967b6ba3fdc0a5173aa55331b7d35"
1978-
integrity sha512-4BgeWZUj9MO6IgfO93C9ocP3+AdngqujF/+zB2rFdUe+y9S6koDyUC7jr9Knds/0Ta72N/0D6PwhgSCpHK8s0Q==
1975+
"@sentry-internal/tracing@7.73.0":
1976+
version "7.73.0"
1977+
resolved "https://registry.yarnpkg.com/@sentry-internal/tracing/-/tracing-7.73.0.tgz#4838f31e41d23a6041ef4520519b80f788bf1cac"
1978+
integrity sha512-ig3WL/Nqp8nRQ52P205NaypGKNfIl/G+cIqge9xPW6zfRb5kJdM1YParw9GSJ1SPjEZBkBORGAML0on5H2FILw==
19791979
dependencies:
1980-
"@sentry/core" "7.69.0"
1981-
"@sentry/types" "7.69.0"
1982-
"@sentry/utils" "7.69.0"
1980+
"@sentry/core" "7.73.0"
1981+
"@sentry/types" "7.73.0"
1982+
"@sentry/utils" "7.73.0"
19831983
tslib "^2.4.1 || ^1.9.3"
19841984

1985-
"@sentry-internal/typescript@7.69.0":
1986-
version "7.69.0"
1987-
resolved "https://registry.yarnpkg.com/@sentry-internal/typescript/-/typescript-7.69.0.tgz#ce7dfef8b7a82b31472946ea685745d5f7ba3529"
1988-
integrity sha512-2KEKebZpc/TWBS8t0yEMvNWiX6i3sp9nTLZ33DOyxrIJK2vQVGGZTtiQzgOvF92DUCIcQ0qQBhJqHVs7xcb+Fw==
1989-
1990-
"@sentry/browser@7.69.0":
1991-
version "7.69.0"
1992-
resolved "https://registry.yarnpkg.com/@sentry/browser/-/browser-7.69.0.tgz#65427c90fb71c1775e2c1e38431efb7f4aec1e34"
1993-
integrity sha512-5ls+zu2PrMhHCIIhclKQsWX5u6WH0Ez5/GgrCMZTtZ1d70ukGSRUvpZG9qGf5Cw1ezS1LY+1HCc3whf8x8lyPw==
1994-
dependencies:
1995-
"@sentry-internal/tracing" "7.69.0"
1996-
"@sentry/core" "7.69.0"
1997-
"@sentry/replay" "7.69.0"
1998-
"@sentry/types" "7.69.0"
1999-
"@sentry/utils" "7.69.0"
1985+
"@sentry-internal/typescript@7.73.0":
1986+
version "7.73.0"
1987+
resolved "https://registry.yarnpkg.com/@sentry-internal/typescript/-/typescript-7.73.0.tgz#5fc4b1a90a024b95e0033ec025bd76c6bfe850cc"
1988+
integrity sha512-0QUhxUVmktBCfeGwqqM7zKH+RTaR7wuj+aKhSdxVK9+NJnguRqYJZRwUSVqYCMiWCAzNJBztee4GstHDvcVlhw==
1989+
1990+
"@sentry/browser@7.73.0":
1991+
version "7.73.0"
1992+
resolved "https://registry.yarnpkg.com/@sentry/browser/-/browser-7.73.0.tgz#a8eaeb50cf16ca32f0039a81719c503d7045495f"
1993+
integrity sha512-e301hUixcJ5+HNKCJwajFF5smF4opXEFSclyWsJuFNufv5J/1C1SDhbwG2JjBt5zzdSoKWJKT1ewR6vpICyoDw==
1994+
dependencies:
1995+
"@sentry-internal/tracing" "7.73.0"
1996+
"@sentry/core" "7.73.0"
1997+
"@sentry/replay" "7.73.0"
1998+
"@sentry/types" "7.73.0"
1999+
"@sentry/utils" "7.73.0"
20002000
tslib "^2.4.1 || ^1.9.3"
20012001

20022002
@@ -2032,32 +2032,33 @@
20322032
"@sentry/utils" "7.61.1"
20332033
tslib "^2.4.1 || ^1.9.3"
20342034

2035-
"@sentry/core@7.69.0":
2036-
version "7.69.0"
2037-
resolved "https://registry.yarnpkg.com/@sentry/core/-/core-7.69.0.tgz#ebbe01df573f438f8613107020a4e18eb9adca4d"
2038-
integrity sha512-V6jvK2lS8bhqZDMFUtvwe2XvNstFQf5A+2LMKCNBOV/NN6eSAAd6THwEpginabjet9dHsNRmMk7WNKvrUfQhZw==
2035+
"@sentry/core@7.73.0":
2036+
version "7.73.0"
2037+
resolved "https://registry.yarnpkg.com/@sentry/core/-/core-7.73.0.tgz#1caeeec44f42c4d58c06cc05dec39e5497b65aa3"
2038+
integrity sha512-9FEz4Gq848LOgVN2OxJGYuQqxv7cIVw69VlAzWHEm3njt8mjvlTq+7UiFsGRo84+59V2FQuHxzA7vVjl90WfSg==
20392039
dependencies:
2040-
"@sentry/types" "7.69.0"
2041-
"@sentry/utils" "7.69.0"
2040+
"@sentry/types" "7.73.0"
2041+
"@sentry/utils" "7.73.0"
20422042
tslib "^2.4.1 || ^1.9.3"
20432043

2044-
"@sentry/hub@7.69.0":
2045-
version "7.69.0"
2046-
resolved "https://registry.yarnpkg.com/@sentry/hub/-/hub-7.69.0.tgz#3ef3b98e1810b05cb4fb37a861bd700ef592a2a9"
2047-
integrity sha512-71TQ7P5de9+cdW1ETGI9wgi2VNqfyWaM3cnUvheXaSjPRBrr6mhwoaSjo+GGsiwx97Ob9DESZEIhdzcLupzkFA==
2044+
"@sentry/hub@7.73.0":
2045+
version "7.73.0"
2046+
resolved "https://registry.yarnpkg.com/@sentry/hub/-/hub-7.73.0.tgz#8a219068e4562e92744340481f9211d3a741edf6"
2047+
integrity sha512-QYc8ELyj/sA/jKsPH8oc5VYnrhkam4khJj4VYouFGX4HJMuRpgkkPegNcE1WFq4aJiiOPEMrxrCap+tprUV6EA==
20482048
dependencies:
2049-
"@sentry/core" "7.69.0"
2050-
"@sentry/types" "7.69.0"
2051-
"@sentry/utils" "7.69.0"
2049+
"@sentry/core" "7.73.0"
2050+
"@sentry/types" "7.73.0"
2051+
"@sentry/utils" "7.73.0"
20522052
tslib "^2.4.1 || ^1.9.3"
20532053

2054-
"@sentry/integrations@7.69.0":
2055-
version "7.69.0"
2056-
resolved "https://registry.yarnpkg.com/@sentry/integrations/-/integrations-7.69.0.tgz#04c0206d9436ec7b79971e3bde5d6e1e9194595f"
2057-
integrity sha512-FEFtFqXuCo9+L7bENZxFpEAlIODwHl6FyW/DwLfniy9jOXHU7BhP/oICLrFE5J7rh1gNY7N/8VlaiQr3hCnS/g==
2054+
"@sentry/integrations@7.73.0":
2055+
version "7.73.0"
2056+
resolved "https://registry.yarnpkg.com/@sentry/integrations/-/integrations-7.73.0.tgz#f12d4a6422787cc6d50471bbdec52ed32611a444"
2057+
integrity sha512-IjVpn4d+aSL9L1Ntu/oAdRwujz4BzzavDsZf96Xgc/AjBnjAEUT+wT1dAwluThfuKDXmWOJHhZ2cHHMfqI+7vw==
20582058
dependencies:
2059-
"@sentry/types" "7.69.0"
2060-
"@sentry/utils" "7.69.0"
2059+
"@sentry/core" "7.73.0"
2060+
"@sentry/types" "7.73.0"
2061+
"@sentry/utils" "7.73.0"
20612062
localforage "^1.8.1"
20622063
tslib "^2.4.1 || ^1.9.3"
20632064

@@ -2075,35 +2076,35 @@
20752076
lru_map "^0.3.3"
20762077
tslib "^2.4.1 || ^1.9.3"
20772078

2078-
"@sentry/react@7.69.0":
2079-
version "7.69.0"
2080-
resolved "https://registry.yarnpkg.com/@sentry/react/-/react-7.69.0.tgz#b9931ac590d8dad3390a9a03a516f1b1bd75615e"
2081-
integrity sha512-J+DciRRVuruf1nMmBOi2VeJkOLGeCb4vTOFmHzWTvRJNByZ0flyo8E/fyROL7+23kBq1YbcVY6IloUlH73hneQ==
2079+
"@sentry/react@7.73.0":
2080+
version "7.73.0"
2081+
resolved "https://registry.yarnpkg.com/@sentry/react/-/react-7.73.0.tgz#8591bb70ac683b43fbe41736c2c321a4661ce22d"
2082+
integrity sha512-RCGlxW0Xp5vsC38LGxUO0Xf11LBzfg75VN+KS3D2FS5GXl0R0JwgUyPNVlod7YMCfwytsKGhfP+YpQvHGQAVwg==
20822083
dependencies:
2083-
"@sentry/browser" "7.69.0"
2084-
"@sentry/types" "7.69.0"
2085-
"@sentry/utils" "7.69.0"
2084+
"@sentry/browser" "7.73.0"
2085+
"@sentry/types" "7.73.0"
2086+
"@sentry/utils" "7.73.0"
20862087
hoist-non-react-statics "^3.3.2"
20872088
tslib "^2.4.1 || ^1.9.3"
20882089

2089-
"@sentry/replay@7.69.0":
2090-
version "7.69.0"
2091-
resolved "https://registry.yarnpkg.com/@sentry/replay/-/replay-7.69.0.tgz#d727f96292d2b7c25df022fa53764fd39910fcda"
2092-
integrity sha512-oUqWyBPFUgShdVvgJtV65EQH9pVDmoYVQMOu59JI6FHVeL3ald7R5Mvz6GaNLXsirvvhp0yAkcAd2hc5Xi6hDw==
2090+
"@sentry/replay@7.73.0":
2091+
version "7.73.0"
2092+
resolved "https://registry.yarnpkg.com/@sentry/replay/-/replay-7.73.0.tgz#4e6c522bac5c12f596ef76afe15ecb3807407669"
2093+
integrity sha512-a8IC9SowBisLYD2IdLkXzx7gN4iVwHDJhQvLp2B8ARs1PyPjJ7gCxSMHeGrYp94V0gOXtorNYkrxvuX8ayPROA==
20932094
dependencies:
2094-
"@sentry/core" "7.69.0"
2095-
"@sentry/types" "7.69.0"
2096-
"@sentry/utils" "7.69.0"
2095+
"@sentry/core" "7.73.0"
2096+
"@sentry/types" "7.73.0"
2097+
"@sentry/utils" "7.73.0"
20972098

20982099
20992100
version "7.61.1"
21002101
resolved "https://registry.yarnpkg.com/@sentry/types/-/types-7.61.1.tgz#225912689459c92e62f0b6e3ff145f6dbf72ff0e"
21012102
integrity sha512-CpPKL+OfwYOduRX9AT3p+Ie1fftgcCPd5WofTVVq7xeWRuerOOf2iJd0v+8yHQ25omgres1YOttDkCcvQRn4Jw==
21022103

2103-
"@sentry/types@7.69.0":
2104-
version "7.69.0"
2105-
resolved "https://registry.yarnpkg.com/@sentry/types/-/types-7.69.0.tgz#012b8d90d270a473cc2a5cf58a56870542739292"
2106-
integrity sha512-zPyCox0mzitzU6SIa1KIbNoJAInYDdUpdiA+PoUmMn2hFMH1llGU/cS7f4w/mAsssTlbtlBi72RMnWUCy578bw==
2104+
"@sentry/types@7.73.0":
2105+
version "7.73.0"
2106+
resolved "https://registry.yarnpkg.com/@sentry/types/-/types-7.73.0.tgz#6d811bbe413d319df0a592a672d6d72a94a8e716"
2107+
integrity sha512-/v8++bly8jW7r4cP2wswYiiVpn7eLLcqwnfPUMeCQze4zj3F3nTRIKc9BGHzU0V+fhHa3RwRC2ksqTGq1oJMDg==
21072108

21082109
"@sentry/typescript@^5.20.1":
21092110
version "5.20.1"
@@ -2121,12 +2122,12 @@
21212122
"@sentry/types" "7.61.1"
21222123
tslib "^2.4.1 || ^1.9.3"
21232124

2124-
"@sentry/utils@7.69.0":
2125-
version "7.69.0"
2126-
resolved "https://registry.yarnpkg.com/@sentry/utils/-/utils-7.69.0.tgz#b7594e4eb2a88b9b25298770b841dd3f81bd2aa4"
2127-
integrity sha512-4eBixe5Y+0EGVU95R4NxH3jkkjtkE4/CmSZD4In8SCkWGSauogePtq6hyiLsZuP1QHdpPb9Kt0+zYiBb2LouBA==
2125+
"@sentry/utils@7.73.0":
2126+
version "7.73.0"
2127+
resolved "https://registry.yarnpkg.com/@sentry/utils/-/utils-7.73.0.tgz#530cf023f7c395aa7708cd3824e5a45948449c10"
2128+
integrity sha512-h3ZK/qpf4k76FhJV9uiSbvMz3V/0Ovy94C+5/9UgPMVCJXFmVsdw8n/dwANJ7LupVPfYP23xFGgebDMFlK1/2w==
21282129
dependencies:
2129-
"@sentry/types" "7.69.0"
2130+
"@sentry/types" "7.73.0"
21302131
tslib "^2.4.1 || ^1.9.3"
21312132

21322133

0 commit comments

Comments
 (0)