Skip to content

Commit 3e157d4

Browse files
github-actions[bot]web-flowantonis
authored
chore(deps): update JavaScript SDK to v10.29.0 (#5442)
* chore: update scripts/update-javascript.sh to 10.29.0 * chore(deps): Bump eslint to v8 (#5443) --------- Co-authored-by: GitHub <noreply@github.com> Co-authored-by: Antonis Lilis <antonis.lilis@sentry.io>
1 parent a3f3291 commit 3e157d4

File tree

13 files changed

+447
-404
lines changed

13 files changed

+447
-404
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
- Bump Android SDK Stubs from v8.27.0 to v8.28.0 ([#5405](https://github.com/getsentry/sentry-react-native/pull/5405), [#5439](https://github.com/getsentry/sentry-react-native/pull/5439))
2828
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8280)
2929
- [diff](https://github.com/getsentry/sentry-java/compare/8.27.0...8.28.0)
30-
- Bump JavaScript SDK from v10.26.0 to v10.28.0 ([#5406](https://github.com/getsentry/sentry-react-native/pull/5406), [#5429](https://github.com/getsentry/sentry-react-native/pull/5429))
31-
- [changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md#10280)
32-
- [diff](https://github.com/getsentry/sentry-javascript/compare/10.26.0...10.28.0)
30+
- Bump JavaScript SDK from v10.26.0 to v10.29.0 ([#5406](https://github.com/getsentry/sentry-react-native/pull/5406), [#5429](https://github.com/getsentry/sentry-react-native/pull/5429), [#5442](https://github.com/getsentry/sentry-react-native/pull/5442))
31+
- [changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md#10290)
32+
- [diff](https://github.com/getsentry/sentry-javascript/compare/10.26.0...10.29.0)
3333

3434
## 7.7.0
3535

dev-packages/e2e-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"devDependencies": {
1414
"@babel/preset-env": "^7.25.3",
1515
"@babel/preset-typescript": "^7.18.6",
16-
"@sentry/core": "10.28.0",
16+
"@sentry/core": "10.29.0",
1717
"@sentry/react-native": "7.7.0",
1818
"@types/node": "^20.9.3",
1919
"@types/react": "^18.2.64",
0 Bytes
Binary file not shown.

packages/core/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -69,20 +69,20 @@
6969
},
7070
"dependencies": {
7171
"@sentry/babel-plugin-component-annotate": "4.6.1",
72-
"@sentry/browser": "10.28.0",
72+
"@sentry/browser": "10.29.0",
7373
"@sentry/cli": "2.58.2",
74-
"@sentry/core": "10.28.0",
75-
"@sentry/react": "10.28.0",
76-
"@sentry/types": "10.28.0"
74+
"@sentry/core": "10.29.0",
75+
"@sentry/react": "10.29.0",
76+
"@sentry/types": "10.29.0"
7777
},
7878
"devDependencies": {
7979
"@babel/core": "^7.26.7",
8080
"@expo/metro-config": "~0.20.0",
8181
"@mswjs/interceptors": "^0.25.15",
8282
"@react-native/babel-preset": "0.80.0",
83-
"@sentry-internal/eslint-config-sdk": "10.28.0",
84-
"@sentry-internal/eslint-plugin-sdk": "10.28.0",
85-
"@sentry-internal/typescript": "10.28.0",
83+
"@sentry-internal/eslint-config-sdk": "10.29.0",
84+
"@sentry-internal/eslint-plugin-sdk": "10.29.0",
85+
"@sentry-internal/typescript": "10.29.0",
8686
"@sentry/wizard": "6.8.1",
8787
"@testing-library/react-native": "^13.2.2",
8888
"@types/jest": "^29.5.13",
@@ -98,8 +98,8 @@
9898
"babel-plugin-module-resolver": "^5.0.0",
9999
"babel-preset-fbjs": "^3.4.0",
100100
"downlevel-dts": "^0.11.0",
101-
"eslint": "^7.6.0",
102-
"eslint-plugin-react": "^7.20.6",
101+
"eslint": "^8.57.0",
102+
"eslint-plugin-react": "^7.37.0",
103103
"eslint-plugin-react-native": "^3.8.1",
104104
"expo": "^53.0.0",
105105
"expo-module-scripts": "3.1.0",

packages/core/src/js/feedback/FeedbackWidgetProvider.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { debug } from '@sentry/core';
22
import * as React from 'react';
3-
import { type NativeEventSubscription, type NativeScrollEvent,type NativeSyntheticEvent, Animated, Appearance, Dimensions, Easing, Modal, PanResponder, Platform, ScrollView, View } from 'react-native';
3+
import { Animated, Appearance, Dimensions, Easing, Modal, type NativeEventSubscription, type NativeScrollEvent,type NativeSyntheticEvent, PanResponder, Platform, ScrollView, View } from 'react-native';
44
import { notWeb } from '../utils/environment';
55
import { FeedbackButton } from './FeedbackButton';
66
import { FeedbackWidget } from './FeedbackWidget';

packages/core/src/js/feedback/integration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { type Integration, getClient } from '@sentry/core';
1+
import { getClient, type Integration } from '@sentry/core';
22
import type { FeedbackWidgetTheme } from './FeedbackWidget.theme';
33
import type { FeedbackButtonProps, FeedbackWidgetProps, ScreenshotButtonProps } from './FeedbackWidget.types';
44

packages/core/src/js/integrations/expocontext.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { type DeviceContext, type Event, type Integration, type OsContext, debug } from '@sentry/core';
1+
import { debug, type DeviceContext, type Event, type Integration, type OsContext } from '@sentry/core';
22
import type { ReactNativeClient } from '../client';
33
import { isExpo, isExpoGo } from '../utils/environment';
44
import { getExpoDevice, getExpoUpdates } from '../utils/expomodules';

packages/core/test/tools/sentryMetroSerializer.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import CountingSet from 'metro/private/lib/CountingSet';
66
import * as countLines from 'metro/private/lib/countLines';
77
import { minify } from 'uglify-js';
88
import { createSentryMetroSerializer } from '../../src/js/tools/sentryMetroSerializer';
9-
import { type MetroSerializer, type VirtualJSOutput, createDebugIdSnippet } from '../../src/js/tools/utils';
9+
import { createDebugIdSnippet, type MetroSerializer, type VirtualJSOutput } from '../../src/js/tools/utils';
1010

1111
describe('Sentry Metro Serializer', () => {
1212
test('debug id minified code snippet is the same as in the original implementation', () => {

packages/core/test/tracing/addTracingExtensions.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { Span } from '@sentry/core';
22
import { getCurrentScope, spanToJSON, startSpanManual } from '@sentry/core';
33
import { reactNativeTracingIntegration } from '../../src/js';
4-
import { type TestClient, setupTestClient } from '../mocks/client';
4+
import { setupTestClient, type TestClient } from '../mocks/client';
55

66
describe('Tracing extensions', () => {
77
let client: TestClient;

packages/core/test/tracing/gesturetracing.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { SPAN_ORIGIN_AUTO_INTERACTION } from '../../src/js/tracing/origin';
1111
import type { ReactNativeTracingIntegration } from '../../src/js/tracing/reactnativetracing';
1212
import { reactNativeTracingIntegration } from '../../src/js/tracing/reactnativetracing';
1313
import { SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN } from '../../src/js/tracing/semanticAttributes';
14-
import { type TestClient, setupTestClient } from '../mocks/client';
14+
import { setupTestClient, type TestClient } from '../mocks/client';
1515

1616
jest.mock('../../src/js/wrapper', () => {
1717
return {

0 commit comments

Comments
 (0)