Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 27, 2025

Bumps the minor-and-patch group with 17 updates in the / directory:

Package From To
@react-navigation/bottom-tabs 7.4.8 7.5.0
@react-navigation/native-stack 7.3.27 7.5.1
@reduxjs/toolkit 2.9.0 2.9.2
react 19.1.1 19.2.0
react-native 0.82.0 0.82.1
react-native-gesture-handler 2.28.0 2.29.0
react-native-screens 4.16.0 4.18.0
@babel/core 7.28.4 7.28.5
@babel/preset-env 7.28.3 7.28.5
@react-native/babel-preset 0.82.0 0.82.1
@react-native/eslint-config 0.82.0 0.82.1
@react-native/metro-config 0.82.0 0.82.1
@react-native/typescript-config 0.82.0 0.82.1
eslint-plugin-unused-imports 4.2.0 4.3.0
lint-staged 16.2.4 16.2.6
prettier 3.5.3 3.6.2
react-test-renderer 19.1.1 19.2.0

Updates @react-navigation/bottom-tabs from 7.4.8 to 7.5.0

Release notes

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

@​react-navigation/bottom-tabs@​7.5.0

7.5.0 (2025-10-22)

Features

@​react-navigation/bottom-tabs@​7.4.9

7.4.9 (2025-10-13)

Bug Fixes

Changelog

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

7.5.0 (2025-10-22)

Features

7.4.9 (2025-10-13)

Bug Fixes

Commits
  • 6f98ce1 chore: publish
  • 2687f66 feat: move Badge to elements and expose it in public API (#12796)
  • 9272077 feat(ios): add ability to render native buttons in header on iOS (#12657)
  • 410fa93 chore: update dev dependencies
  • 55b00a4 feat: use continuous rounded corners
  • d78bad4 chore: update react-native-screens
  • f330de9 chore: publish
  • b6d939c fix: default headerTransparent to false in native-stack
  • See full diff in compare view

Updates @react-navigation/elements from 2.6.5 to 2.7.0

Release notes

Sourced from @​react-navigation/elements's releases.

@​react-navigation/elements@​2.7.0

2.7.0 (2025-10-22)

Features

Changelog

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

2.7.0 (2025-10-22)

Features

Commits

Updates @react-navigation/native-stack from 7.3.27 to 7.5.1

Release notes

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

@​react-navigation/native-stack@​7.5.1

7.5.1 (2025-10-23)

Bug Fixes

@​react-navigation/native-stack@​7.5.0

7.5.0 (2025-10-22)

Features

@​react-navigation/native-stack@​7.4.0

7.4.0 (2025-10-22)

Bug Fixes

Features

@​react-navigation/native-stack@​7.3.28

7.3.28 (2025-10-13)

Bug Fixes

Changelog

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

7.5.1 (2025-10-23)

Bug Fixes

7.5.0 (2025-10-22)

Features

7.4.0 (2025-10-22)

Bug Fixes

Features

7.3.28 (2025-10-13)

Bug Fixes

Commits
  • 40dba40 chore: publish
  • 0b69959 fix: don't override headerRight with headerRightItems on Android
  • b3e8d80 chore: publish
  • 94ce60a feat: improve API for icons in header buttons
  • 6f98ce1 chore: publish
  • e3bd4e2 feat: export scrollEdgeEffects prop from react-native-screens (#12797)
  • 9272077 feat(ios): add ability to render native buttons in header on iOS (#12657)
  • 53c06ed fix: revert defaulting headerTransparent to false
  • d78bad4 chore: update react-native-screens
  • f330de9 chore: publish
  • Additional commits viewable in compare view

Updates @reduxjs/toolkit from 2.9.0 to 2.9.2

Release notes

Sourced from @​reduxjs/toolkit's releases.

v2.9.2

This bugfix release fixes a potential internal data leak in SSR environments, improves handling of headers in fetchBaseQuery, improves retry handling for unexpected errors and request aborts, and fixes a longstanding issue with prefetch leaving an unused subscription. We've also shipped a new graphqlRequestBaseQuery release with updated dependencies and better error handling.

Changelog

Internal Subscription Handling

We had a report that a Redux SSR app had internal subscription data showing up across different requests. After investigation, this was a bug introduced by the recent RTKQ perf optimizations, where the internal subscription fields were hoisted outside of the middleware setup and into createApi itself. This meant they existed outside of the per-store-instance lifecycle. We've reworked the logic to ensure the data is per-store again. We also fixed another issue that miscalculated when there was an active request while checking for cache entry cleanup.

Note that no actual app data was leaked in this case, just the internal subscription IDs that RTKQ uses in its own middleware to track the existence of subscriptions per cache entry.

fetchBaseQuery Headers

We've updated fetchBaseQuery to avoid setting content-type in cases where a non-JSONifiable value like FormData is being passed as the request body, so that the browser can set that content type itself. It also now sets the accept header based on the selected responseHandler (JSON or text).

retry Behavior and Cleanup

The retry util now respects the maxRetries option when catching unknown errors in addition to the existing known errors logic. It also now checks the request's AbortSignal and will stop retrying if aborted.

In conjunction with that, dispatching resetApiState will now abort all in-flight requests.

The prefetch util and usePrefetch hook had a long-standing issue where they would create a subscription for a cache entry, but there was no way to clean up that subscription. This meant that the cache entry was effectively permanent. They now initiate the request without adding a subscription. This will fetch the cache entry and leave it in the store for the keepUnusedDataFor period as intended, giving your app time to actually subscribe to the value (such as prefetching the cache entry in a route handler, and then subscribing in a component).

graphqlRequestBaseQuery

We've published @rtk-query/graphql-request-base-query v2.3.2, which updates the graphql-request dep to ^7. We also fixed an issue where the error handling rethrew unknown errors - it now returns {error} as a base query is supposed to.

What's Changed

Full Changelog: reduxjs/redux-toolkit@v2.9.1...v2.9.2

v2.9.1

This bugfix release fixes how sorted entity adapters handle duplicate IDs, tweaks the TS types for RTKQ query state cache entries to improve how the data field is handled, and adds better cleanup for long-running listener middleware effects.

What's Changed

Full Changelog: reduxjs/redux-toolkit@v2.9.0...v2.9.1

Commits
  • 32887d7 Release 2.9.2
  • 4432629 Don't create subscriptions for prefetch calls (#5116)
  • c86d948 Add retry abort handling and abort on resetApiState (#5114)
  • 02630d2 fix: update graphql-request dependency to include version ^7.0.0 (#4987)
  • 1b95037 Respect maxRetries for unexpected errors (#5113)
  • c490b19 Improve fetchBaseQuery default headers handling (#5112)
  • 7b7faea Fix potential subscription leakage in SSR environments (#5111)
  • fde0be7 Release 2.9.1
  • 47e7d81 Release @​rtk-query/codegen-openapi 2.1.0
  • b4b7d17 Allow executing effects that have become unsubscribed to be canceled by `list...
  • Additional commits viewable in compare view

Updates react from 19.1.1 to 19.2.0

Release notes

Sourced from react's releases.

19.2.0 (Oct 1, 2025)

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

... (truncated)

Changelog

Sourced from react's changelog.

19.2.0 (October 1st, 2025)

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

... (truncated)

Commits

Updates react-native from 0.82.0 to 0.82.1

Release notes

Sourced from react-native's releases.

0.82.1

Fixed

Android specific

iOS specific

  • Fixed issue when using gnu coreutils cp command when using precompiled binaries causing compilation error (068ec39aea by @​chrfalch)

Hermes 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.

Changelog

Sourced from react-native's changelog.

v0.82.1

Fixed

Android specific

iOS specific

  • Fixed issue when using gnu coreutils cp command when using precompiled binaries causing compilation error (068ec39aea by @​chrfalch)
Commits

Updates react-native-gesture-handler from 2.28.0 to 2.29.0

Release notes

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

2.29.0

❗ Important changes

👍 Improvements

🐛 Bug fixes

🔢 Miscellaneous

New Contributors

Full Changelog: software-mansion/react-native-gesture-handler@2.28.0...2.29.0

Commits
  • d2a3232 Merge branch 'main' into 2.29-stable
  • 648ba29 Add working directory to publish workflow (#3762)
  • 2c6722d Merge branch 'main' into 2.29-stable
  • b75bb5c Add workflow for releases (#3760)
  • bed9604 Merge branch 'main' into 2.29-stable
  • 5cef081 Release 2.29.0 (#3755)
  • 58725c0 Merge branch '@​mbert/release-2.29.0' of github.com:software-mansion/react-nat...
  • 4a2a39a Merge branch 'main' into @​mbert/release-2.29.0
  • 23c2ccd Merge branch 'main' into @​mbert/release-2.29.0
  • ec656ba [iOS] Fix gestures on iOS 26 (#3756)
  • Additional commits viewable in compare view
Maintainer changes

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


Updates react-native-screens from 4.16.0 to 4.18.0

Release notes

Sourced from react-native-screens's releases.

4.18.0

Minor release with important changes in bottom tabs icons API, recently added header items API and few more.

What's Changed

🟢 Improvements / Changes

🐞 Bug fixes

🔢 Misc

Full Changelog: software-mansion/react-native-screens@4.17.1...4.18.0

4.17.1

Patch release with fix for failing iOS build in release mode.

What's Changed

Full Changelog: software-mansion/react-native-screens@4.17.0...4.17.1

4.17.0

Minor release including:

  • 👉🏻 Important patches for iOS 26 behaviour
  • 👉🏻 New API for specifying native header items on iOS by @​johankasperi,
  • 👉🏻 New experimental safe area component handling native header / bottom tabs, etc.,
  • 👉🏻 Support for UIScrollEdgeEffect,
  • 👉🏻 Support for "glassy" form sheets on iOS 26,
  • 👉🏻 Many other important patches & improvements.

... (truncated)

Commits
  • f6be5f3 release: 4.18.0 (#3332)
  • bccbca0 refactor!(iOS): move changesSelectionAsPrimaryAction to menu button item (#...
  • ca62b83 chore: use label instead of title in example using react-navigation (#3329)
  • 9bb2409 fix(iOS): handle var...

    Description has been truncated

… updates

Bumps the minor-and-patch group with 17 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.8` | `7.5.0` |
| [@react-navigation/native-stack](https://github.com/react-navigation/react-navigation/tree/HEAD/packages/native-stack) | `7.3.27` | `7.5.1` |
| [@reduxjs/toolkit](https://github.com/reduxjs/redux-toolkit) | `2.9.0` | `2.9.2` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.1.1` | `19.2.0` |
| [react-native](https://github.com/facebook/react-native/tree/HEAD/packages/react-native) | `0.82.0` | `0.82.1` |
| [react-native-gesture-handler](https://github.com/software-mansion/react-native-gesture-handler) | `2.28.0` | `2.29.0` |
| [react-native-screens](https://github.com/software-mansion/react-native-screens) | `4.16.0` | `4.18.0` |
| [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.28.4` | `7.28.5` |
| [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) | `7.28.3` | `7.28.5` |
| [@react-native/babel-preset](https://github.com/facebook/react-native) | `0.82.0` | `0.82.1` |
| [@react-native/eslint-config](https://github.com/facebook/react-native/tree/HEAD/packages/eslint-config-react-native) | `0.82.0` | `0.82.1` |
| [@react-native/metro-config](https://github.com/facebook/react-native/tree/HEAD/packages/metro-config) | `0.82.0` | `0.82.1` |
| [@react-native/typescript-config](https://github.com/facebook/react-native/tree/HEAD/packages/typescript-config) | `0.82.0` | `0.82.1` |
| [eslint-plugin-unused-imports](https://github.com/sweepline/eslint-plugin-unused-imports) | `4.2.0` | `4.3.0` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `16.2.4` | `16.2.6` |
| [prettier](https://github.com/prettier/prettier) | `3.5.3` | `3.6.2` |
| [react-test-renderer](https://github.com/facebook/react/tree/HEAD/packages/react-test-renderer) | `19.1.1` | `19.2.0` |



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

Updates `@react-navigation/elements` from 2.6.5 to 2.7.0
- [Release notes](https://github.com/react-navigation/react-navigation/releases)
- [Changelog](https://github.com/react-navigation/react-navigation/blob/@react-navigation/[email protected]/packages/elements/CHANGELOG.md)
- [Commits](https://github.com/react-navigation/react-navigation/commits/@react-navigation/[email protected]/packages/elements)

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

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

Updates `react` from 19.1.1 to 19.2.0
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.0/packages/react)

Updates `react-native` from 0.82.0 to 0.82.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.82.1/packages/react-native)

Updates `react-native-gesture-handler` from 2.28.0 to 2.29.0
- [Release notes](https://github.com/software-mansion/react-native-gesture-handler/releases)
- [Commits](software-mansion/react-native-gesture-handler@2.28.0...2.29.0)

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

Updates `@babel/core` from 7.28.4 to 7.28.5
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.28.5/packages/babel-core)

Updates `@babel/preset-env` from 7.28.3 to 7.28.5
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.28.5/packages/babel-preset-env)

Updates `@react-native/babel-preset` from 0.82.0 to 0.82.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.82.0...v0.82.1)

Updates `@react-native/eslint-config` from 0.82.0 to 0.82.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.82.1/packages/eslint-config-react-native)

Updates `@react-native/metro-config` from 0.82.0 to 0.82.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.82.1/packages/metro-config)

Updates `@react-native/typescript-config` from 0.82.0 to 0.82.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.82.1/packages/typescript-config)

Updates `eslint-plugin-unused-imports` from 4.2.0 to 4.3.0
- [Commits](sweepline/eslint-plugin-unused-imports@v4.2.0...v4.3.0)

Updates `lint-staged` from 16.2.4 to 16.2.6
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v16.2.4...v16.2.6)

Updates `prettier` from 3.5.3 to 3.6.2
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.5.3...3.6.2)

Updates `react-test-renderer` from 19.1.1 to 19.2.0
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.0/packages/react-test-renderer)

---
updated-dependencies:
- dependency-name: "@react-navigation/bottom-tabs"
  dependency-version: 7.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@react-navigation/elements"
  dependency-version: 2.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@react-navigation/native-stack"
  dependency-version: 7.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@reduxjs/toolkit"
  dependency-version: 2.9.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: react
  dependency-version: 19.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: react-native
  dependency-version: 0.82.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: react-native-gesture-handler
  dependency-version: 2.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: react-native-screens
  dependency-version: 4.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@babel/core"
  dependency-version: 7.28.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@babel/preset-env"
  dependency-version: 7.28.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@react-native/babel-preset"
  dependency-version: 0.82.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@react-native/eslint-config"
  dependency-version: 0.82.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@react-native/metro-config"
  dependency-version: 0.82.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@react-native/typescript-config"
  dependency-version: 0.82.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: eslint-plugin-unused-imports
  dependency-version: 4.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: lint-staged
  dependency-version: 16.2.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: prettier
  dependency-version: 3.6.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: react-test-renderer
  dependency-version: 19.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 10, 2025

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

@dependabot dependabot bot closed this Nov 10, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/minor-and-patch-f15e8f1115 branch November 10, 2025 12:00
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