Skip to content

chore(deps-dev): bump the development-dependencies group across 1 directory with 8 updates - #45

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/development-dependencies-ea98f576da
Open

chore(deps-dev): bump the development-dependencies group across 1 directory with 8 updates#45
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/development-dependencies-ea98f576da

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 26, 2026

Copy link
Copy Markdown
Contributor

Bumps the development-dependencies group with 8 updates in the / directory:

Package From To
@react-native/babel-preset 0.86.0 0.86.2
@react-native/eslint-config 0.86.0 0.86.2
@react-native/jest-preset 0.86.0 0.86.2
react-native-builder-bob 0.20.4 0.43.0
turbo 2.10.5 2.10.7
@react-native/metro-config 0.86.0 0.86.2
@react-native/typescript-config 0.86.0 0.86.2
babel-plugin-module-resolver 5.0.0 5.0.3

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 @react-native/eslint-config from 0.86.0 to 0.86.2

Release notes

Sourced from @​react-native/eslint-config'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/eslint-config'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/eslint-config since your current version.


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

Release notes

Sourced from @​react-native/jest-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/jest-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/jest-preset since your current version.


Updates react-native-builder-bob from 0.20.4 to 0.43.0

Release notes

Sourced from react-native-builder-bob's releases.

react-native-builder-bob@0.43.0

0.43.0 (2026-06-16)

Features

This is a breaking change for libraries that use react-native-builder-bob/vite-config

They now must add the custom condition to their vite config. To preserve existing behavior, add conditions: ['source'] under resolve:

  export default defineConfig((env) =>
    mergeConfig(config(env), {
      resolve: {
        alias: {
          [pack.name]: new URL('..', import.meta.url),
        },
+       conditions: ['source'],
        dedupe: Object.keys(pack.peerDependencies),
      },
    })
  );

This also drops react-native-builder-bob/metro-config. Migrate to react-native-monorepo-config) instead.

react-native-builder-bob@0.42.1

0.42.1 (2026-06-08)

Bug Fixes

  • rework typescript binary resolution to use node resolution (17225a9) - by @

react-native-builder-bob@0.42.0

0.42.0 (2026-06-08)

Bug Fixes

Features

react-native-builder-bob@0.41.0

... (truncated)

Changelog

Sourced from react-native-builder-bob's changelog.

0.43.0 (2026-06-16)

Features

0.42.1 (2026-06-08)

Bug Fixes

  • rework typescript binary resolution to use node resolution (17225a9) - by @

0.42.0 (2026-06-08)

Bug Fixes

Features

0.41.0 (2026-04-01)

Features

0.40.18 (2026-02-10)

Note: Version bump only for package react-native-builder-bob

0.40.17 (2025-12-10)

Bug Fixes

0.40.16 (2025-11-24)

Bug Fixes

0.40.15 (2025-11-12)

Bug Fixes

... (truncated)

Commits
Install script changes

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


Updates turbo from 2.10.5 to 2.10.7

Release notes

Sourced from turbo's releases.

Turborepo v2.10.7-canary.1

What's Changed

Changelog

Full Changelog: vercel/turborepo@v2.10.6-canary.5...v2.10.7-canary.1

Turborepo v2.10.6

What's Changed

Changelog

... (truncated)

Commits

Updates @react-native/metro-config from 0.86.0 to 0.86.2

Release notes

Sourced from @​react-native/metro-config'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/metro-config'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/metro-config since your current version.


Updates @react-native/typescript-config from 0.86.0 to 0.86.2

Release notes

Sourced from @​react-native/typescript-config'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/typescript-config'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/typescript-config since your current version.


Updates babel-plugin-module-resolver from 5.0.0 to 5.0.3

Changelog

Sourced from babel-plugin-module-resolver's changelog.

5.0.3 (2026-03-16)

Bug Fixes

  • . and ./ incorrectly converted (#409) (fa6d94e)
  • correct typo 'recieve' → 'receive' in DOCS.md (#450) (6131552)

5.0.2 (2024-04-18)

Bug Fixes

  • Revert reselect update to fix usage in node 16 (#446) (8923c48)

5.0.1 (2024-04-17)

Commits

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jul 26, 2026
@dependabot
dependabot Bot requested a review from JimmyDaddy as a code owner July 26, 2026 19:08
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jul 26, 2026
…ectory with 8 updates

Bumps the development-dependencies group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@react-native/babel-preset](https://github.com/react/react-native) | `0.86.0` | `0.86.2` |
| [@react-native/eslint-config](https://github.com/react/react-native/tree/HEAD/packages/eslint-config-react-native) | `0.86.0` | `0.86.2` |
| [@react-native/jest-preset](https://github.com/react/react-native/tree/HEAD/packages/jest-preset) | `0.86.0` | `0.86.2` |
| [react-native-builder-bob](https://github.com/callstack/react-native-builder-bob/tree/HEAD/packages/react-native-builder-bob) | `0.20.4` | `0.43.0` |
| [turbo](https://github.com/vercel/turborepo) | `2.10.5` | `2.10.7` |
| [@react-native/metro-config](https://github.com/react/react-native/tree/HEAD/packages/metro-config) | `0.86.0` | `0.86.2` |
| [@react-native/typescript-config](https://github.com/react/react-native/tree/HEAD/packages/typescript-config) | `0.86.0` | `0.86.2` |
| [babel-plugin-module-resolver](https://github.com/tleunen/babel-plugin-module-resolver) | `5.0.0` | `5.0.3` |



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 `@react-native/eslint-config` 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/eslint-config-react-native)

Updates `@react-native/jest-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](https://github.com/react/react-native/commits/v0.86.2/packages/jest-preset)

Updates `react-native-builder-bob` from 0.20.4 to 0.43.0
- [Release notes](https://github.com/callstack/react-native-builder-bob/releases)
- [Changelog](https://github.com/callstack/react-native-builder-bob/blob/main/packages/react-native-builder-bob/CHANGELOG.md)
- [Commits](https://github.com/callstack/react-native-builder-bob/commits/react-native-builder-bob@0.43.0/packages/react-native-builder-bob)

Updates `turbo` from 2.10.5 to 2.10.7
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/RELEASE.md)
- [Commits](https://github.com/vercel/turborepo/commits)

Updates `@react-native/metro-config` 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/metro-config)

Updates `@react-native/typescript-config` 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/typescript-config)

Updates `babel-plugin-module-resolver` from 5.0.0 to 5.0.3
- [Changelog](https://github.com/tleunen/babel-plugin-module-resolver/blob/master/CHANGELOG.md)
- [Commits](tleunen/babel-plugin-module-resolver@v5.0.0...v5.0.3)

---
updated-dependencies:
- dependency-name: "@react-native/babel-preset"
  dependency-version: 0.86.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@react-native/eslint-config"
  dependency-version: 0.86.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@react-native/jest-preset"
  dependency-version: 0.86.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@react-native/metro-config"
  dependency-version: 0.86.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@react-native/typescript-config"
  dependency-version: 0.86.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: babel-plugin-module-resolver
  dependency-version: 5.0.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: react-native-builder-bob
  dependency-version: 0.43.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: turbo
  dependency-version: 2.10.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title chore(deps-dev): bump the development-dependencies group with 8 updates chore(deps-dev): bump the development-dependencies group across 1 directory with 8 updates Jul 30, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/development-dependencies-ea98f576da branch from 1e972d5 to 87c5614 Compare July 30, 2026 04:18
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