Skip to content

fix(deps): update frontend-app-runtime-tooling (major)#153

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/major-frontend-app-runtime-tooling
Open

fix(deps): update frontend-app-runtime-tooling (major)#153
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/major-frontend-app-runtime-tooling

Conversation

@renovate

@renovate renovate Bot commented May 11, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@babel/core (source) ^7.29.0^8.0.0 age confidence
@expo/metro-runtime (source) ~55.0.10~56.0.0 age confidence
@jest/globals (source) ~29.7.0~30.4.0 age confidence
@react-native-async-storage/async-storage (source) 2.2.03.1.1 age confidence
@testing-library/react-native (source) ^13.3.3^14.0.0 age confidence
@types/jest (source) ^29.5.14^30.0.0 age confidence
expo (source) ~55.0.17~56.0.0 age confidence
expo-auth-session (source) ~55.0.15~56.0.0 age confidence
expo-blur (source) ~55.0.14~56.0.0 age confidence
expo-constants (source) ~55.0.15~56.0.0 age confidence
expo-font (source) ~55.0.6~56.0.0 age confidence
expo-haptics (source) ~55.0.14~56.0.0 age confidence
expo-image (source) ~55.0.9~56.0.0 age confidence
expo-image-manipulator (source) ~55.0.15~56.0.0 age confidence
expo-image-picker (source) ~55.0.19~56.0.0 age confidence
expo-linear-gradient (source) ~55.0.13~56.0.0 age confidence
expo-linking (source) ~55.0.14~56.0.0 age confidence
expo-router (source) ~55.0.13~56.2.0 age confidence
expo-secure-store (source) ~55.0.13~56.0.0 age confidence
expo-splash-screen (source) ~55.0.19~56.0.0 age confidence
expo-status-bar (source) ~55.0.5~56.0.0 age confidence
expo-symbols (source) ~55.0.7~56.0.0 age confidence
expo-system-ui (source) ~55.0.16~56.0.0 age confidence
expo-video (source) ^55.0.15^56.0.0 age confidence
expo-web-browser (source) ~55.0.14~56.0.0 age confidence
jest (source) ~29.7.0~30.4.0 age confidence
jest-expo (source) ~55.0.16~56.0.0 age confidence
pnpm (source) 10.33.011.7.0 age confidence
pnpm (source) 10.x11.x age confidence
react-native-gesture-handler (source) ~2.30.1~3.0.0 age confidence
typescript (source) ^5.9.3^6.0.0 age confidence

Release Notes

babel/babel (@​babel/core)

v8.0.0

Compare Source

👓 Spec Compliance
💥 Breaking Change
  • babel-cli, babel-node, babel-plugin-proposal-decorators, babel-plugin-transform-classes, babel-plugin-transform-function-name, babel-plugin-transform-modules-commonjs, babel-plugin-transform-object-rest-spread, babel-plugin-transform-parameters, babel-plugin-transform-react-constant-elements, babel-plugin-transform-regenerator, babel-preset-env, babel-register
  • babel-plugin-transform-runtime, babel-runtime-corejs3, babel-runtime
  • babel-parser
🐛 Bug Fix
  • babel-generator
  • babel-plugin-transform-modules-systemjs
📝 Documentation
🏠 Internal
🏃‍♀️ Performance

v7.29.7

Compare Source

v7.29.7 (2026-05-25)

Re-release all packages with npm provenance attestations

v7.29.6

Compare Source

v7.29.6 (2026-05-25)

🐛 Bug Fix
Committers: 3
expo/expo (@​expo/metro-runtime)

v56.0.15

Compare Source

v56.0.14

Compare Source

v56.0.13

Compare Source

v56.0.12

Compare Source

v56.0.11

Compare Source

v56.0.10

Compare Source

v56.0.9

Compare Source

v56.0.8

Compare Source

v56.0.7

Compare Source

v56.0.6

Compare Source

v56.0.5

Compare Source

v56.0.4

Compare Source

v56.0.3

Compare Source

v56.0.2

Compare Source

v56.0.1

Compare Source

v56.0.0

Compare Source

🛠 Breaking changes
  • unimodules-app-loader
  • expo-web-browser
  • expo-video-thumbnails
  • expo-task-manager
  • expo-store-review
  • expo-speech
  • expo-sqlite
  • expo-sms
  • expo-sharing
  • expo-secure-store
  • expo-sensors
  • expo-screen-capture
  • expo-screen-orientation
  • expo-print
  • expo-network
  • expo-notifications
  • expo-localization
  • expo-media-library
    • Bumped minimum iOS/tvOS version to 16.4, macOS to 13.4. (#​43296 by @​tsapeta)
    • Promote the object-oriented MediaLibrary API to the root expo-media-library import and move the legacy API to expo-media-library/legacy. (#​46030 by @​Wenszel)
  • expo-mail-composer
  • expo-location
  • expo-keep-awake
  • expo-modules-core
    • [iOS] Replaced the Objective-C++ JSI layer (EXJavaScriptRuntime, EXJavaScriptObject, ExpoModulesHostObject, EXSharedObjectUtils, etc.) with the new ExpoModulesJSI Swift package. Third-party native modules depending on these types must migrate to the new Swift-first API. (#​44337 by @​tsapeta)
    • Bumped minimum iOS/tvOS version to 16.4, macOS to 13.4. (#​43296 by @​tsapeta)
  • expo-local-authentication
  • expo-linking
  • expo-image-manipulator
  • expo-haptics
  • expo-linear-gradient
  • expo-gl
  • expo-image-picker
  • expo-font
  • expo-document-picker
  • expo-file-system
    • Bumped minimum iOS/tvOS version to 16.4, macOS to 13.4. (#​43296 by @​tsapeta)
    • copy() and move() methods of File and Directory are now asynchronous and return a Promise. Use copySync() and moveSync() for synchronous behavior. (#​44359 by @​barthap)
    • [Android] In Expo Go, Paths.cache and Paths.document are now pointing to experience-isolated directories. (#​45977 by @​barthap)
    • File.write() is now asynchronous and returns a Promise. Use File.writeSync() for synchronous behavior. (#​45992 by @​wh201906)
    • FileHandle.readBytes() and FileHandle.writeBytes() are now asynchronous and return a Promise. Use FileHandle.readBytesSync() and FileHandle.writeBytesSync() for synchronous behavior. (#​46280 by @​wh201906)
  • expo-device
    • [iOS] Change the names of "iPad Air (11-inch) (6th generation)", "iPad Air (13-inch) (6th generation)" and "iPhone SE" to "iPad Air 11-inch (M2)", "iPad Air 13-inch (M2)" and "iPhone SE (1st generation)". (#​43644 by @​prusnak)
    • Bumped minimum iOS/tvOS version to 16.4, macOS to 13.4. (#​43296 by @​tsapeta)
  • expo-crypto
  • expo-contacts
    • [next] Fix permission functions, presentPicker cancel, presentAccessPicker types (#​44847 by @​Wenszel)
    • Bumped minimum iOS/tvOS version to 16.4, macOS to 13.4. (#​43296 by @​tsapeta)
    • Promote the object-oriented Contacts API to the root expo-contacts import and move the legacy API to expo-contacts/legacy. (#​46037 by @​Wenszel)
  • expo-constants
  • expo-clipboard
  • expo-cellular
  • expo-camera
  • expo-calendar
    • Bumped minimum iOS/tvOS version to 16.4, macOS to 13.4. (#​43296 by @​tsapeta)
    • Promote the object-oriented Calendar API to the root expo-calendar import and move the legacy API to expo-calendar/legacy. (#​46030 by @​Wenszel)
  • expo-brightness
  • expo-blur
  • expo-battery
  • expo-background-fetch
  • expo-application
  • expo-apple-authentication
  • expo-asset
🎉 New features
🐛 Bug fixes
  • expo-web-browser
    • Fixed openAuthSessionAsync silently failing on iOS 17.4+ when using https:// redirect URLs without Associated Domains entitlements. The HTTPS universal link callback API is now opt-in via the preferUniversalLinks option. (#​44452 by @​vonovak)
    • Fix an ES module import error in the typed config plugin. (#​46089 by @​zoontek)
  • expo-task-manager
    • Fixed JS timers hanging during background task execution on Android by registering with HeadlessJsTaskContext. (#​43821 by @​janicduplessis)
    • Fix an ES module import error in the typed config plugin. (#​46089 by @​zoontek)
    • [android] Apply bundled proguard-rules.pro via consumerProguardFiles so the -keep class expo.modules.taskManager.** rule is added to consumer apps' R8 pass. (#​46029 by @​jiunshinn)
  • expo-speech
    • [Android] Fix NullPointerException in LanguageUtils.getISOCode when the TTS engine returns a voice with a non-standard locale. (#​44807 by @​zoontek)
  • expo-sqlite
  • expo-sharing
    • [iOS] Fix shareAsync promise leaking when the user picks an activity and then cancels its follow-up dialog (e.g. taps Print, then cancels the print dialog). The completion handler now resolves unconditionally on dismissal. (@​Elehiggle) (by @​Elehiggle)
    • Fix an ES module import error in the typed config plugin. (#​46089 by @​zoontek)
  • expo-secure-store
  • expo-sensors
    • [iOS] Fixed TCC crash on iOS 26 during Metro reload when motionPermission: falseCMAltimeter.stopRelativeAltitudeUpdates() now only runs if updates were started. (#​45396 by @​JustinFay01)
    • Fix an ES module import error in the typed config plugin. (#​46089 by @​zoontek)
  • expo-screen-orientation
    • [iOS] Fixed per-screen orientation not working with expo-dev-client by searching child VCs for react-native-screens orientation when an intermediate VC blocks the traversal. (#​44181 by @​vonovak)
    • [iOS] Fixed lockAsync silently failing when flipping between previously-applied masks. (#​45239 by @​alanjhughes)
    • [iOS] Fixed EXC_BAD_ACCESS crash from recursive supportedInterfaceOrientations when react-native-screens per-screen orientation is set. (#​45733 by @​rayabelcode)
    • Fix an ES module import error in the typed config plugin. (#​46089 by @​zoontek)
  • expo-network
    • [Android] Fixed network state listener emitting a stale "connected" event when the device disconnects from the network on Android 13+. ([#​44656](https://r

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Between 12:00 AM and 03:59 AM, only on Monday (* 0-3 * * 1)
  • 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 force-pushed the renovate/major-frontend-app-runtime-tooling branch 4 times, most recently from 595fcc6 to acf7f30 Compare May 17, 2026 13:39
@renovate renovate Bot force-pushed the renovate/major-frontend-app-runtime-tooling branch 9 times, most recently from 3d69d78 to e41bb01 Compare May 27, 2026 10:11
@renovate renovate Bot force-pushed the renovate/major-frontend-app-runtime-tooling branch 5 times, most recently from d31493e to 521bf3c Compare June 5, 2026 10:16
@renovate renovate Bot force-pushed the renovate/major-frontend-app-runtime-tooling branch 7 times, most recently from adba0f1 to 56e590e Compare June 15, 2026 01:00
@renovate renovate Bot force-pushed the renovate/major-frontend-app-runtime-tooling branch from 56e590e to f6dd1d6 Compare June 18, 2026 17:54
@renovate renovate Bot force-pushed the renovate/major-frontend-app-runtime-tooling branch from f6dd1d6 to 936e4ed Compare June 19, 2026 17:15
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.

0 participants