Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
- 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))
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8280)
- [diff](https://github.com/getsentry/sentry-java/compare/8.27.0...8.28.0)
- 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))
- [changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md#10280)
- [diff](https://github.com/getsentry/sentry-javascript/compare/10.26.0...10.28.0)
- 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))
- [changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md#10290)
- [diff](https://github.com/getsentry/sentry-javascript/compare/10.26.0...10.29.0)

## 7.7.0

Expand Down
2 changes: 1 addition & 1 deletion dev-packages/e2e-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"devDependencies": {
"@babel/preset-env": "^7.25.3",
"@babel/preset-typescript": "^7.18.6",
"@sentry/core": "10.28.0",
"@sentry/core": "10.29.0",
"@sentry/react-native": "7.7.0",
"@types/node": "^20.9.3",
"@types/react": "^18.2.64",
Expand Down
Binary file modified packages/core/android/libs/replay-stubs.jar
Binary file not shown.
18 changes: 9 additions & 9 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,20 +69,20 @@
},
"dependencies": {
"@sentry/babel-plugin-component-annotate": "4.6.1",
"@sentry/browser": "10.28.0",
"@sentry/browser": "10.29.0",
"@sentry/cli": "2.58.2",
"@sentry/core": "10.28.0",
"@sentry/react": "10.28.0",
"@sentry/types": "10.28.0"
"@sentry/core": "10.29.0",
"@sentry/react": "10.29.0",
"@sentry/types": "10.29.0"
},
"devDependencies": {
"@babel/core": "^7.26.7",
"@expo/metro-config": "~0.20.0",
"@mswjs/interceptors": "^0.25.15",
"@react-native/babel-preset": "0.80.0",
"@sentry-internal/eslint-config-sdk": "10.28.0",
"@sentry-internal/eslint-plugin-sdk": "10.28.0",
"@sentry-internal/typescript": "10.28.0",
"@sentry-internal/eslint-config-sdk": "10.29.0",
"@sentry-internal/eslint-plugin-sdk": "10.29.0",
"@sentry-internal/typescript": "10.29.0",
"@sentry/wizard": "6.8.1",
"@testing-library/react-native": "^13.2.2",
"@types/jest": "^29.5.13",
Expand All @@ -98,8 +98,8 @@
"babel-plugin-module-resolver": "^5.0.0",
"babel-preset-fbjs": "^3.4.0",
"downlevel-dts": "^0.11.0",
"eslint": "^7.6.0",
"eslint-plugin-react": "^7.20.6",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-native": "^3.8.1",
"expo": "^53.0.0",
"expo-module-scripts": "3.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/js/feedback/FeedbackWidgetProvider.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { debug } from '@sentry/core';
import * as React from 'react';
import { type NativeEventSubscription, type NativeScrollEvent,type NativeSyntheticEvent, Animated, Appearance, Dimensions, Easing, Modal, PanResponder, Platform, ScrollView, View } from 'react-native';
import { Animated, Appearance, Dimensions, Easing, Modal, type NativeEventSubscription, type NativeScrollEvent,type NativeSyntheticEvent, PanResponder, Platform, ScrollView, View } from 'react-native';
import { notWeb } from '../utils/environment';
import { FeedbackButton } from './FeedbackButton';
import { FeedbackWidget } from './FeedbackWidget';
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/js/feedback/integration.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { type Integration, getClient } from '@sentry/core';
import { getClient, type Integration } from '@sentry/core';
import type { FeedbackWidgetTheme } from './FeedbackWidget.theme';
import type { FeedbackButtonProps, FeedbackWidgetProps, ScreenshotButtonProps } from './FeedbackWidget.types';

Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/js/integrations/expocontext.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { type DeviceContext, type Event, type Integration, type OsContext, debug } from '@sentry/core';
import { debug, type DeviceContext, type Event, type Integration, type OsContext } from '@sentry/core';
import type { ReactNativeClient } from '../client';
import { isExpo, isExpoGo } from '../utils/environment';
import { getExpoDevice, getExpoUpdates } from '../utils/expomodules';
Expand Down
2 changes: 1 addition & 1 deletion packages/core/test/tools/sentryMetroSerializer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import CountingSet from 'metro/private/lib/CountingSet';
import * as countLines from 'metro/private/lib/countLines';
import { minify } from 'uglify-js';
import { createSentryMetroSerializer } from '../../src/js/tools/sentryMetroSerializer';
import { type MetroSerializer, type VirtualJSOutput, createDebugIdSnippet } from '../../src/js/tools/utils';
import { createDebugIdSnippet, type MetroSerializer, type VirtualJSOutput } from '../../src/js/tools/utils';

describe('Sentry Metro Serializer', () => {
test('debug id minified code snippet is the same as in the original implementation', () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/core/test/tracing/addTracingExtensions.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { Span } from '@sentry/core';
import { getCurrentScope, spanToJSON, startSpanManual } from '@sentry/core';
import { reactNativeTracingIntegration } from '../../src/js';
import { type TestClient, setupTestClient } from '../mocks/client';
import { setupTestClient, type TestClient } from '../mocks/client';

describe('Tracing extensions', () => {
let client: TestClient;
Expand Down
2 changes: 1 addition & 1 deletion packages/core/test/tracing/gesturetracing.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { SPAN_ORIGIN_AUTO_INTERACTION } from '../../src/js/tracing/origin';
import type { ReactNativeTracingIntegration } from '../../src/js/tracing/reactnativetracing';
import { reactNativeTracingIntegration } from '../../src/js/tracing/reactnativetracing';
import { SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN } from '../../src/js/tracing/semanticAttributes';
import { type TestClient, setupTestClient } from '../mocks/client';
import { setupTestClient, type TestClient } from '../mocks/client';

jest.mock('../../src/js/wrapper', () => {
return {
Expand Down
4 changes: 2 additions & 2 deletions samples/react-native-macos/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"@react-navigation/bottom-tabs": "^6.5.12",
"@react-navigation/native": "^6.1.9",
"@react-navigation/stack": "^6.3.20",
"@sentry/core": "10.28.0",
"@sentry/react": "10.28.0",
"@sentry/core": "10.29.0",
"@sentry/react": "10.29.0",
"@sentry/react-native": "7.7.0",
"delay": "^6.0.0",
"react": "18.2.0",
Expand Down
4 changes: 2 additions & 2 deletions samples/react-native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
"@react-navigation/native-stack": "^7.3.24",
"@react-navigation/stack": "^7.4.5",
"@reduxjs/toolkit": "^2.8.2",
"@sentry/core": "10.28.0",
"@sentry/react": "10.28.0",
"@sentry/core": "10.29.0",
"@sentry/react": "10.29.0",
"@sentry/react-native": "7.7.0",
"@shopify/flash-list": "^2.0.2",
"delay": "^6.0.0",
Expand Down
Loading
Loading