Skip to content

Bump the production-dependencies group across 1 directory with 19 updates#403

Closed
dependabot[bot] wants to merge 1 commit into
developfrom
dependabot/npm_and_yarn/production-dependencies-c799a43ba9
Closed

Bump the production-dependencies group across 1 directory with 19 updates#403
dependabot[bot] wants to merge 1 commit into
developfrom
dependabot/npm_and_yarn/production-dependencies-c799a43ba9

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 8, 2025

Copy link
Copy Markdown
Contributor

Bumps the production-dependencies group with 19 updates in the / directory:

Package From To
@react-navigation/bottom-tabs 7.4.2 7.4.7
@react-navigation/native 7.1.14 7.1.17
@react-navigation/native-stack 7.3.21 7.3.26
@reduxjs/toolkit 2.8.2 2.9.0
@shopify/flash-list 1.8.3 2.0.3
i18next 25.3.0 25.5.2
pretty-bytes 7.0.0 7.0.1
react-i18next 15.5.3 15.7.3
react-native-config 1.5.5 1.5.9
react-native-localize 3.4.2 3.5.2
react-native-logs 5.3.0 5.5.0
react-native-paper-dates 0.22.47 0.22.50
react-native-reanimated 3.18.0 4.1.0
react-native-safe-area-context 5.5.1 5.6.1
react-native-screens 4.11.1 4.16.0
react-native-share 12.1.0 12.2.0
react-native-svg 15.12.0 15.12.1
react-native-vector-icons 10.2.0 10.3.0
uuid 11.1.0 13.0.0

Updates @react-navigation/bottom-tabs from 7.4.2 to 7.4.7

Changelog

Sourced from @​react-navigation/bottom-tabs's changelog.

7.4.7 (2025-08-31)

Note: Version bump only for package @​react-navigation/bottom-tabs

7.4.6 (2025-08-10)

Note: Version bump only for package @​react-navigation/bottom-tabs

7.4.5 (2025-08-02)

Note: Version bump only for package @​react-navigation/bottom-tabs

7.4.4 (2025-07-26)

Note: Version bump only for package @​react-navigation/bottom-tabs

7.4.3 (2025-07-25)

Note: Version bump only for package @​react-navigation/bottom-tabs

Commits

Updates @react-navigation/native from 7.1.14 to 7.1.17

Changelog

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

7.1.17 (2025-08-02)

Note: Version bump only for package @​react-navigation/native

7.1.16 (2025-07-26)

Note: Version bump only for package @​react-navigation/native

7.1.15 (2025-07-25)

Note: Version bump only for package @​react-navigation/native

Commits

Updates @react-navigation/native-stack from 7.3.21 to 7.3.26

Changelog

Sourced from @​react-navigation/native-stack's changelog.

7.3.26 (2025-08-31)

Note: Version bump only for package @​react-navigation/native-stack

7.3.25 (2025-08-10)

Note: Version bump only for package @​react-navigation/native-stack

7.3.24 (2025-08-02)

Note: Version bump only for package @​react-navigation/native-stack

7.3.23 (2025-07-26)

Note: Version bump only for package @​react-navigation/native-stack

7.3.22 (2025-07-25)

Note: Version bump only for package @​react-navigation/native-stack

Commits

Updates @reduxjs/toolkit from 2.8.2 to 2.9.0

Release notes

Sourced from @​reduxjs/toolkit's releases.

v2.9.0

This feature release rewrites RTK Query's internal subscription and polling systems and the useStableQueryArgs hook for better perf, adds automatic AbortSignal handling to requests still in progress when a cache entry is removed, fixes a bug with the transformResponse option for queries, adds a new builder.addAsyncThunk method, and fixes assorted other issues.

Changelog

RTK Query Performance Improvements

We had reports that RTK Query could get very slow when there were thousands of subscriptions to the same cache entry. After investigation, we found that the internal polling logic was attempting to recalculate the minimum polling time after every new subscription was added. This was highly inefficient, as most subscriptions don't change polling settings, and it required repeated O(n) iteration over the growing list of subscriptions. We've rewritten that logic to debounce the update check and ensure a max of one polling value update per tick for the entire API instance.

Related, while working on the request abort changes, testing showed that use of plain Records to hold subscription data was inefficient because we have to iterate keys to check size. We've rewritten the subscription handling internals to use Maps instead, as well as restructuring some additional checks around in-flight requests.

These two improvements drastically improved runtime perf for the thousands-of-subscriptions-one-cache-entry repro, eliminating RTK methods as visible hotspots in the perf profiles. It likely also improves perf for general usage as well.

We've also changed the implementation of our internal useStableQueryArgs hook to avoid calling serializeQueryArgs on its value, which can avoid potential perf issues when a query takes a very large object as its cache key.

[!NOTE] The internal logic switched from serializing the query arg to doing reference checks on nested values. This means that if you are passing a non-POJO value in a query arg, such as useSomeQuery({a: new Set()}), and you have refetchOnMountOrArgChange enabled, this will now trigger refeteches each time as the Set references are now considered different based on equality instead of serialization.

Abort Signal Handling on Cleanup

We've had numerous requests over time for various forms of "abort in-progress requests when the data is no longer needed / params change / component unmounts / some expensive request is taking too long". This is a complex topic with multiple potential use cases, and our standard answer has been that we don't want to abort those requests - after all, cache entries default to staying in memory for 1 minute after the last subscription is removed, so RTKQ's cache can still be updated when the request completes. That also means that it doesn't make sense to abort a request "on unmount".

However, it does then make sense to abort an in-progress request if the cache entry itself is removed. Given that, we've updated our cache handling to automatically call the existing resPromise.abort() method in that case, triggering the AbortSignal attached to the baseQuery. The handling at that point depends on your app - fetchBaseQuery should handle that, a custom baseQuery or queryFn would need to listen to the AbortSignal.

We do have an open issue asking for further discussions of potential abort / cancelation use cases and would appreciate further feedback.

New Options

The builder callback used in createReducer and createSlice.extraReducers now has builder.addAsyncThunk available, which allows handling specific actions from a thunk in the same way that you could define a thunk inside createSlice.reducers:

        const slice = createSlice({
          name: 'counter',
          initialState: {
            loading: false,
            errored: false,
            value: 0,
          },
          reducers: {},
          extraReducers: (builder) =>
            builder.addAsyncThunk(asyncThunk, {
              pending(state) {
                state.loading = true
              },
              fulfilled(state, action) {
                state.value = action.payload
              },
              rejected(state) {
                state.errored = true
              },
</tr></table> 

... (truncated)

Commits
  • 98c54c6 Release 2.9.0
  • 0a86abd export some useful async thunk types
  • d02c27a add docs for addAsyncThunk (#5066)
  • ab346b9 fixdoc: incorrect position of keepUnusedDataFor for two scenarios (#5062)
  • d2bbb8d Rewrite subscription handling and polling calculations for better perf (#5064)
  • 3c6de47 Merge pull request #5065 from reduxjs/feature/TS5.9-matrix
  • c37b977 Add missing error value
  • 38537c3 Don't run Node10 checks for TS 6+
  • 821be20 Add TS 5.9 to the matrix
  • 407688d Abort pending requests if the cache entry is removed (#5061)
  • Additional commits viewable in compare view

Updates @shopify/flash-list from 1.8.3 to 2.0.3

Release notes

Sourced from @​shopify/flash-list's releases.

v2.0.3

What's Changed

Full Changelog: Shopify/flash-list@v2.0.2...v2.0.3

v2.0.2

What's Changed

Full Changelog: Shopify/flash-list@v2.0.1...v2.0.2

v2.0.2-rc.1

What's Changed

Full Changelog: Shopify/flash-list@v2.0.0-rc.12...v2.0.2-rc.1

v2.0.1

What's Changed

Full Changelog: Shopify/flash-list@v2.0.0...v2.0.1

v2.0.0

What's Changed

  • Shipping v2 🚀 . To understand what's new in v2 click here. Migration guide is available here.
  • Removed v1 code and dropped old architecture support.

Full Changelog: Shopify/flash-list@v1.8.3...v2.0.0

v2.0.0-rc.12

What's Changed

Full Changelog: Shopify/flash-list@v2.0.0-rc.11...v2.0.0-rc.12

v2.0.0-rc.11

What's Changed

Full Changelog: Shopify/flash-list@v2.0.0-rc.10...v2.0.0-rc.11

v2.0.0-rc.10

What's Changed

... (truncated)

Commits

Updates i18next from 25.3.0 to 25.5.2

Release notes

Sourced from i18next's releases.

v25.5.2

  • fix last change => for cjs there is just 1 default export, no named exports, fixes 2348

v25.5.1

  • export keyFromSelector from index.cjs 2347

v25.5.0

  • export keyFromSelector function for testing purposes 2346

v25.4.2

  • fix: enableSelector: true doesn't work with custom keySeparator 2341

v25.4.1

  • fix: KeyPrefix not working with new selector api 2340

v25.4.0

  • add new selector API to improve TypeScript IDE performance 2322
    • To enable it, set enableSelector: true in your configuration options
    • With enableSelector: "optimize", i18next can now handle translation dictionaries of any size, without affecting IDE performance or build times
    • To assist with the migration, we've published the following packages:

v25.3.6

  • improve fix: Ordinals and non-ordinals don't work together 2337

v25.3.5

  • fix: Ordinals and non-ordinals don't work together 2337

v25.3.4

  • remove unnecessary debug logs

v25.3.3

  • fix: Brackets breaking nesting interpolation 2336

v25.3.2

  • fix dir() for non-Intl language codes 2330

v25.3.1

  • warn if legacy interpolation.format function is still used
Changelog

Sourced from i18next's changelog.

25.5.2

  • fix last change => for cjs there is just 1 default export, no named exports, fixes 2348

25.5.1

  • export keyFromSelector from index.cjs 2347

25.5.0

  • export keyFromSelector function for testing purposes 2346

25.4.2

  • fix: enableSelector: true doesn't work with custom keySeparator 2341

25.4.1

  • fix: KeyPrefix not working with new selector api 2340

25.4.0

  • add new selector API to improve TypeScript IDE performance 2322
    • To enable it, set enableSelector: true in your configuration options
    • With enableSelector: "optimize", i18next can now handle translation dictionaries of any size, without affecting IDE performance or build times
    • To assist with the migration, we've published the following packages:

25.3.6

  • improve fix: Ordinals and non-ordinals don't work together 2337

25.3.5

  • fix: Ordinals and non-ordinals don't work together 2337

25.3.4

  • remove unnecessary debug logs

25.3.3

  • fix: Brackets breaking nesting interpolation 2336

25.3.2

  • fix dir() for non-Intl language codes 2330

25.3.1

... (truncated)

Commits

Updates pretty-bytes from 7.0.0 to 7.0.1

Release notes

Sourced from pretty-bytes's releases.

v7.0.1

  • Fix precision with the binary option (#88) c9fd951

sindresorhus/pretty-bytes@v7.0.0...v7.0.1

Commits

Updates react-i18next from 15.5.3 to 15.7.3

Changelog

Sourced from react-i18next's changelog.

15.7.3

  • exports TransSelectorProps 1862 to address 1861

15.7.2

  • update i18next dependency

15.7.1

  • Fix: _EnableSelector type (for compatibility, enableSelector does not exist in TypeOptions) 1858

15.7.0

  • add new selector API to improve TypeScript IDE performance 1852
    • read more about it here

15.6.1

avoid exception when passing bindI18n: false 1856

15.6.0

fix: passing components as object should still allow for indexed matching of children 1854

Commits

Updates react-native-config from 1.5.5 to 1.5.9

Release notes

Sourced from react-native-config's releases.

v1.5.9

fixing android build(#845)

v1.5.8

Added android build fix with a minimal CMake stub (#844)

v1.5.7

added fabric support for windows (lugg/react-native-config#840)

v1.5.6

  • fix: windows bump WindowsTargetPlatformMinVersion (#752)
Commits
  • 55382e6 fixing android build (#845)
  • 127c5cc v1.5.8
  • 97221e3 Merge pull request #844 from protikbiswas100/fabric-windows-implementation
  • f16fffd Merge branch 'master' into fabric-windows-implementation
  • 129df1e fixing android build with a CMake stub
  • ce6c322 v1.5.7
  • c8c516e added fabric support for windows (#840)
  • 50ef088 fixing tetcase
  • 3993666 updating test and removing deprecated selenium driver
  • 95a381d removing redundant build step
  • Additional commits viewable in compare view

Updates react-native-localize from 3.4.2 to 3.5.2

Release notes

Sourced from react-native-localize's releases.

3.5.2

  • Fix iOS locales isRTL value when its solely based on scriptCode

3.5.1

  • Set @expo/config-plugins as peer dependency

3.5.0

Commits

Updates react-native-logs from 5.3.0 to 5.5.0

Release notes

Sourced from react-native-logs's releases.

v 5.5.0

  • Add extension on Crashlytics errors (as fileName)

v 5.4.0

  • Fix Readme (issue #115)
  • Fix Sentry compatibility (issue #118)
  • Fix Crashlytics error report (issue #110)
  • Crashlytics: a log is only recorded as an error if its level matches a level defined in the errorLevels option
  • Improve object serialization logic
  • Change FS packages type to any (issue #112)
  • Minor bugfix
Changelog

Sourced from react-native-logs's changelog.

[5.5.0] - 07-09-2025

  • Add extension on Crashlytics errors (as fileName)

[5.4.0] - 06-09-2025

  • Fix Readme (issue #115)
  • Fix Sentry compatibility (issue #118)
  • Fix Crashlytics error report (issue #110)
  • Crashlytics: a log is only recorded as an error if its level matches a level defined in the errorLevels option
  • Improve object serialization logic
  • Change FS packages type to any (issue #112)
  • Minor bugfix
Commits

Updates react-native-paper-dates from 0.22.47 to 0.22.50

Release notes

Sourced from react-native-paper-dates's releases.

Release 0.22.50

What's Changed

Full Changelog: web-ridge/react-native-paper-dates@v0.22.49...v0.22.50

Release 0.22.49

Full Changelog: web-ridge/react-native-paper-dates@v0.22.47...v0.22.49

Commits

Updates react-native-reanimated from 3.18.0 to 4.1.0

Release notes

Sourced from react-native-reanimated's releases.

4.1.0

What's Changed

... (truncated)

Commits
  • ef5c9fd chore: post-release Worklets 0.5.0 (#8174)
  • 951ef77 chore: prerelease compat bump (#8172)
  • cb0f1b5 fix(Reanimated): re-registering for every style in ComponentDidUpdate (#8171)
  • de36d85 fix: Default boxShadow color value (#8163)
  • 2a2e879 fix: Stop passing unfiltered props to the rendered component (#8162)
  • f220d0b feat(Reanimated): mutable - reset dirty flag on each read (#8122)
  • 851d6f1 Use legacy_makeMutableUI in animation manager (#8155)
  • 214709f Deprecate old spring layout animations modifiers (#8154)
  • fca734b chore(Worklets): common compatibility source for docs and CI (#8068)
  • c07e7d2 Fix worklets version checking in runtime (#8146)
  • Additional commits viewable in compare view

Updates react-native-safe-area-context from 5.5.1 to 5.6.1

Release notes

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

Release 5.6.1

5.6.1 (2025-08-19)

Bug Fixes

  • RNCSafeAreaProvider compilation on RN 0.74 (#657) (ee466e2)

Release 5.6.0

5.6.0 (2025-08-07)

Features

  • Support RN 0.81: set compile options using target_compile_reactnative_options (#653) (c505e73)

Release 5.5.2

5.5.2 (2025-07-10)

  • [RN 0.81] Do not set the ShadowNodeTraits::Trait::DirtyYogaNode (#646)
Commits

…ates

Bumps the production-dependencies group with 19 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@react-navigation/bottom-tabs](https://github.com/react-navigation/react-navigation/tree/HEAD/packages/bottom-tabs) | `7.4.2` | `7.4.7` |
| [@react-navigation/native](https://github.com/react-navigation/react-navigation/tree/HEAD/packages/native) | `7.1.14` | `7.1.17` |
| [@react-navigation/native-stack](https://github.com/react-navigation/react-navigation/tree/HEAD/packages/native-stack) | `7.3.21` | `7.3.26` |
| [@reduxjs/toolkit](https://github.com/reduxjs/redux-toolkit) | `2.8.2` | `2.9.0` |
| [@shopify/flash-list](https://github.com/Shopify/flash-list) | `1.8.3` | `2.0.3` |
| [i18next](https://github.com/i18next/i18next) | `25.3.0` | `25.5.2` |
| [pretty-bytes](https://github.com/sindresorhus/pretty-bytes) | `7.0.0` | `7.0.1` |
| [react-i18next](https://github.com/i18next/react-i18next) | `15.5.3` | `15.7.3` |
| [react-native-config](https://github.com/luggit/react-native-config) | `1.5.5` | `1.5.9` |
| [react-native-localize](https://github.com/zoontek/react-native-localize) | `3.4.2` | `3.5.2` |
| [react-native-logs](https://github.com/mowispace/react-native-logs) | `5.3.0` | `5.5.0` |
| [react-native-paper-dates](https://github.com/web-ridge/react-native-paper-dates) | `0.22.47` | `0.22.50` |
| [react-native-reanimated](https://github.com/software-mansion/react-native-reanimated/tree/HEAD/packages/react-native-reanimated) | `3.18.0` | `4.1.0` |
| [react-native-safe-area-context](https://github.com/th3rdwave/react-native-safe-area-context) | `5.5.1` | `5.6.1` |
| [react-native-screens](https://github.com/software-mansion/react-native-screens) | `4.11.1` | `4.16.0` |
| [react-native-share](https://github.com/react-native-community/react-native-share) | `12.1.0` | `12.2.0` |
| [react-native-svg](https://github.com/react-native-community/react-native-svg) | `15.12.0` | `15.12.1` |
| [react-native-vector-icons](https://github.com/oblador/react-native-vector-icons) | `10.2.0` | `10.3.0` |
| [uuid](https://github.com/uuidjs/uuid) | `11.1.0` | `13.0.0` |



Updates `@react-navigation/bottom-tabs` from 7.4.2 to 7.4.7
- [Release notes](https://github.com/react-navigation/react-navigation/releases)
- [Changelog](https://github.com/react-navigation/react-navigation/blob/@react-navigation/bottom-tabs@7.4.7/packages/bottom-tabs/CHANGELOG.md)
- [Commits](https://github.com/react-navigation/react-navigation/commits/@react-navigation/bottom-tabs@7.4.7/packages/bottom-tabs)

Updates `@react-navigation/native` from 7.1.14 to 7.1.17
- [Release notes](https://github.com/react-navigation/react-navigation/releases)
- [Changelog](https://github.com/react-navigation/react-navigation/blob/@react-navigation/native@7.1.17/packages/native/CHANGELOG.md)
- [Commits](https://github.com/react-navigation/react-navigation/commits/@react-navigation/native@7.1.17/packages/native)

Updates `@react-navigation/native-stack` from 7.3.21 to 7.3.26
- [Release notes](https://github.com/react-navigation/react-navigation/releases)
- [Changelog](https://github.com/react-navigation/react-navigation/blob/@react-navigation/native-stack@7.3.26/packages/native-stack/CHANGELOG.md)
- [Commits](https://github.com/react-navigation/react-navigation/commits/@react-navigation/native-stack@7.3.26/packages/native-stack)

Updates `@reduxjs/toolkit` from 2.8.2 to 2.9.0
- [Release notes](https://github.com/reduxjs/redux-toolkit/releases)
- [Commits](reduxjs/redux-toolkit@v2.8.2...v2.9.0)

Updates `@shopify/flash-list` from 1.8.3 to 2.0.3
- [Release notes](https://github.com/Shopify/flash-list/releases)
- [Changelog](https://github.com/Shopify/flash-list/blob/main/CHANGELOG.md)
- [Commits](Shopify/flash-list@v1.8.3...v2.0.3)

Updates `i18next` from 25.3.0 to 25.5.2
- [Release notes](https://github.com/i18next/i18next/releases)
- [Changelog](https://github.com/i18next/i18next/blob/master/CHANGELOG.md)
- [Commits](i18next/i18next@v25.3.0...v25.5.2)

Updates `pretty-bytes` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/sindresorhus/pretty-bytes/releases)
- [Commits](sindresorhus/pretty-bytes@v7.0.0...v7.0.1)

Updates `react-i18next` from 15.5.3 to 15.7.3
- [Changelog](https://github.com/i18next/react-i18next/blob/master/CHANGELOG.md)
- [Commits](i18next/react-i18next@v15.5.3...v15.7.3)

Updates `react-native-config` from 1.5.5 to 1.5.9
- [Release notes](https://github.com/luggit/react-native-config/releases)
- [Changelog](https://github.com/lugg/react-native-config/blob/master/release.config.js)
- [Commits](react-native-config/react-native-config@v1.5.5...v1.5.9)

Updates `react-native-localize` from 3.4.2 to 3.5.2
- [Release notes](https://github.com/zoontek/react-native-localize/releases)
- [Commits](zoontek/react-native-localize@3.4.2...3.5.2)

Updates `react-native-logs` from 5.3.0 to 5.5.0
- [Release notes](https://github.com/mowispace/react-native-logs/releases)
- [Changelog](https://github.com/mowispace/react-native-logs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mowispace/react-native-logs/commits/5.5.0)

Updates `react-native-paper-dates` from 0.22.47 to 0.22.50
- [Release notes](https://github.com/web-ridge/react-native-paper-dates/releases)
- [Commits](web-ridge/react-native-paper-dates@v0.22.47...v0.22.50)

Updates `react-native-reanimated` from 3.18.0 to 4.1.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.1.0/packages/react-native-reanimated)

Updates `react-native-safe-area-context` from 5.5.1 to 5.6.1
- [Release notes](https://github.com/th3rdwave/react-native-safe-area-context/releases)
- [Commits](AppAndFlow/react-native-safe-area-context@v5.5.1...v5.6.1)

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

Updates `react-native-share` from 12.1.0 to 12.2.0
- [Release notes](https://github.com/react-native-community/react-native-share/releases)
- [Changelog](https://github.com/react-native-share/react-native-share/blob/main/CHANGELOG.md)
- [Commits](react-native-share/react-native-share@v12.1.0...v12.2.0)

Updates `react-native-svg` from 15.12.0 to 15.12.1
- [Release notes](https://github.com/react-native-community/react-native-svg/releases)
- [Commits](software-mansion/react-native-svg@v15.12.0...v15.12.1)

Updates `react-native-vector-icons` from 10.2.0 to 10.3.0
- [Release notes](https://github.com/oblador/react-native-vector-icons/releases)
- [Commits](https://github.com/oblador/react-native-vector-icons/commits)

Updates `uuid` from 11.1.0 to 13.0.0
- [Release notes](https://github.com/uuidjs/uuid/releases)
- [Changelog](https://github.com/uuidjs/uuid/blob/main/CHANGELOG.md)
- [Commits](uuidjs/uuid@v11.1.0...v13.0.0)

---
updated-dependencies:
- dependency-name: "@react-navigation/bottom-tabs"
  dependency-version: 7.4.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@react-navigation/native"
  dependency-version: 7.1.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@react-navigation/native-stack"
  dependency-version: 7.3.26
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@reduxjs/toolkit"
  dependency-version: 2.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@shopify/flash-list"
  dependency-version: 2.0.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: i18next
  dependency-version: 25.5.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: pretty-bytes
  dependency-version: 7.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: react-i18next
  dependency-version: 15.7.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: react-native-config
  dependency-version: 1.5.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: react-native-localize
  dependency-version: 3.5.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: react-native-logs
  dependency-version: 5.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: react-native-paper-dates
  dependency-version: 0.22.50
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: react-native-reanimated
  dependency-version: 4.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: react-native-safe-area-context
  dependency-version: 5.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: react-native-screens
  dependency-version: 4.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: react-native-share
  dependency-version: 12.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: react-native-svg
  dependency-version: 15.12.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: react-native-vector-icons
  dependency-version: 10.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: uuid
  dependency-version: 13.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
...

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 Sep 8, 2025
@dependabot @github

dependabot Bot commented on behalf of github Sep 15, 2025

Copy link
Copy Markdown
Contributor Author

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot rebase.

@dependabot @github

dependabot Bot commented on behalf of github Sep 22, 2025

Copy link
Copy Markdown
Contributor Author

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

@dependabot dependabot Bot closed this Sep 22, 2025
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/production-dependencies-c799a43ba9 branch September 22, 2025 21:17
@github-project-automation github-project-automation Bot moved this from Backlog to Done in OpenDTU-App Releases Sep 22, 2025
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

Status: Done

Development

Successfully merging this pull request may close these issues.

0 participants