Skip to content

Bump the react-native group across 1 directory with 21 updates#1076

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/react-native-54789184d9
Closed

Bump the react-native group across 1 directory with 21 updates#1076
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/react-native-54789184d9

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Mar 30, 2026

Bumps the react-native group with 21 updates in the / directory:

Package From To
@react-native-async-storage/async-storage 2.2.0 3.0.2
@react-native-community/cli 20.1.1 20.1.3
@react-native-community/netinfo 11.5.2 12.0.1
@react-native-vector-icons/material-design-icons 12.4.0 13.0.0
react-native 0.83.1 0.84.1
react-native-blob-util 0.24.6 0.24.7
react-native-device-info 15.0.1 15.0.2
react-native-gesture-handler 2.30.0 2.30.1
react-native-haptic-feedback 2.3.4 3.0.0
react-native-mmkv 4.2.0 4.3.0
react-native-reanimated 4.1.6 4.3.0
react-native-safe-area-context 5.6.2 5.7.0
react-native-screens 4.23.0 4.24.0
react-native-worklets 0.7.2 0.8.1
react-native-worklets-core 1.6.2 1.6.3
@react-native-community/cli-platform-android 20.1.1 20.1.3
@react-native-community/cli-platform-ios 20.1.1 20.1.3
@react-native/babel-preset 0.83.1 0.84.1
@react-native/eslint-config 0.83.1 0.84.1
@react-native/metro-config 0.83.1 0.84.1
@react-native/typescript-config 0.83.1 0.84.1

Updates @react-native-async-storage/async-storage from 2.2.0 to 3.0.2

Release notes

Sourced from @​react-native-async-storage/async-storage's releases.

Async Storage v3.0.2

Patch Changes

  • 1d1867f: include jest mock

Async Storage v3.0.1

Patch Changes

  • 7b64ea4: missing build step from CI added

Async Storage v3.0.0

‼️ Due to missing native artifacts, please do not use this version - 3.0.1 contains a fix!

Major Changes

  • Release of version v3. Please visit Async Storage docs to learn more

    Breaking changes:

    • Async Storage uses "scoped storages", where you need to create a storage instance before using it
    • Default export is a singleton storage that uses v2/v1 storage, for easier transition
    • An extra installation step is required for android
    • callback based API is dropped
    • Methods for batch operations (formerly multi* methods) have been renamed and their API updated
    • useAsyncStorage hook has been removed (will be introduced later)
    • Updated Native side (Brownfield) access to storage - dropped apple's delegate
    • Dropped a flag to opt out from iCloud backup - disabled by default now

3.0.0-next.0

Initial release of upcoming version v3. Please visit Async Storage docs to learn more

Breaking changes:

  • Async Storage uses "scoped storages", where you need to create a storage instance before using it
  • Default export is a singleton storage that uses v2/v1 storage, for easier transition
  • An extra installation step is required for android
  • callback based API is dropped
  • Methods for batch operations (formerly multi* methods) have been renamed and their API updated
  • useAsyncStorage hook has been removed (will be introduced later)
  • Updated Native side (Brownfield) access to storage - dropped apple's delegate
  • Dropped a flag to opt out from iCloud backup - disabled by default now
Changelog

Sourced from @​react-native-async-storage/async-storage's changelog.

3.0.2

Patch Changes

  • 1d1867f: include jest mock

3.0.1

Patch Changes

  • 7b64ea4: missing build step from CI added

3.0.0

Major Changes

  • f100276: Initial release of upcoming version v3. Please visit Async Storage docs to learn more

    Breaking changes:

    • Async Storage uses "scoped storages", where you need to create a storage instance before using it
    • Default export is a singleton storage that uses v2/v1 storage, for easier transition
    • An extra installation step is required for android
    • callback based API is dropped
    • Methods for batch operations (formerly multi* methods) have been renamed and their API updated
    • useAsyncStorage hook has been removed (will be introduced later)
    • Updated Native side (Brownfield) access to storage - dropped apple's delegate
    • Dropped a flag to opt out from iCloud backup - disabled by default now

Patch Changes

  • e9061f9: fix: re-deploy android
  • 6ffa4d9: Fixes crashes on ios 16 and below due to unescaped urls
  • 300cba3: update ios setup for cocoapods

3.0.0-next.3

Patch Changes

  • 6ffa4d9: Fixes crashes on ios 16 and below due to unescaped urls

3.0.0-next.2

Patch Changes

  • e9061f9: fix: re-deploy android

3.0.0-next.1

Patch Changes

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​react-native-async-storage/async-storage since your current version.

Install script changes

This version adds prepare script that runs during installation. Review the package contents before updating.


Updates @react-native-community/cli from 20.1.1 to 20.1.3

Commits

Updates @react-native-community/netinfo from 11.5.2 to 12.0.1

Release notes

Sourced from @​react-native-community/netinfo's releases.

v12.0.1

12.0.1 (2026-02-14)

Bug Fixes

  • ios: new wifi config API usage requires NetworkExtension framework (#793) (5b1f9b0)

v12.0.0

12.0.0 (2026-02-14)

  • fix(ios)!: use NEHotspotNetwork vs deprecated CNCopyCurrentNetworkInfo for wifi info, iOS14+ required (#791) (dd7a88f)

BREAKING CHANGES

  • iOS 14+ is new minimum, that's react-native 0.76+

The first react-native version to require iOS 14+ was react-native 0.76 so that is pretty old but this still may be a breaking change for some people so we are noting it.

Note from Apple Developer Documentation:

"This method also requires the app to have the Access Wi-Fi Information Entitlement, and produces nil if the app lacks this entitlement."

See: https://developer.apple.com/documentation/networkextension/nehotspotnetwork/fetchcurrent(completionhandler:)

Changelog

Sourced from @​react-native-community/netinfo's changelog.

12.0.1 (2026-02-14)

Bug Fixes

  • ios: new wifi config API usage requires NetworkExtension framework (#793) (5b1f9b0)

12.0.0 (2026-02-14)

  • fix(ios)!: use NEHotspotNetwork vs deprecated CNCopyCurrentNetworkInfo for wifi info, iOS14+ required (#791) (dd7a88f)

BREAKING CHANGES

  • iOS 14+ is new minimum, that's react-native 0.76+

The first react-native version to require iOS 14+ was react-native 0.76 so that is pretty old but this still may be a breaking change for some people so we are noting it.

Note from Apple Developer Documentation:

"This method also requires the app to have the Access Wi-Fi Information Entitlement, and produces nil if the app lacks this entitlement."

See: https://developer.apple.com/documentation/networkextension/nehotspotnetwork/fetchcurrent(completionhandler:)

Commits
  • d9923d2 chore(release): 12.0.1 [skip ci]
  • 5b1f9b0 fix(ios): new wifi config API usage requires NetworkExtension framework (#793)
  • 223d4d9 chore(release): 12.0.0 [skip ci]
  • dd7a88f fix(ios)!: use NEHotspotNetwork vs deprecated CNCopyCurrentNetworkInfo for wi...
  • 2cab2ac chore: document that native module load style is used for react-native 0.77+ ...
  • See full diff in compare view

Updates @react-native-vector-icons/material-design-icons from 12.4.0 to 13.0.0

Release notes

Sourced from @​react-native-vector-icons/material-design-icons's releases.

@​react-native-vector-icons/material-design-icons@​13.0.0

13.0.0 (2026-03-26)

🧱 Updated Dependencies

  • Updated @​react-native-vector-icons/common to 13.0.0

@​react-native-vector-icons/material-design-icons@​12.5.0

12.5.0 (2026-03-20)

🚀 Features

  • expose static export for icon families (#1880)

❤️ Thank You

@​react-native-vector-icons/material-design-icons@​12.4.3

12.4.3 (2026-03-17)

🧱 Updated Dependencies

  • Updated @​react-native-vector-icons/common to 12.4.2
Changelog

Sourced from @​react-native-vector-icons/material-design-icons's changelog.

13.0.0 (2026-03-26)

🧱 Updated Dependencies

  • Updated @​react-native-vector-icons/common to 13.0.0

12.5.0 (2026-03-20)

🚀 Features

  • expose static export for icon families (#1880)

❤️ Thank You

12.4.3 (2026-03-17)

🧱 Updated Dependencies

  • Updated @​react-native-vector-icons/common to 12.4.2

12.4.2 (2026-03-10)

🚀 Features

  • generator: auto-update upstream versions in .yo-rc.json during generation (#1873)

🧱 Updated Dependencies

  • Updated @​react-native-vector-icons/common to 12.4.1

❤️ Thank You

12.4.1 (2026-02-25)

🩹 Fixes

  • add targetSdkVersion to avoid READ_PHONE_STATE permission (#1866, #1861)

❤️ Thank You

  • Phecda Su
Commits
  • 4209402 chore(release): publish
  • e0bbfad chore(release): publish
  • 9fc8f4c feat: expose static export for icon families (#1880)
  • c60bfa6 chore(release): publish
  • 26c99a0 chore(release): publish
  • 9d642b9 feat(generator): auto-update upstream versions in .yo-rc.json during generati...
  • 99da2af chore(release): publish
  • 4919a29 fix: add targetSdkVersion to avoid READ_PHONE_STATE permission (#1866)
  • See full diff in compare view

Updates react-native from 0.83.1 to 0.84.1

Release notes

Sourced from react-native's releases.

0.84.1

Fixed

Android specific

  • Fix included-build gradle.properties resolution for monorepos by reading from parent Gradle start parameters (projectDir/currentDir) before falling back to ../../android/gradle.properties, so hermesV1Enabled can be inherited correctly. (c5ae0c820a by @​Titozzz)
  • Provide symbol fallbacks for inspector-modern/chrome/Registration.h when HermesV1 is disabled. (5ee695ad8f by @​tjzel)
  • ReactPlugin.kt always setting hermesV1Enabled to true (45896674d1 by @​tjzel)

Hermes dSYMS:

Hermes V1 dSYMS:

ReactNativeDependencies dSYMs:

ReactNative Core dSYMs:


You can file issues or pick requests against this release here.


To help you upgrade to this version, you can use the Upgrade Helper ⚛️.


View the whole changelog in the CHANGELOG.md file.

0.84.0


Hermes dSYMS:

Hermes V1 dSYMS:

... (truncated)

Changelog

Sourced from react-native's changelog.

Changelog

v0.85.0-rc.6

Changed

iOS specific

Fixed

iOS specific

v0.85.0-rc.5

Fixed

iOS specific

v0.85.0-rc.1

Breaking

Added

v0.85.0-rc.0

Breaking

Android specific

  • Events: Re-added receiveTouches to RCTEventEmitter with a default no-op implementation to avoid breaking ecosystem libraries (67db89d08a by @​javache)
  • Legacy Architecture: Deprecated UIManagerHelper.getEventDispatcherForReactTag and UIManagerHelper.getEventDispatcher(ReactContext, UIManagerType Int), use getEventDispatcher (4e5d45f4db by @​javache)

... (truncated)

Commits
  • 6064933 Release 0.84.1
  • 2c65dd7 Fix flaky Modal-itest by adding proper root cleanup (#55712)
  • 938a338 Attempt to reduce flakyness on Modal-itest "MessageQueue is not empty" failur...
  • 3483f16 [LOCAL] Bump hermes v1 version
  • d965609 fix(react-native): resolve included-build gradle.properties from parent build...
  • 3c503a8 fix: missing symbols on prebuilt Android with hermesV1 disabled (#55400)
  • 9b79d39 [LOCAL] Fix misaligned Hermes version
  • 5693f60 Release 0.84.0
  • 5c69e21 Release 0.84.0-rc.5
  • 3552d65 [LOCAL] Bump Hermes version
  • Additional commits viewable in compare view

Updates react-native-blob-util from 0.24.6 to 0.24.7

Release notes

Sourced from react-native-blob-util's releases.

0.24.7

Updating glob dependency

Commits

Updates react-native-device-info from 15.0.1 to 15.0.2

Release notes

Sourced from react-native-device-info's releases.

Release 15.0.2

15.0.2 (2026-02-21)

Bug Fixes

  • android: add optional gradle dependency for appSetId to work (#1750) (8401770)
Changelog

Sourced from react-native-device-info's changelog.

15.0.2 (2026-02-21)

Bug Fixes

  • android: add optional gradle dependency for appSetId to work (#1750) (8401770)
Commits

Updates react-native-gesture-handler from 2.30.0 to 2.30.1

Release notes

Sourced from react-native-gesture-handler's releases.

2.30.1

Full Changelog: software-mansion/react-native-gesture-handler@v2.30.0...v2.30.1

Commits

Updates react-native-haptic-feedback from 2.3.4 to 3.0.0

Release notes

Sourced from react-native-haptic-feedback's releases.

v3.0.0

What's Changed

New Contributors

Full Changelog: mkuczera/react-native-haptic-feedback@v2.3.3...v3.0.0

v3.0.0-next.1

Full Changelog: mkuczera/react-native-haptic-feedback@v3.0.0-next.0...v3.0.0-next.1

v3.0.0-next.0

What's Changed

Full Changelog: mkuczera/react-native-haptic-feedback@v2.3.3...v3.0.0-next.0

Changelog

Sourced from react-native-haptic-feedback's changelog.

[3.0.0] - 2026-03-28

Breaking Changes

  • iOS minimum target raised to 13.0 (was 12.4).
  • React Native minimum peer dependency raised to 0.71.0 (was 0.60.0).
  • DeviceUtils class removed — no longer needed.
  • enableVibrateFallback on iOS 13+ now operates via the Core Haptics path.

New Features

iOS — Core Haptics engine

  • Complete rewrite of iOS module using CHHapticEngine (Core Haptics), replacing UIKit feedback generators.
  • No more 25-second rate-limiting (#98).
  • Eliminates NSInternalInconsistencyException crash (#65).
  • Fixes _prepareWithStyle crash (#143).
  • Intensity and sharpness tuned per feedback type; engine restarts automatically after system interruption.
  • All 30 haptic types have sensible Core Haptics mappings — no more generic fallback.

New haptic types

8 new HapticFeedbackTypes values supported on both platforms:

Type Android iOS
confirm ✅ (API 30+, waveform fallback)
reject ✅ (API 30+, waveform fallback)
gestureStart ✅ (API 30+, waveform fallback)
gestureEnd ✅ (API 30+, waveform fallback)
segmentTick ✅ (API 30+, waveform fallback)
segmentFrequentTick ✅ (API 30+, waveform fallback)
toggleOn ✅ (API 30+, waveform fallback)
toggleOff ✅ (API 30+, waveform fallback)

New API methods

  • RNHapticFeedback.stop() — cancel the current haptic player and stop the engine.
  • RNHapticFeedback.isSupported() — synchronously returns true if Core Haptics is available.
  • RNHapticFeedback.triggerPattern(events, options?) — play a custom sequence of HapticEvent objects.
  • RNHapticFeedback.playAHAP(fileName) — play an .ahap file by name (iOS only; resolves immediately on Android).
  • RNHapticFeedback.getSystemHapticStatus() — returns { vibrationEnabled, ringerMode } on Android (#137).

Pattern notation helper

import { pattern } from "react-native-haptic-feedback";
RNHapticFeedback.triggerPattern(pattern("oO.O"));
// o = soft transient, O = strong transient, . = 100ms, - = 300ms, = = 1000ms

... (truncated)

Commits
  • 2bdbef5 fix: restore release signing config, pass keystore via GitHub secrets in CI
  • 44a73f6 fix: remove release signing config from example app, use debug keystore for a...
  • 6969a89 fix: inject signing properties in CI, revert build.gradle conditionals
  • e8a6066 fix: guard release signing config behind property check for CI builds
  • ed795f8 test: cover useHaptics playHaptic and impact, fix Platform mock boundary
  • 97d0afe example app adjustment
  • 129a439 fix: ignore vitepress cache in eslint, add node globals for app.plugin.js
  • b18e660 example bump
  • 05420ec release: 3.0.0 stable
  • eca8e31 feat: add in-app support donations with tiered supporter badges
  • Additional commits viewable in compare view
Install script changes

This version adds prepare script that runs during installation. Review the package contents before updating.


Updates react-native-mmkv from 4.2.0 to 4.3.0

Release notes

Sourced from react-native-mmkv's releases.

Release 4.3.0

4.3.0 (2026-03-20)

✨ Features

🐛 Bug Fixes

  • Add tests for compareBeforeSet (#1020) (bf238b7)
  • Uncomment isEncrypted tests now that this flag properly works (#1019) (1760ddf)

📚 Documentation

  • Update to new webp banner (59f42db)
Commits
  • cd53e0b chore: release 4.3.0
  • 44f4621 chore: Some minor perf optimization keywords (#1024)
  • c301314 chore(deps): bump actions/cache from 4 to 5 (#973)
  • e43b3e0 feat: Make default MMKV log level configurable at build time (#995)
  • 264cbf3 chore: Add Harness tests for readOnly (#1022)
  • ece6077 chore: Add Multi Process Mode Harness tests (#1023)
  • bf238b7 fix: Add tests for compareBeforeSet (#1020)
  • eef94b4 chore: Cleanup codebase a bit (#1021)
  • c0a4297 chore(deps): bump jidicula/clang-format-action from 4.16.0 to 4.17.0 (#1015)
  • 3c67cac chore(deps): bump com.android.tools.build:gradle (#1013)
  • Additional commits viewable in compare view

Updates react-native-reanimated from 4.1.6 to 4.3.0

Release notes

Sourced from react-native-reanimated's releases.

Reanimated - 4.3.0

Key changes

CSS SVG Animations

CSS animations now support animating SVG components and their properties, including Path, Image, LinearGradient, RadialGradient, Pattern and Text. This includes support for animating the d property of Path components with a special handling for path morphing.

Shared Value re-implementation

Shared Value internal implementation changed - now it uses Shareable type from react-native-worklets as its internal value container. That means you can finally use Shared Values from other Worklet Runtimes than just the UI Runtime. Also USE_SYNCHRONIZABLE_IN_MUTABLE optimization feature flag is now enabled by default.

Animated Styles type changes

TypeScript type of Animated Styles now makes it impossible to accidentally pass them to non-animated components. This replaces previous runtime-check for this kind of mistake, which proved to be prone to false positives.

Fixes

... (truncated)

Commits
  • 63fa5df release(Reanimated): 4.3.0
  • 98c5ef4 fix(Reanimated): RCTModernEventEmmitter for older RN (#9181)
  • 0db42e4 Merge branch 'main' into @​tjzel/4.3-stable/merge-main
  • 5f9b4d0 chore: pre-release example cleanup and fixes (#9178)
  • a215ea7 Remove dead code in build.gradle (#9177)
  • dc18bf0 chore: Remove unused hasProp function, improve transformOrigin processor ...
  • a25481f chore: Use 'worklet' directive directly in processor functions (#9154)
  • 681a4fa chore: useHandler reimplementation (#9090)
  • 96222de fix - passing negative values to filter crashes on iOS (#9155)
  • a05745f chore(Rea): migrate to RCTModernEventEmitter (#9033)
  • Additional commits viewable in compare view

Updates react-native-safe-area-context from 5.6.2 to 5.7.0

Release notes

Sourced from react-native-safe-area-context's releases.

Release 5.7.0

5.7.0 (2026-02-24)

Bug Fixes

  • make SafeAreaView respect edges param on web (#685) (db1bdcb)

Features

Commits
  • e0b35d2 chore: release 5.7.0
  • 82027a7 do not push
  • db1bdcb fix: make SafeAreaView respect edges param on web (#685)
  • d3a472e Update broken React Native View prop links in API documentation (#686)
  • b18ae84 Update usage.mdx

Bumps the react-native group with 21 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@react-native-async-storage/async-storage](https://github.com/react-native-async-storage/async-storage/tree/HEAD/packages/async-storage) | `2.2.0` | `3.0.2` |
| [@react-native-community/cli](https://github.com/react-native-community/cli/tree/HEAD/packages/cli) | `20.1.1` | `20.1.3` |
| [@react-native-community/netinfo](https://github.com/react-native-netinfo/react-native-netinfo) | `11.5.2` | `12.0.1` |
| [@react-native-vector-icons/material-design-icons](https://github.com/oblador/react-native-vector-icons/tree/HEAD/packages/material-design-icons) | `12.4.0` | `13.0.0` |
| [react-native](https://github.com/facebook/react-native/tree/HEAD/packages/react-native) | `0.83.1` | `0.84.1` |
| [react-native-blob-util](https://github.com/RonRadtke/react-native-blob-util) | `0.24.6` | `0.24.7` |
| [react-native-device-info](https://github.com/react-native-device-info/react-native-device-info) | `15.0.1` | `15.0.2` |
| [react-native-gesture-handler](https://github.com/software-mansion/react-native-gesture-handler) | `2.30.0` | `2.30.1` |
| [react-native-haptic-feedback](https://github.com/mkuczera/react-native-haptic-feedback) | `2.3.4` | `3.0.0` |
| [react-native-mmkv](https://github.com/mrousavy/react-native-mmkv) | `4.2.0` | `4.3.0` |
| [react-native-reanimated](https://github.com/software-mansion/react-native-reanimated/tree/HEAD/packages/react-native-reanimated) | `4.1.6` | `4.3.0` |
| [react-native-safe-area-context](https://github.com/AppAndFlow/react-native-safe-area-context) | `5.6.2` | `5.7.0` |
| [react-native-screens](https://github.com/software-mansion/react-native-screens) | `4.23.0` | `4.24.0` |
| [react-native-worklets](https://github.com/software-mansion/react-native-reanimated/tree/HEAD/packages/react-native-worklets) | `0.7.2` | `0.8.1` |
| [react-native-worklets-core](https://github.com/margelo/react-native-worklets-core) | `1.6.2` | `1.6.3` |
| [@react-native-community/cli-platform-android](https://github.com/react-native-community/cli/tree/HEAD/packages/platform-android) | `20.1.1` | `20.1.3` |
| [@react-native-community/cli-platform-ios](https://github.com/react-native-community/cli/tree/HEAD/packages/cli-platform-ios) | `20.1.1` | `20.1.3` |
| [@react-native/babel-preset](https://github.com/facebook/react-native) | `0.83.1` | `0.84.1` |
| [@react-native/eslint-config](https://github.com/facebook/react-native/tree/HEAD/packages/eslint-config-react-native) | `0.83.1` | `0.84.1` |
| [@react-native/metro-config](https://github.com/facebook/react-native/tree/HEAD/packages/metro-config) | `0.83.1` | `0.84.1` |
| [@react-native/typescript-config](https://github.com/facebook/react-native/tree/HEAD/packages/typescript-config) | `0.83.1` | `0.84.1` |



Updates `@react-native-async-storage/async-storage` from 2.2.0 to 3.0.2
- [Release notes](https://github.com/react-native-async-storage/async-storage/releases)
- [Changelog](https://github.com/react-native-async-storage/async-storage/blob/main/packages/async-storage/CHANGELOG.md)
- [Commits](https://github.com/react-native-async-storage/async-storage/commits/@react-native-async-storage/async-storage@3.0.2/packages/async-storage)

Updates `@react-native-community/cli` from 20.1.1 to 20.1.3
- [Release notes](https://github.com/react-native-community/cli/releases)
- [Changelog](https://github.com/react-native-community/cli/blob/main/packages/cli/CHANGELOG.md)
- [Commits](https://github.com/react-native-community/cli/commits/v20.1.3/packages/cli)

Updates `@react-native-community/netinfo` from 11.5.2 to 12.0.1
- [Release notes](https://github.com/react-native-netinfo/react-native-netinfo/releases)
- [Changelog](https://github.com/react-native-netinfo/react-native-netinfo/blob/master/CHANGELOG.md)
- [Commits](react-native-netinfo/react-native-netinfo@v11.5.2...v12.0.1)

Updates `@react-native-vector-icons/material-design-icons` from 12.4.0 to 13.0.0
- [Release notes](https://github.com/oblador/react-native-vector-icons/releases)
- [Changelog](https://github.com/oblador/react-native-vector-icons/blob/master/packages/material-design-icons/CHANGELOG.md)
- [Commits](https://github.com/oblador/react-native-vector-icons/commits/@react-native-vector-icons/material-design-icons@13.0.0/packages/material-design-icons)

Updates `react-native` from 0.83.1 to 0.84.1
- [Release notes](https://github.com/facebook/react-native/releases)
- [Changelog](https://github.com/facebook/react-native/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react-native/commits/v0.84.1/packages/react-native)

Updates `react-native-blob-util` from 0.24.6 to 0.24.7
- [Release notes](https://github.com/RonRadtke/react-native-blob-util/releases)
- [Commits](RonRadtke/react-native-blob-util@0.24.6...0.24.7)

Updates `react-native-device-info` from 15.0.1 to 15.0.2
- [Release notes](https://github.com/react-native-device-info/react-native-device-info/releases)
- [Changelog](https://github.com/react-native-device-info/react-native-device-info/blob/master/CHANGELOG.md)
- [Commits](react-native-device-info/react-native-device-info@v15.0.1...v15.0.2)

Updates `react-native-gesture-handler` from 2.30.0 to 2.30.1
- [Release notes](https://github.com/software-mansion/react-native-gesture-handler/releases)
- [Commits](software-mansion/react-native-gesture-handler@v2.30.0...v2.30.1)

Updates `react-native-haptic-feedback` from 2.3.4 to 3.0.0
- [Release notes](https://github.com/mkuczera/react-native-haptic-feedback/releases)
- [Changelog](https://github.com/mkuczera/react-native-haptic-feedback/blob/main/CHANGELOG.md)
- [Commits](mkuczera/react-native-haptic-feedback@v2.3.4...v3.0.0)

Updates `react-native-mmkv` from 4.2.0 to 4.3.0
- [Release notes](https://github.com/mrousavy/react-native-mmkv/releases)
- [Commits](mrousavy/react-native-mmkv@v4.2.0...v4.3.0)

Updates `react-native-reanimated` from 4.1.6 to 4.3.0
- [Release notes](https://github.com/software-mansion/react-native-reanimated/releases)
- [Changelog](https://github.com/software-mansion/react-native-reanimated/blob/main/packages/react-native-reanimated/RELEASE.md)
- [Commits](https://github.com/software-mansion/react-native-reanimated/commits/4.3.0/packages/react-native-reanimated)

Updates `react-native-safe-area-context` from 5.6.2 to 5.7.0
- [Release notes](https://github.com/AppAndFlow/react-native-safe-area-context/releases)
- [Commits](AppAndFlow/react-native-safe-area-context@v5.6.2...v5.7.0)

Updates `react-native-screens` from 4.23.0 to 4.24.0
- [Release notes](https://github.com/software-mansion/react-native-screens/releases)
- [Commits](software-mansion/react-native-screens@4.23.0...4.24.0)

Updates `react-native-worklets` from 0.7.2 to 0.8.1
- [Release notes](https://github.com/software-mansion/react-native-reanimated/releases)
- [Commits](https://github.com/software-mansion/react-native-reanimated/commits/worklets-0.8.1/packages/react-native-worklets)

Updates `react-native-worklets-core` from 1.6.2 to 1.6.3
- [Release notes](https://github.com/margelo/react-native-worklets-core/releases)
- [Commits](margelo/react-native-worklets-core@v1.6.2...v1.6.3)

Updates `@react-native-community/cli-platform-android` from 20.1.1 to 20.1.3
- [Release notes](https://github.com/react-native-community/cli/releases)
- [Commits](https://github.com/react-native-community/cli/commits/v20.1.3/packages/platform-android)

Updates `@react-native-community/cli-platform-ios` from 20.1.1 to 20.1.3
- [Release notes](https://github.com/react-native-community/cli/releases)
- [Changelog](https://github.com/react-native-community/cli/blob/main/packages/cli-platform-ios/CHANGELOG.md)
- [Commits](https://github.com/react-native-community/cli/commits/v20.1.3/packages/cli-platform-ios)

Updates `@react-native/babel-preset` from 0.83.1 to 0.84.1
- [Release notes](https://github.com/facebook/react-native/releases)
- [Changelog](https://github.com/facebook/react-native/blob/main/CHANGELOG.md)
- [Commits](facebook/react-native@v0.83.1...v0.84.1)

Updates `@react-native/eslint-config` from 0.83.1 to 0.84.1
- [Release notes](https://github.com/facebook/react-native/releases)
- [Changelog](https://github.com/facebook/react-native/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react-native/commits/v0.84.1/packages/eslint-config-react-native)

Updates `@react-native/metro-config` from 0.83.1 to 0.84.1
- [Release notes](https://github.com/facebook/react-native/releases)
- [Changelog](https://github.com/facebook/react-native/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react-native/commits/v0.84.1/packages/metro-config)

Updates `@react-native/typescript-config` from 0.83.1 to 0.84.1
- [Release notes](https://github.com/facebook/react-native/releases)
- [Changelog](https://github.com/facebook/react-native/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react-native/commits/v0.84.1/packages/typescript-config)

---
updated-dependencies:
- dependency-name: "@react-native-async-storage/async-storage"
  dependency-version: 3.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: react-native
- dependency-name: "@react-native-community/cli"
  dependency-version: 20.1.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: react-native
- dependency-name: "@react-native-community/netinfo"
  dependency-version: 12.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: react-native
- dependency-name: "@react-native-vector-icons/material-design-icons"
  dependency-version: 13.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: react-native
- dependency-name: react-native
  dependency-version: 0.84.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: react-native
- dependency-name: react-native-blob-util
  dependency-version: 0.24.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: react-native
- dependency-name: react-native-device-info
  dependency-version: 15.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: react-native
- dependency-name: react-native-gesture-handler
  dependency-version: 2.30.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: react-native
- dependency-name: react-native-haptic-feedback
  dependency-version: 3.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: react-native
- dependency-name: react-native-mmkv
  dependency-version: 4.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: react-native
- dependency-name: react-native-reanimated
  dependency-version: 4.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: react-native
- dependency-name: react-native-safe-area-context
  dependency-version: 5.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: react-native
- dependency-name: react-native-screens
  dependency-version: 4.24.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: react-native
- dependency-name: react-native-worklets
  dependency-version: 0.8.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: react-native
- dependency-name: react-native-worklets-core
  dependency-version: 1.6.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: react-native
- dependency-name: "@react-native-community/cli-platform-android"
  dependency-version: 20.1.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: react-native
- dependency-name: "@react-native-community/cli-platform-ios"
  dependency-version: 20.1.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: react-native
- dependency-name: "@react-native/babel-preset"
  dependency-version: 0.84.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: react-native
- dependency-name: "@react-native/eslint-config"
  dependency-version: 0.84.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: react-native
- dependency-name: "@react-native/metro-config"
  dependency-version: 0.84.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: react-native
- dependency-name: "@react-native/typescript-config"
  dependency-version: 0.84.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: react-native
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Mar 30, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Apr 2, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Apr 2, 2026
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/react-native-54789184d9 branch April 2, 2026 01:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants