Skip to content

chore(deps): bump the npm-dependencies group across 1 directory with 17 updates - #177

Closed
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/npm-dependencies-2eea473293
Closed

chore(deps): bump the npm-dependencies group across 1 directory with 17 updates#177
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/npm-dependencies-2eea473293

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 5, 2026

Copy link
Copy Markdown
Contributor

Bumps the npm-dependencies group with 17 updates in the / directory:

Package From To
@expo/config-plugins 57.0.5 57.0.6
@react-native/babel-preset 0.86.0 0.86.2
@typescript-eslint/parser 8.64.0 8.65.0
globals 17.7.0 17.9.0
prettier 3.9.5 3.9.6
react 19.2.7 19.2.8
@types/react 19.2.17 19.2.18
react-native 0.86.0 0.86.2
@react-navigation/bottom-tabs 7.18.8 7.18.14
@react-navigation/native 7.3.8 7.3.14
@react-navigation/native-stack 7.17.10 7.18.6
expo 57.0.6 57.0.9
expo-build-properties 57.0.5 57.0.8
expo-dev-client 57.0.6 57.0.10
expo-updates 57.0.7 57.0.11
react-native-screens 4.26.1 4.26.2
eslint-config-expo 57.0.0 57.0.1

Updates @expo/config-plugins from 57.0.5 to 57.0.6

Changelog

Sourced from @​expo/config-plugins's changelog.

57.0.6 - 2026-07-22

This version does not introduce any user-facing changes.

Commits

Updates @react-native/babel-preset from 0.86.0 to 0.86.2

Release notes

Sourced from @​react-native/babel-preset's releases.

0.86.2

⚠️ React Native 0.86.1 has not been published because of an issue with Maven. ⚠️

Fixed

  • Layout: Fixed display: contents nodes having hasNewLayout set incorrectly (36f69eff0d by j-piasecki)

Android

  • Runtime: Use explicit ReactInstanceManager.mHasStartedDestroyingLock instead of using ReactInstanceManager.mHasStartedDestroying (cdfba520fa by jingjing2222)
  • Runtime: Do not synchronize on java.lang.Boolean. (821045a24f by Yqwed)

Changed


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.

Changelog

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

v0.86.2

Fixed

Android

  • Runtime: Use explicit ReactInstanceManager.mHasStartedDestroyingLock instead of using ReactInstanceManager.mHasStartedDestroying (cdfba520fa by @​jingjing2222)
  • Runtime: Do not synchronize on java.lang.Boolean. (@​821045a24f by Yqwed)

Changed

v0.86.1

  • This release got burned because of an issue with Maven
Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​react-native/babel-preset since your current version.


Updates @typescript-eslint/parser from 8.64.0 to 8.65.0

Release notes

Sourced from @​typescript-eslint/parser's releases.

v8.65.0

8.65.0 (2026-07-20)

🚀 Features

  • add warning when TS 7 is detected (#12529)
  • eslint-plugin: [no-restricted-imports] deprecate extension rule (#12527, #19562, #11889)
  • eslint-plugin: [no-shadow] specialized error on enum declaration and member shadowing (#12578)
  • parser: add onUnsupportedTypeScriptVersion option to error on unsupported TypeScript versions (#12465)
  • typescript-estree: throw for invalid import defer syntax (#12552)

🩹 Fixes

  • eslint-plugin: [prefer-string-starts-ends-with] handle escaped $ ending regex literals (#12515)
  • eslint-plugin: [unbound-method] report unbound methods accessed via member expression on union types (#12448)
  • eslint-plugin: [no-unnecessary-parameter-property-assignment] don't flag computed assignments with a variable key (#12568)

❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from @​typescript-eslint/parser's changelog.

8.65.0 (2026-07-20)

🚀 Features

  • add warning when TS 7 is detected (#12529)
  • parser: add onUnsupportedTypeScriptVersion option to error on unsupported TypeScript versions (#12465)

❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

Commits
  • 63ba81b chore(release): publish 8.65.0
  • eaf4576 feat: add warning when TS 7 is detected (#12529)
  • d8f1044 feat(parser): add onUnsupportedTypeScriptVersion option to error on unsupport...
  • 0d06406 chore: add attw validation to repo (#12437)
  • c2386e4 chore(deps): update dependency prettier to v3.9.5 (#12486)
  • See full diff in compare view

Updates globals from 17.7.0 to 17.9.0

Release notes

Sourced from globals's releases.

v17.9.0

  • Update globals (2026-08-01) (#348) 5a958ed

sindresorhus/globals@v17.8.0...v17.9.0

v17.8.0

  • Update globals (2026-07-01) (#347) 7394811

sindresorhus/globals@v17.7.0...v17.8.0

Commits

Updates prettier from 3.9.5 to 3.9.6

Release notes

Sourced from prettier's releases.

3.9.6

What's Changed

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.9.6

diff

TypeScript: Preserve quotes for methods named new (#19621 by @​kovsu)

// Input
interface Container {
  "new"(id: string): number;
}
// Prettier 3.9.5
interface Container {
new(id: string): number;
}
// Prettier 3.9.6
interface Container {
"new"(id: string): number;
}

TypeScript: Support import defer (#19624, #19675 by @​fisker)

// Input
import defer * as foo from "foo";
// Prettier 3.9.5
import * as foo from "foo";
// Prettier 3.9.6
import defer * as foo from "foo";

JavaScript: Added a new official plugin @prettier/plugin-yuku (#19628, #19629 by @​fisker)

@prettier/plugin-yuku is powered by Yuku (A high-performance JavaScript/TypeScript compiler toolchain written in Zig).

This plugin includes two new parsers: yuku (JavaScript syntax) and yuku-ts (TypeScript syntax).

To use this plugin:

  1. Install the plugin:

    yarn add --dev prettier @prettier/plugin-yuku

... (truncated)

Commits

Updates react from 19.2.7 to 19.2.8

Release notes

Sourced from react's releases.

19.2.8 (July 21st, 2026)

React Server Components

Commits

Updates @types/react from 19.2.17 to 19.2.18

Commits

Updates react-native from 0.86.0 to 0.86.2

Release notes

Sourced from react-native's releases.

0.86.2

⚠️ React Native 0.86.1 has not been published because of an issue with Maven. ⚠️

Fixed

  • Layout: Fixed display: contents nodes having hasNewLayout set incorrectly (36f69eff0d by j-piasecki)

Android

  • Runtime: Use explicit ReactInstanceManager.mHasStartedDestroyingLock instead of using ReactInstanceManager.mHasStartedDestroying (cdfba520fa by jingjing2222)
  • Runtime: Do not synchronize on java.lang.Boolean. (821045a24f by Yqwed)

Changed


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.

Changelog

Sourced from react-native's changelog.

v0.86.2

Fixed

Android

  • Runtime: Use explicit ReactInstanceManager.mHasStartedDestroyingLock instead of using ReactInstanceManager.mHasStartedDestroying (cdfba520fa by @​jingjing2222)
  • Runtime: Do not synchronize on java.lang.Boolean. (@​821045a24f by Yqwed)

Changed

v0.86.1

  • This release got burned because of an issue with Maven
Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for react-native since your current version.


Updates @react-navigation/bottom-tabs from 7.18.8 to 7.18.14

Changelog

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

7.18.14 (2026-07-24)

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

7.18.13 (2026-07-20)

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

7.18.12 (2026-07-20)

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

7.18.11 (2026-07-17)

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

7.18.10 (2026-07-17)

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

7.18.9 (2026-07-16)

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

Commits

Updates @react-navigation/native from 7.3.8 to 7.3.14

Release notes

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

@​react-navigation/native@​7.3.14

7.3.14 (2026-07-24)

Bug Fixes

@​react-navigation/native@​7.3.12

7.3.12 (2026-07-20)

Bug Fixes

@​react-navigation/native@​7.3.9

7.3.9 (2026-07-16)

Bug Fixes

Changelog

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

7.3.14 (2026-07-24)

Bug Fixes

7.3.13 (2026-07-20)

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

7.3.12 (2026-07-20)

Bug Fixes

7.3.11 (2026-07-17)

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

7.3.10 (2026-07-17)

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

7.3.9 (2026-07-16)

Bug Fixes

Commits

Updates @react-navigation/native-stack from 7.17.10 to 7.18.6

Release notes

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

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

7.18.1 (2026-07-16)

Bug Fixes

  • account for disabled top inset for header height (1c12df8) - by @

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

7.18.0 (2026-07-16)

Features

Changelog

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

7.18.6 (2026-07-24)

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

7.18.5 (2026-07-20)

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

7.18.4 (2026-07-20)

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

7.18.3 (2026-07-17)

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

7.18.2 (2026-07-17)

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

7.18.1 (2026-07-16)

Bug Fixes

  • account for disabled top inset for header height (1c12df8) - by @

7.18.0 (2026-07-16)

Features

Commits

Updates expo from 57.0.6 to 57.0.9

Changelog

Sourced from expo's changelog.

57.0.9 - 2026-07-29

This version does not introduce any user-facing changes.

57.0.8 - 2026-07-22

🐛 Bug fixes

57.0.7 - 2026-07-17

🐛 Bug fixes

  • Fix import.meta.url being null on web when read after the bundle's synchronous execution (from effects, async code, or dynamic imports). (#47802 by @​zoontek)
Commits

Updates expo-build-properties from 57.0.5 to 57.0.8

Changelog

Sourced from expo-build-properties's changelog.

57.0.8 - 2026-07-29

This version does not introduce any user-facing changes.

57.0.7 - 2026-07-22

This version does not introduce any user-facing changes.

57.0.6 - 2026-07-17

This version does not introduce any user-facing changes.

Commits

Updates expo-dev-client from 57.0.6 to 57.0.10

Changelog

Sourced from expo-dev-client's changelog.

57.0.10 - 2026-07-29

This version does not introduce any user-facing changes.

57.0.9 - 2026-07-23

This version does not introduce any user-facing changes.

57.0.8 - 2026-07-22

This version does not introduce any user-facing changes.

57.0.7 - 2026-07-17

This version does not introduce any user-facing changes.

Commits

Updates expo-updates from 57.0.7 to 57.0.11

Changelog

Sourced from expo-updates's changelog.

57.0.11 - 2026-07-29

This version does not introduce any user-facing changes.

57.0.10 - 2026-07-23

This version does not introduce any user-facing changes.

57.0.9 - 2026-07-22

🐛 Bug fixes

  • Fix isUpdatePending incorrectly becoming true after a fetch or check that finds no new update to download. (#47830 by @​kudo)

57.0.8 - 2026-07-17

This version does not introduce any user-facing changes.

Commits

Updates react-native-screens from 4.26.1 to 4.26.2

Release notes

Sourced from react-native-screens's releases.

4.26.2

What's Changed

This patch release for 4.26.2 brings important stability improvements specifically for Android.

Key updates include preventing unexpected screen unmounting during fast navigation in Stack v5 by fixing transition finalization, as well as resolving a potential crash related to container state restoration in Tabs.

[!NOTE]

This version supports React Native 0.84+.

🐞 Bugfixes

  • fix(Android, Stack v5): Prevent screen unmounting on fast navigation (fix transition finalization) (#4342)
  • fix(Android, Tabs): fix potential crash with container state restoration (#4341)

Full Changelog: software-mansion/react-native-screens@4.26.1...4.26.2

Commits
  • 886754c release: 4.26.2
  • 7b280df fix(Android, Stack v5): Prevent screen unmounting on fast navigation (fix tra...
  • 970f950 fix(Android, Tabs): fix potential crash with container state restoration (#4341)
  • See full diff in compare view

Updates eslint-config-expo from 57.0.0 to 57.0.1

Changelog

Sourced from eslint-config-expo's changelog.

57.0.1 - 2026-07-29

This version does not introduce any user-facing changes.

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…17 updates

Bumps the npm-dependencies group with 17 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@expo/config-plugins](https://github.com/expo/expo/tree/HEAD/packages/@expo/config-plugins) | `57.0.5` | `57.0.6` |
| [@react-native/babel-preset](https://github.com/react/react-native) | `0.86.0` | `0.86.2` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.64.0` | `8.65.0` |
| [globals](https://github.com/sindresorhus/globals) | `17.7.0` | `17.9.0` |
| [prettier](https://github.com/prettier/prettier) | `3.9.5` | `3.9.6` |
| [react](https://github.com/react/react/tree/HEAD/packages/react) | `19.2.7` | `19.2.8` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.2.17` | `19.2.18` |
| [react-native](https://github.com/react/react-native/tree/HEAD/packages/react-native) | `0.86.0` | `0.86.2` |
| [@react-navigation/bottom-tabs](https://github.com/react-navigation/react-navigation/tree/HEAD/packages/bottom-tabs) | `7.18.8` | `7.18.14` |
| [@react-navigation/native](https://github.com/react-navigation/react-navigation/tree/HEAD/packages/native) | `7.3.8` | `7.3.14` |
| [@react-navigation/native-stack](https://github.com/react-navigation/react-navigation/tree/HEAD/packages/native-stack) | `7.17.10` | `7.18.6` |
| [expo](https://github.com/expo/expo/tree/HEAD/packages/expo) | `57.0.6` | `57.0.9` |
| [expo-build-properties](https://github.com/expo/expo/tree/HEAD/packages/expo-build-properties) | `57.0.5` | `57.0.8` |
| [expo-dev-client](https://github.com/expo/expo/tree/HEAD/packages/expo-dev-client) | `57.0.6` | `57.0.10` |
| [expo-updates](https://github.com/expo/expo/tree/HEAD/packages/expo-updates) | `57.0.7` | `57.0.11` |
| [react-native-screens](https://github.com/software-mansion/react-native-screens) | `4.26.1` | `4.26.2` |
| [eslint-config-expo](https://github.com/expo/expo/tree/HEAD/packages/eslint-config-expo) | `57.0.0` | `57.0.1` |



Updates `@expo/config-plugins` from 57.0.5 to 57.0.6
- [Changelog](https://github.com/expo/expo/blob/main/packages/@expo/config-plugins/CHANGELOG.md)
- [Commits](https://github.com/expo/expo/commits/HEAD/packages/@expo/config-plugins)

Updates `@react-native/babel-preset` from 0.86.0 to 0.86.2
- [Release notes](https://github.com/react/react-native/releases)
- [Changelog](https://github.com/react/react-native/blob/main/CHANGELOG.md)
- [Commits](react/react-native@v0.86.0...v0.86.2)

Updates `@typescript-eslint/parser` from 8.64.0 to 8.65.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.65.0/packages/parser)

Updates `globals` from 17.7.0 to 17.9.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v17.7.0...v17.9.0)

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

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

Updates `@types/react` from 19.2.17 to 19.2.18
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

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

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

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

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

Updates `expo` from 57.0.6 to 57.0.9
- [Changelog](https://github.com/expo/expo/blob/main/packages/expo/CHANGELOG.md)
- [Commits](https://github.com/expo/expo/commits/HEAD/packages/expo)

Updates `expo-build-properties` from 57.0.5 to 57.0.8
- [Changelog](https://github.com/expo/expo/blob/main/packages/expo-build-properties/CHANGELOG.md)
- [Commits](https://github.com/expo/expo/commits/HEAD/packages/expo-build-properties)

Updates `expo-dev-client` from 57.0.6 to 57.0.10
- [Changelog](https://github.com/expo/expo/blob/main/packages/expo-dev-client/CHANGELOG.md)
- [Commits](https://github.com/expo/expo/commits/HEAD/packages/expo-dev-client)

Updates `expo-updates` from 57.0.7 to 57.0.11
- [Changelog](https://github.com/expo/expo/blob/main/packages/expo-updates/CHANGELOG.md)
- [Commits](https://github.com/expo/expo/commits/HEAD/packages/expo-updates)

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

Updates `eslint-config-expo` from 57.0.0 to 57.0.1
- [Changelog](https://github.com/expo/expo/blob/main/packages/eslint-config-expo/CHANGELOG.md)
- [Commits](https://github.com/expo/expo/commits/HEAD/packages/eslint-config-expo)

---
updated-dependencies:
- dependency-name: "@expo/config-plugins"
  dependency-version: 57.0.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@react-native/babel-preset"
  dependency-version: 0.86.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.65.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: globals
  dependency-version: 17.9.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: prettier
  dependency-version: 3.9.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: react
  dependency-version: 19.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@types/react"
  dependency-version: 19.2.18
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: react-native
  dependency-version: 0.86.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@react-navigation/bottom-tabs"
  dependency-version: 7.18.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@react-navigation/native"
  dependency-version: 7.3.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@react-navigation/native-stack"
  dependency-version: 7.18.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: expo
  dependency-version: 57.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: expo-build-properties
  dependency-version: 57.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: expo-dev-client
  dependency-version: 57.0.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: expo-updates
  dependency-version: 57.0.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: react-native-screens
  dependency-version: 4.26.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: eslint-config-expo
  dependency-version: 57.0.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-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 Aug 5, 2026
@dependabot
dependabot Bot requested a review from a team as a code owner August 5, 2026 19:40
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 5, 2026
@dependabot @github

dependabot Bot commented on behalf of github Aug 12, 2026

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 Aug 12, 2026
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/npm-dependencies-2eea473293 branch August 12, 2026 19:39
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