Skip to content

fix(deps): update all non-major dependencies (minor)#522

Open
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/all-dependencies-minor-patch
Open

fix(deps): update all non-major dependencies (minor)#522
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/all-dependencies-minor-patch

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Oct 1, 2025

This PR contains the following updates:

Package Change Age Confidence
@react-native-async-storage/async-storage (source) 2.1.2 -> 2.2.0 age confidence
@react-native-community/datetimepicker (source) 8.4.7 -> 8.5.1 age confidence
@sentry/react-native ~6.14.0 -> ~6.22.0 age confidence
@types/react (source) ~19.0.10 -> ~19.2.0 age confidence
expo-notifications (source) ~0.31.4 -> ~0.32.0 age confidence
lottie-react-native (source) 7.2.5 -> 7.3.4 age confidence
react (source) 19.0.0 -> 19.2.0 age confidence
react-native (source, changelog) 0.79.7 -> 0.82.1 age confidence
react-native-blob-util ^0.21.1 -> ^0.24.0 age confidence
react-native-gesture-handler (source) ~2.24.0 -> ~2.29.0 age confidence
react-native-pager-view 6.7.1 -> 6.9.1 age confidence
react-native-reanimated (source) ~3.17.4 -> ~3.19.0 age confidence
react-native-safe-area-context 5.4.1 -> 5.6.2 age confidence
react-native-screens ~4.11.1 -> ~4.18.0 age confidence
react-native-webview 13.13.5 -> 13.16.0 age confidence
typescript (source) ~5.8.3 -> ~5.9.0 age confidence

Release Notes

react-native-async-storage/async-storage (@​react-native-async-storage/async-storage)

v2.2.0

Compare Source

Minor Changes
  • 8b2f32b: Fix support for React Native 0.80
react-native-datetimepicker/datetimepicker (@​react-native-community/datetimepicker)

v8.5.1

Compare Source

Bug Fixes
  • ios: internal picker state persisting with recycling (#​1026) (48e89d2)

v8.5.0

Compare Source

Features
getsentry/sentry-react-native (@​sentry/react-native)

v6.22.0

Compare Source

Fixes
  • Vendor metro/countLines function to avoid issues with the private import (#​5185)
  • Fix baseJSBundle and bundleToString TypeErrors with Metro 0.83.2 (#​5206)
  • Fixes .env file loading in Expo sourcemap uploads (#​5210)
Dependencies

v6.21.0

Compare Source

Important Changes
  • fix(browser): Ensure IP address is only inferred by Relay if sendDefaultPii is true (#​5092)

This release includes a fix for a behaviour change
that was originally introduced with v9 of the JavaScript SDK: User IP Addresses should only be added to Sentry events automatically,
if sendDefaultPii was set to true.

However, the change in v9 required further internal adjustment, which should have been included in v10 of the SDK.
To avoid making a major bump, the fix was patched on the current version and not by bumping to V10.
There is no API breakage involved and hence it is safe to update.
However, after updating the SDK, events (errors, traces, replays, etc.) sent from the browser, will only include
user IP addresses, if you set sendDefaultPii: true in your Sentry.init options.

We apologize for any inconvenience caused!

Fixes
  • Fix Expo prebuild failed on cached builds (#​5098)
  • Remove the warning that used to indicate that Time To Initial Display and Time To Full Display are not supported (#​5081)
Dependencies

v6.20.0

Compare Source

Features
  • Support for React Native 0.81 (#​5051)
  • Support New Hermes Runtime Access Pattern (#​5051)
  • Support Metro 0.83 (#​5035)
Fixes
  • Correct detection of whether turbo modules are available (#​5064)
Dependencies

v6.19.0

Compare Source

Fixes
  • Warnings when .env.sentry-build-plugin is not set on Sentry/CLI (#​5029)
  • Fix for sentry-cli path discovery not working on Android (#​5009)
  • Export addIntegration from @sentry/core (#​5020)
Features
  • Adds replaysSessionQuality Session Replay option to control replay quality and performance overhead on mobile (#​5001)

    import * as Sentry from '@​sentry/react-native';
    
    Sentry.init({
      replaysSessionSampleRate: 1.0,
      replaysSessionQuality: 'low', // possible values: low, medium (default), high
      integrations: [Sentry.mobileReplayIntegration()],
    });
Dependencies

v6.18.1

Compare Source

Fixes
  • Fixed Sentry CLI executable path resolution that was causing iOS build script failures (#​5003)

v6.18.0

Compare Source

[!WARNING]
This release contains an issue where Sentry-CLI may not be found on iOS builds if not defined by environment variable.
See PR #​5003 for more details.

Fixes
  • SDK now Builds when using PnPM (#​4977)
  • Skip idle span creation when app is in background (#​4995)
Dependencies

v6.17.0

Compare Source

Features
  • Add experimental flag enableUnhandledCPPExceptionsV2 on iOS (#​4975)

    import * as Sentry from '@​sentry/react-native';
    
    Sentry.init({
      _experiments: {
        enableUnhandledCPPExceptionsV2: true,
      },
    });
Dependencies

v6.16.1

Compare Source

Fixes
  • Fixes Replay Custom Masking issue on Android (#​4957)
Dependencies

v6.16.0

Compare Source

Features
  • Introducing @sentry/react-native/playground (#​4916)

    The new withSentryPlayground component allows developers to verify
    that the SDK is properly configured and reports errors as expected.

    import * as Sentry from '@​sentry/react-native';
    import { withSentryPlayground } from '@​sentry/react-native/playground';
    
    function App() {
      return <View>...</View>;
    }
    
    export default withSentryPlayground(
      Sentry.wrap(App)
    );
Fixes
  • Adds support for React Native 0.80 (#​4938)
  • Report slow and frozen frames as app start span data (#​4865)
  • User set by Sentry.setUser is prefilled in Feedback Widget (#​4901)
    • User data are considered from all scopes in the following order current, isolation and global.

v6.15.1

Compare Source

Dependencies

v6.15.0

Compare Source

Features
  • User Feedback Widget Updates

    • FeedbackButton for easy access to the widget (#​4378)
    • ScreenshotButton for capturing the application visuals (#​4714)
    • Theming support to better align with the application styles (#​4677)
    Sentry.init({
      integrations: [
        Sentry.feedbackIntegration({
          enableTakeScreenshot: true, // Enables `ScreenshotButton`
          themeDark: {
            // Add dark theme styles here
          },
          themeLight: {
            // Add light theme styles here
          },
        }),
      ],
    });
    
    Sentry.showFeedbackButton();
    Sentry.hideFeedbackButton();

    To learn more visit the documentation.

  • Re-export ErrorEvent and TransactionEvent types (#​4859)

Fixes
  • crashedLastRun now returns the correct value (#​4829)
  • Use engine-specific promise rejection tracking (#​4826)
  • Fixes Feedback Widget accessibility issue on iOS (#​4739)
  • Measuring TTID or TTFD could cause a crash when parentSpanId was removed (#​4881)
Dependencies
expo/expo (expo-notifications)

v0.32.13

Compare Source

v0.32.12

Compare Source

💡 Others
  • add a warning for getDevicePushTokenAsync on iOS simulators (#​40028 by @​vonovak)
  • validate sound resource names with assertValidAndroidAssetName from expo/config-plugins (#​39883 by @​vonovak)

v0.32.11

Compare Source

v0.32.10

Compare Source

🐛 Bug fixes

v0.32.9

Compare Source

This version does not introduce any user-facing changes.

v0.32.8

Compare Source

This version does not introduce any user-facing changes.

v0.32.7

Compare Source

v0.32.6

Compare Source

v0.32.5

Compare Source

v0.32.4

Compare Source

🛠 Breaking changes

v0.32.3

Compare Source

v0.32.2

Compare Source

v0.32.1

Compare Source

v0.32.0

Compare Source

lottie-react-native/lottie-react-native (lottie-react-native)

v7.3.4

Compare Source

Bug Fixes
  • RN [0.82] import for TextAttributeProps.UNSET (c6729b2)

v7.3.3

Compare Source

Bug Fixes

v7.3.2

Compare Source

Bug Fixes
  • bring backward compatibility for containerStyle prop (#​1372) (0efef17)

v7.3.1

Compare Source

v7.3.0

Compare Source

Features

7.2.5 (2025-07-30)

7.2.4 (2025-07-08)

Bug Fixes
  • ci: macos xcode versions (c145b4a)
  • ci: macos xcode versions for paper (3ac6f56)
  • fix ios new arch by declaring component for codegen (#​1357) (77d832f)
  • ios: incorrect animations when switching between raw json and string source in fabric (#​1359) (2625e84)
  • release-it script (58e641e)

6.0.0

Features
  • Fabric support for iOS (#​955)
  • Fabric support for Android (#​910)
  • Upgrade android-lottie to 6.0.0 (#​993)
  • Upgrade android-lottie to 6.1.0 (#​1060)
  • Implement native auto play for android (63f71aa)
  • Implement native auto play for ios (84e6668)
Bug Fixes
  • Add missing condition (bd44aff)
  • Old arch impl (65ec453)
  • android: Refactor event dispatch logic on android to fix fabric crash (#​1000) (ebb8006)
  • android: Add support for upcoming 0.73 (#​1038)
  • android: Fix resize mode in Android (#​992)
  • iOS: Reset to first frame on app resume bug (#​980)
  • iOS: Frames being calculated incorrectly (#​1019)
  • macOS: react native macos build (#​1031)
  • iOS: Memory leak on deallocation (#​1055)
  • iOS: Update lottie-ios to 4.2.0 + fix build error (#​1036)
  • iOS: prevent jumping to end frame (#​1061)
  • Fabric build on 0.68/0.69 (#​1054)
  • Fix different ios related issues (3f7e3e)
Internal Changes
  • Move project to monorepo 077429
  • Update examples to typescript (300e63)
  • Remove redundant logging from the project (#​1024)
BREAKING CHANGES
  • BREAKING CHANGE: Removed using Animated API by default in the source code (#​992)

  • BREAKING CHANGE: Removed absolute style being applied to the LottieView (#​992)

  • BREAKING CHANGE: Removed default aspect ratio styling (#​992)

  • BREAKING CHANGE: Removed default width and height being applied (#​992)

    Check here for more information.

  • BREAKING CHANGE: Renamed AnimatedLottieViewProps to LottieViewProps (9fd591)

Full changelog can be found here.

Known issues:
  • Initial render with json source is not always working as expected on iOS when new architecture is turned on (#​1043)

5.1.4

  • Support for lottie-ios version 3.4.0
  • Update tvOS deployment target to 11.0

5.1.3

  • Fix Android compilation issue

5.1.2

  • Fix compilation issues on Android

5.1.1

  • Remove deprecated-react-native-prop-types import

5.1.0

  • Upgrade lottie-android dependency to 5.1.1
  • Fix ViewPropTypes imports
  • Support for remote animations
  • Support for dynamic text
  • Support changing lottie props for ongoing animations
  • Regular chore tasks

5.0.1

  • Fix SimpleColorFilter casting error

5.0.0

  • Upgraded to RN 0.66.1
  • Support for PlatformColor

4.1.3

  • Added pod support for tvOS

4.1.2

  • iOS target moved to 11.0 to align with React Native 64

4.1.1

  • Updating Documentation

4.1.0

  • Upgrading Native lottie-android to 4.0.0
  • Migrated to maven_publish
  • Migrated to gradle 7

4.0.3

  • Updated lottie-ios dependency to 3.2.3

4.0.2

  • Minor fixes

4.0.1

  • Update react-native-safe-modules dependency

4.0.0

  • Fix react-native 0.64 compatibility
  • Windows support [C#]
  • macOS Support (based on react-native-windows)
  • Moved lottie-ios to peerDependencies
  • Fix Android playback when startFrame > endFrame

3.4.1

  • Updated the development app to React Native 0.62.2
  • Updated lottie-ios dependency to 3.1.8
  • Updated lottie-android dependency to 3.4.0

3.4.0 (May 20, 2020)

  • Add auto embed fastlane
  • Updated Android Building environment
  • Add testID prop to LottieView typescript definition
  • Added Pause & Resume commands. Also added onLayout prop.
  • Fix iOS speed not changing dynamically
  • Improved documentation

3.3.2 (Nov 15, 2019)

  • Removed support for Reanimated

3.3.1 (Nov 12, 2019)

  • Support for Reanimated
  • Added colorFilters prop for setting individually layers color
  • Documentation update

3.2.1 (Sep 30, 2019)

  • Fix for strange characters in some Java files

3.2.0 (Sep 30, 2019)

  • Updated lottie-ios dependency to 3.1.3
  • Updated lottie-android dependency to 3.0.7
  • Make NPM package leaner
  • Fix playing reverse on Android

3.1.1 (Sep 16, 2019)

  • Fix loading assets from app bundle on iOS
  • Remove unused deprecated publishNonDefault Gradle option
  • Support passing extensionless file names on Android

3.1.0 (Jul 25, 2019)

  • Support for lottie-android 3.0.0

3.0.4 (Jul 23, 2019)

  • Fix for auto linking on Android

3.0.3 (Jul 22, 2019)

  • Support for AndroidX
  • Removed deprecated rnpm support
  • Updated dependency for react-native-safe-module

3.0.2 (Jul 13, 2019)

  • Lock lottie-ios on version 3.3.0

3.0.1 (Jun 28, 2019)

  • Resolving UIViewManager deprecation warning

3.0.0 (Jun 1, 2019)

  • React Native lottie upgrade (iOS)

2.6.1 (March 29, 2019)

  • Lock lottie-ios on version 2.5.0
  • Enable RN projects to define the Android AppCompat Library version

2.6.0 (March 18, 2019)

  • Add Android app compatability support for RN 0.59 on Android (#​455)

2.5.11 (December 20, 2018)

  • Improved documentation
  • Added onAnimationFinish callback
  • Fixed compilation errors

2.5.10 (November 6, 2018)

  • Fixed proptype checking on LottieView
  • Added missing typings
  • Use commonjs object export compatible syntax

2.5.9 (October 10, 2018)

  • Fixed Android build - deprecated build script directives
  • Fixed iOS build - header search paths
  • Added missing typings

2.5.8 (August 27, 2018)

  • Fixed Android flickering
  • Added missing duration prop

2.5.7 (August 27, 2018)

  • Fixed Android play method to be run only when the view is attached

2.5.6 (August 1, 2018)

  • Reverted dependencies to ensure compatibility with RN

2.5.5 (August 1, 2018)

  • Fixed Android builds

2.5.1 (July 30, 2018)

  • Fixed built library
  • Refactor + RN 0.56
  • Autoplay animations when animation's source has changed
  • Use project-wide properties and new dependency

2.5.0 (April 3, 2018)

  • Fixed typescript support
  • Bump Lottie to 2.5
  • Support Carthage projects
  • Fix resizeMode for iOS and TypeScript

2.3.2 (January 5, 2018)

  • Moved eslint deps to devDeps
  • Expose hardwareAccelerationAndroid (#​254)

2.3.1 (December 5, 2017)

  • Bumped lottie-ios and lottie-android

2.3.0 (November 24, 2017)

Features and Improvements
  • speed prop
  • enableMergePathsAndroidForKitKatAndAbove prop for Android KitKat and above
  • Bump Lottie-Android to 2.3.0
  • Bump Lottie-iOS to 2.1.4
  • Added resizeMode prop similar to
  • Added play(fromFrame, toFrame)
  • Removed the need for a style prop
Bugs Fixed
  • Improved the json serialization perf ~10x
  • Fixed some build related issues on iOS and for newer versions of RN
  • Enabled dev menu and reload for Android and iOS sample apps

1.0.6 (Feb 13, 2017)

  • Fix name conflict with new release of ios cocoapod

1.0.5 (Feb 10, 2017)

  • Allow iOS to be statically linked properly with react-native link

1.0.2 - 1.0.4 (Feb 8, 2017)

  • Fix Android NativeModule name
  • Depend on lottie-ios through NPM in order to make static linking easier
  • Fix bad Lottie.xcodeproj reference for static linking
  • Fix iOS header import order for static linking

1.0.1 (Feb 2, 2017)

  • Fix Header / Build issues with iOS on RN 0.40+

1.0.0 (Feb 1, 2017)

  • Official Release!
facebook/react (react)

v19.2.0

Compare Source

Below is a list of all new features, APIs, and bug fixes.

Read the React 19.2 release post for more information.

New React Features
  • <Activity>: A new API to hide and restore the UI and internal state of its children.
  • useEffectEvent is a React Hook that lets you extract non-reactive logic into an Effect Event.
  • cacheSignal (for RSCs) lets your know when the cache() lifetime is over.
  • React Performance tracks appear on the Performance panel’s timeline in your browser developer tools
New React DOM Features
  • Added resume APIs for partial pre-rendering with Web Streams:
  • Added resume APIs for partial pre-rendering with Node Streams:
  • Updated prerender APIs to return a postponed state that can be passed to the resume APIs.
Notable changes
  • React DOM now batches suspense boundary reveals, matching the behavior of client side rendering. This change is especially noticeable when animating the reveal of Suspense boundaries e.g. with the upcoming <ViewTransition> Component. React will batch as much reveals as possible before the first paint while trying to hit popular first-contentful paint metrics.
  • Add Node Web Streams (prerender, renderToReadableStream) to server-side-rendering APIs for Node.js
  • Use underscore instead of : IDs generated by useId
All Changes
React
React DOM
React Server Components
React Reconciler

v19.1.1

Compare Source

React

v19.1.0

Compare Source

Owner Stack

An Owner Stack is a string representing the components that are directly responsible for rendering a particular component. You can log Owner Stacks when debugging or use Owner Stacks to enhance error overlays or other development tools. Owner Stacks are only available in development builds.


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) in timezone Europe/Paris, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies label Oct 1, 2025
@socket-security
Copy link

socket-security bot commented Oct 1, 2025

All alerts resolved. Learn more about Socket for GitHub.

This PR previously contained dependency changes with security issues that have been resolved, removed, or ignored.

View full report

@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from c84358c to 41a0aaa Compare October 1, 2025 10:12
@rap2hpoutre
Copy link
Member

Bof c'est risqué de mettre tout à jour d'un coup dont react native

@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from 41a0aaa to 8dbc3a8 Compare October 7, 2025 12:31
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from 8dbc3a8 to 0ec1422 Compare October 8, 2025 06:33
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from 0ec1422 to 610b37d Compare October 8, 2025 11:59
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from 610b37d to 325ffb5 Compare October 9, 2025 07:56
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from 325ffb5 to fdf8a9e Compare October 13, 2025 19:39
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from fdf8a9e to 31e8561 Compare October 14, 2025 12:04
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from 31e8561 to f20d1c9 Compare October 14, 2025 14:42
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from 9c68b21 to 5dc3be9 Compare November 18, 2025 10:09
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from 5dc3be9 to 3a87cea Compare November 24, 2025 11:03
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from 3a87cea to 2f00df5 Compare November 24, 2025 14:37
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from 2f00df5 to 971c93c Compare November 24, 2025 21:58
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from 971c93c to 3baa0f2 Compare November 25, 2025 02:44
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from 3baa0f2 to c10c0ea Compare November 25, 2025 12:58
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from c10c0ea to 861a877 Compare November 27, 2025 19:09
@socket-security
Copy link

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Updated@​types/​react@​19.0.14 ⏵ 19.2.71001007996100
Updated@​react-native-async-storage/​async-storage@​2.1.2 ⏵ 2.2.01001008891 +2100
Updated@​react-native-community/​datetimepicker@​8.4.7 ⏵ 8.5.19910010096 +2100
Updated@​sentry/​react-native@​6.14.0 ⏵ 6.22.099 +1100100 +198 -1100

View full report

@sonarqubecloud
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant