Skip to content

build(deps): bump the all-updates group across 10 directories with 41 updates#1117

Draft
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/all-updates-16febf896d
Draft

build(deps): bump the all-updates group across 10 directories with 41 updates#1117
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/all-updates-16febf896d

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 1, 2026

Bumps the all-updates group with 31 updates in the / directory:

Package From To
@cspell/eslint-plugin 8.19.4 10.0.0
@react-native/eslint-config 0.79.7 0.85.2
cspell 8.19.4 10.0.0
eslint 8.57.1 10.3.0
eslint-plugin-ft-flow 2.0.3 3.0.11
eslint-plugin-jsdoc 62.7.1 62.9.0
expo-router 6.0.23 55.0.13
prettier 2.8.8 3.8.3
typescript 5.9.3 6.0.3
@dr.pogodin/react-native-fs 2.37.0 2.38.2
react 19.1.0 19.2.5
@types/react 19.1.17 19.2.14
react-native 0.81.5 0.85.2
expo 54.0.33 55.0.19
expo-asset 12.0.11 55.0.16
expo-file-system 19.0.21 55.0.17
jsonrepair 3.13.2 3.14.0
zod 4.3.6 4.4.1
@react-native-community/cli 20.0.0 20.1.3
jest 29.7.0 30.3.0
@types/jest 29.5.14 30.0.0
react-native-builder-bob 0.40.18 0.41.0
@babel/runtime 7.28.6 7.29.2
@react-native-community/cli-platform-android 20.0.0 20.1.3
@react-native-community/cli-platform-ios 20.0.0 20.1.3
@react-native/babel-preset 0.81.5 0.85.2
@react-native/metro-config 0.81.5 0.85.2
@react-native/typescript-config 0.81.5 0.85.2
react-test-renderer 19.1.0 19.2.5
metro-config 0.83.6 0.84.4
react-native-nitro-image 0.13.1 0.14.0

Bumps the all-updates group with 15 updates in the /apps/bare-rn directory:

Package From To
@react-native/eslint-config 0.81.5 0.85.2
eslint 8.57.1 10.3.0
prettier 2.8.8 3.8.3
typescript 5.9.3 6.0.3
react 19.1.0 19.2.5
react-native 0.81.5 0.85.2
@react-native-community/cli 20.0.0 20.1.3
@types/jest 29.5.14 30.0.0
jest 29.7.0 30.3.0
@react-native-community/cli-platform-android 20.0.0 20.1.3
@react-native-community/cli-platform-ios 20.0.0 20.1.3
@react-native/babel-preset 0.81.5 0.85.2
@react-native/metro-config 0.81.5 0.85.2
@react-native/typescript-config 0.81.5 0.85.2
react-test-renderer 19.1.0 19.2.5

Bumps the all-updates group with 4 updates in the /apps/computer-vision directory: react-native, @react-native/metro-config, metro-config and react-native-nitro-image.
Bumps the all-updates group with 3 updates in the /apps/llm directory: react-native, @react-native/metro-config and metro-config.
Bumps the all-updates group with 3 updates in the /apps/speech directory: react-native, @react-native/metro-config and metro-config.
Bumps the all-updates group with 2 updates in the /apps/text-embeddings directory: react-native and @react-native/metro-config.
Bumps the all-updates group with 11 updates in the /docs directory:

Package From To
typescript 5.9.3 6.0.3
@docsearch/core 4.5.3 4.6.3
@docusaurus/core 3.9.2 3.10.1
@docusaurus/plugin-google-tag-manager 3.9.2 3.10.1
@docusaurus/plugin-sitemap 3.9.2 3.10.1
@docusaurus/preset-classic 3.9.2 3.10.1
@mui/material 7.3.7 9.0.0
react-icons 5.5.0 5.6.0
@docusaurus/module-type-aliases 3.9.2 3.10.1
@docusaurus/tsconfig 3.9.2 3.10.1
typedoc-plugin-markdown 4.10.0 4.11.0

Bumps the all-updates group with 3 updates in the /packages/bare-resource-fetcher directory: typescript, react and react-native.
Bumps the all-updates group with 6 updates in the /packages/expo-resource-fetcher directory:

Package From To
typescript 5.9.3 6.0.3
react 19.1.0 19.2.5
react-native 0.81.5 0.85.2
expo 54.0.34 55.0.19
expo-asset 12.0.11 55.0.16
expo-file-system 19.0.22 55.0.17

Bumps the all-updates group with 4 updates in the /packages/react-native-executorch directory: typescript, react, react-native and react-native-builder-bob.

Updates @cspell/eslint-plugin from 8.19.4 to 10.0.0

Release notes

Sourced from @​cspell/eslint-plugin's releases.

v10.0.0

Features

fix: upgrade import-fresh from v3 to v4 (#8786)

Summary

Upgrades import-fresh from v3 to v4.

API changes in v4

  • v3: Synchronous default export — importFresh(modulePath) returns the module directly
  • v4: Factory pattern — createImportFresh(parentURL) returns an async function; v4 is ESM-only and uses Node.js module loader hooks instead of manipulating the require cache

Changes

  • packages/cspell-lib/package.json: bump import-fresh to ^4.0.0; remove clear-module dependency (no longer needed since v4 uses module loader hooks instead of Node's require cache)
  • packages/cspell-lib/src/lib/Settings/Controller/pnpLoader.ts:
    • Import createImportFresh factory; call createImportFresh(pnpFileUrl) at use time inside loadPnp(), bound to the pnp file's own URL so each load is correctly scoped to the file being loaded
    • Make loadPnp and loadPnpIfNeeded async
    • Change cachedPnpImportsSynccachedPnpImports (now stores Promise<LoaderResult>)
    • Remove clearModule.single usage (v4 cache-busts via loader hooks; clearing the require cache is no longer applicable)
    • Pass a file URL (toFileUrl(pnpFile).href) to importFresh since v4 uses import() under the hood, which requires URLs or relative specifiers for absolute paths
    • Use optional chaining on the module's default export to handle edge cases
  • test-packages/cspell-lib/test-cspell-lib-rollup/package.json: bump import-fresh to ^4.0.0
  • test-packages/cspell-lib/test-cspell-lib-webpack/package.json: bump import-fresh to ^4.0.0

Testing

All 91 test files (1584 tests) pass, including the 10 dedicated pnpLoader tests.


feat!: Drop support for Node 20 (#8779)

Pull request overview

This PR updates the monorepo to require Node.js 22.18+ (dropping Node 20 support), aligning package engine constraints, CI matrices, and documentation with the new baseline.

Changes:

  • Bump engines.node across packages/test-packages to >=22.18.0 and update root @types/node to ^22.19.15.
  • Update CI workflows to test Node 22/24/25 and adjust integration update workflow to Node 22.
  • Remove eslint-plugin-n “unsupported node builtins” disables now that the minimum Node version includes those built-ins.

... (truncated)

Changelog

Sourced from @​cspell/eslint-plugin's changelog.

v10.0.0 (2026-04-06)

Features

  • fix: upgrade import-fresh from v3 to v4 (#8786)
  • feat!: Drop support for Node 20 (#8779)

BREAKING

  • feat!: Drop support for Node 20 (#8779)

Documentation

  • feat!: Drop support for Node 20 (#8779)

v9.8.0 (2026-03-30)

Features

  • feat: make flatpack diff friendly (#8680)

Dictionary Updates

  • fix: Workflow Bot -- Update Dictionaries (main) (#8739)

  • fix: Workflow Bot -- Update Dictionaries (main) (#8688)

  • fix: Workflow Bot -- Update Dictionaries (main) (#8670)

  • fix: Workflow Bot -- Update Dictionaries (main) (#8647)

  • fix: Workflow Bot -- Update Dictionaries (main) (#8637)

v9.7.0 (2026-02-23)

Features

  • feat: Substitution Part 4 - enable substitutions during document check (#8630)

  • feat: Substitution Part 3 (#8616)

  • feat: Substitution Part 2 (#8599)

  • feat: Support text substitutions prior to spell checking - part 1 (#8592)

Fixes

  • fix: Publish 9.7 (#8634)

  • fix: Support ESLint 10 (#8620)

  • fix: Prepare to support substitutions (#8584)

  • fix: cspell-rpc - reduce the size of an RPC result. (#8574)

  • fix: Add convertToBtrie method to trie-lib (#8562)

... (truncated)

Commits

Updates @react-native/eslint-config from 0.79.7 to 0.85.2

Release notes

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

0.85.2


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.

0.85.1


Hermes dSYMS:

Hermes V1 dSYMS:

ReactNativeDependencies dSYMs:

ReactNative Core dSYMs:

... (truncated)

Changelog

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

Changelog (pre 0.80)

Commits

Updates cspell from 8.19.4 to 10.0.0

Release notes

Sourced from cspell's releases.

v10.0.0

Features

fix: upgrade import-fresh from v3 to v4 (#8786)

Summary

Upgrades import-fresh from v3 to v4.

API changes in v4

  • v3: Synchronous default export — importFresh(modulePath) returns the module directly
  • v4: Factory pattern — createImportFresh(parentURL) returns an async function; v4 is ESM-only and uses Node.js module loader hooks instead of manipulating the require cache

Changes

  • packages/cspell-lib/package.json: bump import-fresh to ^4.0.0; remove clear-module dependency (no longer needed since v4 uses module loader hooks instead of Node's require cache)
  • packages/cspell-lib/src/lib/Settings/Controller/pnpLoader.ts:
    • Import createImportFresh factory; call createImportFresh(pnpFileUrl) at use time inside loadPnp(), bound to the pnp file's own URL so each load is correctly scoped to the file being loaded
    • Make loadPnp and loadPnpIfNeeded async
    • Change cachedPnpImportsSynccachedPnpImports (now stores Promise<LoaderResult>)
    • Remove clearModule.single usage (v4 cache-busts via loader hooks; clearing the require cache is no longer applicable)
    • Pass a file URL (toFileUrl(pnpFile).href) to importFresh since v4 uses import() under the hood, which requires URLs or relative specifiers for absolute paths
    • Use optional chaining on the module's default export to handle edge cases
  • test-packages/cspell-lib/test-cspell-lib-rollup/package.json: bump import-fresh to ^4.0.0
  • test-packages/cspell-lib/test-cspell-lib-webpack/package.json: bump import-fresh to ^4.0.0

Testing

All 91 test files (1584 tests) pass, including the 10 dedicated pnpLoader tests.


feat!: Drop support for Node 20 (#8779)

Pull request overview

This PR updates the monorepo to require Node.js 22.18+ (dropping Node 20 support), aligning package engine constraints, CI matrices, and documentation with the new baseline.

Changes:

  • Bump engines.node across packages/test-packages to >=22.18.0 and update root @types/node to ^22.19.15.
  • Update CI workflows to test Node 22/24/25 and adjust integration update workflow to Node 22.
  • Remove eslint-plugin-n “unsupported node builtins” disables now that the minimum Node version includes those built-ins.

... (truncated)

Changelog

Sourced from cspell's changelog.

v10.0.0 (2026-04-06)

Features

fix: upgrade import-fresh from v3 to v4 (#8786)

Summary

Upgrades import-fresh from v3 to v4.

API changes in v4

  • v3: Synchronous default export — importFresh(modulePath) returns the module directly
  • v4: Factory pattern — createImportFresh(parentURL) returns an async function; v4 is ESM-only and uses Node.js module loader hooks instead of manipulating the require cache

Changes

  • packages/cspell-lib/package.json: bump import-fresh to ^4.0.0; remove clear-module dependency (no longer needed since v4 uses module loader hooks instead of Node's require cache)
  • packages/cspell-lib/src/lib/Settings/Controller/pnpLoader.ts:
    • Import createImportFresh factory; call createImportFresh(pnpFileUrl) at use time inside loadPnp(), bound to the pnp file's own URL so each load is correctly scoped to the file being loaded
    • Make loadPnp and loadPnpIfNeeded async
    • Change cachedPnpImportsSynccachedPnpImports (now stores Promise<LoaderResult>)
    • Remove clearModule.single usage (v4 cache-busts via loader hooks; clearing the require cache is no longer applicable)
    • Pass a file URL (toFileUrl(pnpFile).href) to importFresh since v4 uses import() under the hood, which requires URLs or relative specifiers for absolute paths
    • Use optional chaining on the module's default export to handle edge cases
  • test-packages/cspell-lib/test-cspell-lib-rollup/package.json: bump import-fresh to ^4.0.0
  • test-packages/cspell-lib/test-cspell-lib-webpack/package.json: bump import-fresh to ^4.0.0

Testing

All 91 test files (1584 tests) pass, including the 10 dedicated pnpLoader tests.


feat!: Drop support for Node 20 (#8779)

Pull request overview

This PR updates the monorepo to require Node.js 22.18+ (dropping Node 20 support), aligning package engine constraints, CI matrices, and documentation with the new baseline.

Changes:

... (truncated)

Commits

Updates eslint from 8.57.1 to 10.3.0

Release notes

Sourced from eslint's releases.

v10.3.0

Features

  • 379571a feat: add suggestions for no-unused-private-class-members (#20773) (sethamus)

Bug Fixes

  • b6ae5cf fix: handle unavailable require cache (#20812) (Simon Podlipsky)
  • 6fb3685 fix: rule suggestions cause continuation in class body (#20787) (Milos Djermanovic)

Documentation

  • 32cc7ab docs: fix typos in docs and comments (#20809) (Tanuj Kanti)
  • 7f47937 docs: Update README (GitHub Actions Bot)

Chores

  • d32235e ci: use pnpm in eslint-flat-config-utils type integration test (#20826) (Francesco Trotta)
  • 3ffb14e chore: clean up typos in comments and JSDoc (#20821) (Pixel998)
  • 22eb58a chore: add missing continue-on-error to ecosystem-tests.yml (#20818) (Josh Goldberg ✨)
  • 88bf002 ci: bump pnpm/action-setup from 6.0.1 to 6.0.3 (#20815) (dependabot[bot])
  • 97c8c33 chore: update ilshidur/action-discord action to v0.4.0 (#20811) (renovate[bot])
  • 2f58136 chore: pin peter-evans/create-pull-request action to 5f6978f (#20810) (renovate[bot])
  • 77add7f chore: add initial ecosystem plugin tests workflow (#19643) (Josh Goldberg ✨)
  • 4023b55 test: Add unit tests for SuppressionsService.prune() (#20797) (kuldeep kumar)
  • 54080da test: add unit tests for ForkContext (#20778) (kuldeep kumar)
  • f0e2bcc test: add unit tests for SuppressionsService.suppress() method (#20765) (kuldeep kumar)
  • a7f0b94 chore: update dependency prettier to v3.8.3 (#20782) (renovate[bot])
  • 7bf93d9 chore: update TypeScript to v6 (#20677) (sethamus)
  • b42dd72 ci: bump pnpm/action-setup from 6.0.0 to 6.0.1 (#20781) (dependabot[bot])
  • 2b252be test: add unit tests for IdGenerator (#20775) (kuldeep kumar)

v10.2.1

Bug Fixes

  • 14be92b fix: model generator yield resumption paths in code path analysis (#20665) (sethamus)
  • 84a19d2 fix: no-async-promise-executor false positives for shadowed Promise (#20740) (xbinaryx)
  • af764af fix: clarify language and processor validation errors (#20729) (Pixel998)
  • e251b89 fix: update eslint (#20715) (renovate[bot])

Documentation

  • ca92ca0 docs: reuse markdown-it instance for markdown filter (#20768) (Amaresh S M)
  • 57d2ee2 docs: Enable Eleventy incremental mode for watch (#20767) (Amaresh S M)
  • c1621b9 docs: fix typos in code-path-analyzer.js (#20700) (Ayush Shukla)
  • 1418d52 docs: Update README (GitHub Actions Bot)
  • 39771e6 docs: Update README (GitHub Actions Bot)
  • 71e0469 docs: fix incomplete JSDoc param description in no-shadow rule (#20728) (kuldeep kumar)
  • 22119ce docs: clarify scope of for-direction rule with dead code examples (#20723) (Amaresh S M)
  • 8f3fb77 docs: document meta.docs.dialects (#20718) (Pixel998)

Chores

  • 7ddfea9 chore: update dependency prettier to v3.8.2 (#20770) (renovate[bot])
  • fac40e1 ci: bump pnpm/action-setup from 5.0.0 to 6.0.0 (#20763) (dependabot[bot])
  • 7246f92 test: add tests for SuppressionsService.load() error handling (#20734) (kuldeep kumar)
  • 4f34b1e chore: update pnpm/action-setup action to v5 (#20762) (renovate[bot])

... (truncated)

Commits
  • 7889204 10.3.0
  • 5b69b4f Build: changelog update for 10.3.0
  • d32235e ci: use pnpm in eslint-flat-config-utils type integration test (#20826)
  • b6ae5cf fix: handle unavailable require cache (#20812)
  • 3ffb14e chore: clean up typos in comments and JSDoc (#20821)
  • 6fb3685 fix: rule suggestions cause continuation in class body (#20787)
  • 22eb58a chore: add missing continue-on-error to ecosystem-tests.yml (#20818)
  • 88bf002 ci: bump pnpm/action-setup from 6.0.1 to 6.0.3 (#20815)
  • 379571a feat: add suggestions for no-unused-private-class-members (#20773)
  • 97c8c33 chore: update ilshidur/action-discord action to v0.4.0 (#20811)
  • Additional commits viewable in compare view

Updates eslint-plugin-ft-flow from 2.0.3 to 3.0.11

Release notes

Sourced from eslint-plugin-ft-flow's releases.

v3.0.11

What's Changed

New Contributors

Full Changelog: flow-typed/eslint-plugin-ft-flow@v3.0.10...v3.0.11

v3.0.10

What's Changed

Full Changelog: flow-typed/eslint-plugin-ft-flow@v3.0.9...v3.0.10

v3.0.9

What's Changed

Full Changelog: flow-typed/eslint-plugin-ft-flow@v3.0.8...v3.0.9

v3.0.8

What's Changed

New Contributors

Full Changelog: flow-typed/eslint-plugin-ft-flow@v3.0.7...v3.0.8

v3.0.7

What's Changed

Full Changelog: flow-typed/eslint-plugin-ft-flow@v3.0.6...v3.0.7

v3.0.6

What's Changed

New Contributors

Full Changelog: flow-typed/eslint-plugin-ft-flow@v3.0.5...v3.0.6

... (truncated)

Commits

Updates eslint-plugin-jsdoc from 62.7.1 to 62.9.0

Release notes

Sourced from eslint-plugin-jsdoc's releases.

v62.9.0

62.9.0 (2026-04-01)

Features

  • update jsdoccomment, devDeps. (8569d0c)

v62.8.1

62.8.1 (2026-03-25)

Bug Fixes

  • valid-types: allow required default names; fixes #1675 (bca557b)

v62.8.0

62.8.0 (2026-03-12)

Features

  • tsdoc-ruleset: add recommended TSDoc ruleset (a96bc7c)
Commits
  • 8569d0c feat: update jsdoccomment, devDeps.
  • 5b668af chore(deps): bump brace-expansion from 1.1.12 to 1.1.13
  • 7d0e91a chore: update comment-parser, jsdoccomment, espree, devDeps.
  • bca557b fix(valid-types): allow required default names; fixes #1675
  • 78335ff chore(deps): bump picomatch from 2.3.1 to 2.3.2
  • 7bc2525 chore(deps): bump undici from 6.23.0 to 6.24.0
  • a96bc7c feat(tsdoc-ruleset): add recommended TSDoc ruleset
  • 26276d4 chore(deps-dev): bump rollup from 4.57.1 to 4.59.0
  • See full diff in compare view

Updates expo-router from 6.0.23 to 55.0.13

Changelog

Sourced from expo-router's changelog.

Changelog

This is the log of notable changes to the Expo client that are developer-facing. Package-specific changes not released in any SDK will be added here just before the release. Until then, you can find them in changelogs of the individual packages (see packages directory).

Unpublished

📚 3rd party library updates

🛠 Breaking changes

🎉 New features

🐛 Bug fixes

55.0.0 — 2026-02-25

🛠 Breaking changes

  • expo-notifications
    • expose BackgroundNotificationTaskResult (#41291 by @​vonovak)
    • [ios], [internal] rename EXNotifications pod to ExpoNotifications (#42009 by @​vonovak)
    • [android] throw instead of logging a warning when attempting to use push notifications with Expo Go (#39459 by @​vonovak)
  • expo-modules-core
  • expo-localization
    • [Android] Default allowDynamicLocaleChangesAndroid to true when supportedLocales is configured (#41813 by @​Ubax)
  • expo-image-loader
  • expo-clipboard
    • Removed deprecated content property of the clipboard event listener. Use getStringAsync() instead. (#41739 by @​barthap)
  • expo-cellular
    • remove deprecated JS constants, return null as a replacement for deprecated native iOS methods (#43035 by @​vonovak)
  • expo-brightness
  • expo-blur
    • [Android] The dimezisBlurView experimental blur method will no longer work without creating a related BlurTargetView. (#39990 by @​behenate)

🎉 New features

... (truncated)

Commits

Updates prettier from 2.8.8 to 3.8.3

Release notes

Sourced from prettier's releases.

3.8.3

🔗 Changelog

3.8.2

  • Support Angular v21.2

🔗 Changelog

3.8.1

🔗 Changelog

3.8.0

  • Support Angular v21.1

diff

🔗 Release note "Prettier 3.8: Support for Angular v21.1"

3.7.4

What's Changed

🔗 Changelog

3.7.3

What's Changed

🔗 Changelog

3.7.2

What's Changed

… updates

Bumps the all-updates group with 31 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@cspell/eslint-plugin](https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell-eslint-plugin) | `8.19.4` | `10.0.0` |
| [@react-native/eslint-config](https://github.com/facebook/react-native/tree/HEAD/packages/eslint-config-react-native) | `0.79.7` | `0.85.2` |
| [cspell](https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell) | `8.19.4` | `10.0.0` |
| [eslint](https://github.com/eslint/eslint) | `8.57.1` | `10.3.0` |
| [eslint-plugin-ft-flow](https://github.com/flow-typed/eslint-plugin-ft-flow) | `2.0.3` | `3.0.11` |
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | `62.7.1` | `62.9.0` |
| [expo-router](https://github.com/expo/expo/tree/HEAD/packages/expo-router) | `6.0.23` | `55.0.13` |
| [prettier](https://github.com/prettier/prettier) | `2.8.8` | `3.8.3` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.3` | `6.0.3` |
| [@dr.pogodin/react-native-fs](https://github.com/birdofpreyru/react-native-fs) | `2.37.0` | `2.38.2` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.1.0` | `19.2.5` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.17` | `19.2.14` |
| [react-native](https://github.com/facebook/react-native/tree/HEAD/packages/react-native) | `0.81.5` | `0.85.2` |
| [expo](https://github.com/expo/expo/tree/HEAD/packages/expo) | `54.0.33` | `55.0.19` |
| [expo-asset](https://github.com/expo/expo/tree/HEAD/packages/expo-asset) | `12.0.11` | `55.0.16` |
| [expo-file-system](https://github.com/expo/expo/tree/HEAD/packages/expo-file-system) | `19.0.21` | `55.0.17` |
| [jsonrepair](https://github.com/josdejong/jsonrepair) | `3.13.2` | `3.14.0` |
| [zod](https://github.com/colinhacks/zod) | `4.3.6` | `4.4.1` |
| [@react-native-community/cli](https://github.com/react-native-community/cli/tree/HEAD/packages/cli) | `20.0.0` | `20.1.3` |
| [jest](https://github.com/jestjs/jest/tree/HEAD/packages/jest) | `29.7.0` | `30.3.0` |
| [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) | `29.5.14` | `30.0.0` |
| [react-native-builder-bob](https://github.com/callstack/react-native-builder-bob/tree/HEAD/packages/react-native-builder-bob) | `0.40.18` | `0.41.0` |
| [@babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime) | `7.28.6` | `7.29.2` |
| [@react-native-community/cli-platform-android](https://github.com/react-native-community/cli/tree/HEAD/packages/platform-android) | `20.0.0` | `20.1.3` |
| [@react-native-community/cli-platform-ios](https://github.com/react-native-community/cli/tree/HEAD/packages/cli-platform-ios) | `20.0.0` | `20.1.3` |
| [@react-native/babel-preset](https://github.com/facebook/react-native) | `0.81.5` | `0.85.2` |
| [@react-native/metro-config](https://github.com/facebook/react-native/tree/HEAD/packages/metro-config) | `0.81.5` | `0.85.2` |
| [@react-native/typescript-config](https://github.com/facebook/react-native/tree/HEAD/packages/typescript-config) | `0.81.5` | `0.85.2` |
| [react-test-renderer](https://github.com/facebook/react/tree/HEAD/packages/react-test-renderer) | `19.1.0` | `19.2.5` |
| [metro-config](https://github.com/facebook/metro/tree/HEAD/packages/metro-config) | `0.83.6` | `0.84.4` |
| [react-native-nitro-image](https://github.com/mrousavy/react-native-nitro-image/tree/HEAD/packages/react-native-nitro-image) | `0.13.1` | `0.14.0` |

Bumps the all-updates group with 15 updates in the /apps/bare-rn directory:

| Package | From | To |
| --- | --- | --- |
| [@react-native/eslint-config](https://github.com/facebook/react-native/tree/HEAD/packages/eslint-config-react-native) | `0.81.5` | `0.85.2` |
| [eslint](https://github.com/eslint/eslint) | `8.57.1` | `10.3.0` |
| [prettier](https://github.com/prettier/prettier) | `2.8.8` | `3.8.3` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.3` | `6.0.3` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.1.0` | `19.2.5` |
| [react-native](https://github.com/facebook/react-native/tree/HEAD/packages/react-native) | `0.81.5` | `0.85.2` |
| [@react-native-community/cli](https://github.com/react-native-community/cli/tree/HEAD/packages/cli) | `20.0.0` | `20.1.3` |
| [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) | `29.5.14` | `30.0.0` |
| [jest](https://github.com/jestjs/jest/tree/HEAD/packages/jest) | `29.7.0` | `30.3.0` |
| [@react-native-community/cli-platform-android](https://github.com/react-native-community/cli/tree/HEAD/packages/platform-android) | `20.0.0` | `20.1.3` |
| [@react-native-community/cli-platform-ios](https://github.com/react-native-community/cli/tree/HEAD/packages/cli-platform-ios) | `20.0.0` | `20.1.3` |
| [@react-native/babel-preset](https://github.com/facebook/react-native) | `0.81.5` | `0.85.2` |
| [@react-native/metro-config](https://github.com/facebook/react-native/tree/HEAD/packages/metro-config) | `0.81.5` | `0.85.2` |
| [@react-native/typescript-config](https://github.com/facebook/react-native/tree/HEAD/packages/typescript-config) | `0.81.5` | `0.85.2` |
| [react-test-renderer](https://github.com/facebook/react/tree/HEAD/packages/react-test-renderer) | `19.1.0` | `19.2.5` |

Bumps the all-updates group with 4 updates in the /apps/computer-vision directory: [react-native](https://github.com/facebook/react-native/tree/HEAD/packages/react-native), [@react-native/metro-config](https://github.com/facebook/react-native/tree/HEAD/packages/metro-config), [metro-config](https://github.com/facebook/metro/tree/HEAD/packages/metro-config) and [react-native-nitro-image](https://github.com/mrousavy/react-native-nitro-image/tree/HEAD/packages/react-native-nitro-image).
Bumps the all-updates group with 3 updates in the /apps/llm directory: [react-native](https://github.com/facebook/react-native/tree/HEAD/packages/react-native), [@react-native/metro-config](https://github.com/facebook/react-native/tree/HEAD/packages/metro-config) and [metro-config](https://github.com/facebook/metro/tree/HEAD/packages/metro-config).
Bumps the all-updates group with 3 updates in the /apps/speech directory: [react-native](https://github.com/facebook/react-native/tree/HEAD/packages/react-native), [@react-native/metro-config](https://github.com/facebook/react-native/tree/HEAD/packages/metro-config) and [metro-config](https://github.com/facebook/metro/tree/HEAD/packages/metro-config).
Bumps the all-updates group with 2 updates in the /apps/text-embeddings directory: [react-native](https://github.com/facebook/react-native/tree/HEAD/packages/react-native) and [@react-native/metro-config](https://github.com/facebook/react-native/tree/HEAD/packages/metro-config).
Bumps the all-updates group with 11 updates in the /docs directory:

| Package | From | To |
| --- | --- | --- |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.3` | `6.0.3` |
| [@docsearch/core](https://github.com/algolia/docsearch/tree/HEAD/packages/docsearch-core) | `4.5.3` | `4.6.3` |
| [@docusaurus/core](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus) | `3.9.2` | `3.10.1` |
| [@docusaurus/plugin-google-tag-manager](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-plugin-google-tag-manager) | `3.9.2` | `3.10.1` |
| [@docusaurus/plugin-sitemap](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-plugin-sitemap) | `3.9.2` | `3.10.1` |
| [@docusaurus/preset-classic](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-preset-classic) | `3.9.2` | `3.10.1` |
| [@mui/material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material) | `7.3.7` | `9.0.0` |
| [react-icons](https://github.com/react-icons/react-icons) | `5.5.0` | `5.6.0` |
| [@docusaurus/module-type-aliases](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-module-type-aliases) | `3.9.2` | `3.10.1` |
| [@docusaurus/tsconfig](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-tsconfig) | `3.9.2` | `3.10.1` |
| [typedoc-plugin-markdown](https://github.com/typedoc2md/typedoc-plugin-markdown/tree/HEAD/packages/typedoc-plugin-markdown) | `4.10.0` | `4.11.0` |

Bumps the all-updates group with 3 updates in the /packages/bare-resource-fetcher directory: [typescript](https://github.com/microsoft/TypeScript), [react](https://github.com/facebook/react/tree/HEAD/packages/react) and [react-native](https://github.com/facebook/react-native/tree/HEAD/packages/react-native).
Bumps the all-updates group with 6 updates in the /packages/expo-resource-fetcher directory:

| Package | From | To |
| --- | --- | --- |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.3` | `6.0.3` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.1.0` | `19.2.5` |
| [react-native](https://github.com/facebook/react-native/tree/HEAD/packages/react-native) | `0.81.5` | `0.85.2` |
| [expo](https://github.com/expo/expo/tree/HEAD/packages/expo) | `54.0.34` | `55.0.19` |
| [expo-asset](https://github.com/expo/expo/tree/HEAD/packages/expo-asset) | `12.0.11` | `55.0.16` |
| [expo-file-system](https://github.com/expo/expo/tree/HEAD/packages/expo-file-system) | `19.0.22` | `55.0.17` |

Bumps the all-updates group with 4 updates in the /packages/react-native-executorch directory: [typescript](https://github.com/microsoft/TypeScript), [react](https://github.com/facebook/react/tree/HEAD/packages/react), [react-native](https://github.com/facebook/react-native/tree/HEAD/packages/react-native) and [react-native-builder-bob](https://github.com/callstack/react-native-builder-bob/tree/HEAD/packages/react-native-builder-bob).


Updates `@cspell/eslint-plugin` from 8.19.4 to 10.0.0
- [Release notes](https://github.com/streetsidesoftware/cspell/releases)
- [Changelog](https://github.com/streetsidesoftware/cspell/blob/main/packages/cspell-eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/streetsidesoftware/cspell/commits/v10.0.0/packages/cspell-eslint-plugin)

Updates `@react-native/eslint-config` from 0.79.7 to 0.85.2
- [Release notes](https://github.com/facebook/react-native/releases)
- [Changelog](https://github.com/facebook/react-native/blob/main/CHANGELOG-0.7x.md)
- [Commits](https://github.com/facebook/react-native/commits/v0.85.2/packages/eslint-config-react-native)

Updates `cspell` from 8.19.4 to 10.0.0
- [Release notes](https://github.com/streetsidesoftware/cspell/releases)
- [Changelog](https://github.com/streetsidesoftware/cspell/blob/main/packages/cspell/CHANGELOG.md)
- [Commits](https://github.com/streetsidesoftware/cspell/commits/v10.0.0/packages/cspell)

Updates `eslint` from 8.57.1 to 10.3.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v8.57.1...v10.3.0)

Updates `eslint-plugin-ft-flow` from 2.0.3 to 3.0.11
- [Release notes](https://github.com/flow-typed/eslint-plugin-ft-flow/releases)
- [Commits](https://github.com/flow-typed/eslint-plugin-ft-flow/commits/v3.0.11)

Updates `eslint-plugin-jsdoc` from 62.7.1 to 62.9.0
- [Release notes](https://github.com/gajus/eslint-plugin-jsdoc/releases)
- [Commits](gajus/eslint-plugin-jsdoc@v62.7.1...v62.9.0)

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

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

Updates `typescript` from 5.9.3 to 6.0.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.9.3...v6.0.3)

Updates `@dr.pogodin/react-native-fs` from 2.37.0 to 2.38.2
- [Release notes](https://github.com/birdofpreyru/react-native-fs/releases)
- [Changelog](https://github.com/birdofpreyru/react-native-fs/blob/master/CHANGELOG.md)
- [Commits](birdofpreyru/react-native-fs@v2.37.0...v2.38.2)

Updates `react` from 19.1.0 to 19.2.5
- [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.5/packages/react)

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

Updates `react-native` from 0.81.5 to 0.85.2
- [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.85.2/packages/react-native)

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

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

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

Updates `jsonrepair` from 3.13.2 to 3.14.0
- [Changelog](https://github.com/josdejong/jsonrepair/blob/main/CHANGELOG.md)
- [Commits](josdejong/jsonrepair@v3.13.2...v3.14.0)

Updates `zod` from 4.3.6 to 4.4.1
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](colinhacks/zod@v4.3.6...v4.4.1)

Updates `@react-native-community/cli` from 20.0.0 to 20.1.3
- [Release notes](https://github.com/react-native-community/cli/releases)
- [Changelog](https://github.com/react-native-community/cli/blob/main/packages/cli/CHANGELOG.md)
- [Commits](https://github.com/react-native-community/cli/commits/v20.1.3/packages/cli)

Updates `jest` from 29.7.0 to 30.3.0
- [Release notes](https://github.com/jestjs/jest/releases)
- [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jestjs/jest/commits/v30.3.0/packages/jest)

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

Updates `react-native-builder-bob` from 0.40.18 to 0.41.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.41.0/packages/react-native-builder-bob)

Updates `@babel/runtime` from 7.28.6 to 7.29.2
- [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.29.2/packages/babel-runtime)

Updates `@react-native-community/cli-platform-android` from 20.0.0 to 20.1.3
- [Release notes](https://github.com/react-native-community/cli/releases)
- [Commits](https://github.com/react-native-community/cli/commits/v20.1.3/packages/platform-android)

Updates `@react-native-community/cli-platform-ios` from 20.0.0 to 20.1.3
- [Release notes](https://github.com/react-native-community/cli/releases)
- [Changelog](https://github.com/react-native-community/cli/blob/main/packages/cli-platform-ios/CHANGELOG.md)
- [Commits](https://github.com/react-native-community/cli/commits/v20.1.3/packages/cli-platform-ios)

Updates `@react-native/babel-preset` from 0.81.5 to 0.85.2
- [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.81.5...v0.85.2)

Updates `@react-native/metro-config` from 0.81.5 to 0.85.2
- [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.85.2/packages/metro-config)

Updates `@react-native/typescript-config` from 0.81.5 to 0.85.2
- [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.85.2/packages/typescript-config)

Updates `react-test-renderer` from 19.1.0 to 19.2.5
- [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.5/packages/react-test-renderer)

Updates `metro-config` from 0.83.6 to 0.84.4
- [Release notes](https://github.com/facebook/metro/releases)
- [Changelog](https://github.com/facebook/metro/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/metro/commits/v0.84.4/packages/metro-config)

Updates `react-native-nitro-image` from 0.13.1 to 0.14.0
- [Release notes](https://github.com/mrousavy/react-native-nitro-image/releases)
- [Commits](https://github.com/mrousavy/react-native-nitro-image/commits/v0.14.0/packages/react-native-nitro-image)

Updates `@react-native/eslint-config` from 0.81.5 to 0.85.2
- [Release notes](https://github.com/facebook/react-native/releases)
- [Changelog](https://github.com/facebook/react-native/blob/main/CHANGELOG-0.7x.md)
- [Commits](https://github.com/facebook/react-native/commits/v0.85.2/packages/eslint-config-react-native)

Updates `eslint` from 8.57.1 to 10.3.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v8.57.1...v10.3.0)

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

Updates `typescript` from 5.9.3 to 6.0.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.9.3...v6.0.3)

Updates `react` from 19.1.0 to 19.2.5
- [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.5/packages/react)

Updates `react-native` from 0.81.5 to 0.85.2
- [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.85.2/packages/react-native)

Updates `@react-native-community/cli` from 20.0.0 to 20.1.3
- [Release notes](https://github.com/react-native-community/cli/releases)
- [Changelog](https://github.com/react-native-community/cli/blob/main/packages/cli/CHANGELOG.md)
- [Commits](https://github.com/react-native-community/cli/commits/v20.1.3/packages/cli)

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

Updates `jest` from 29.7.0 to 30.3.0
- [Release notes](https://github.com/jestjs/jest/releases)
- [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jestjs/jest/commits/v30.3.0/packages/jest)

Updates `@react-native-community/cli-platform-android` from 20.0.0 to 20.1.3
- [Release notes](https://github.com/react-native-community/cli/releases)
- [Commits](https://github.com/react-native-community/cli/commits/v20.1.3/packages/platform-android)

Updates `@react-native-community/cli-platform-ios` from 20.0.0 to 20.1.3
- [Release notes](https://github.com/react-native-community/cli/releases)
- [Changelog](https://github.com/react-native-community/cli/blob/main/packages/cli-platform-ios/CHANGELOG.md)
- [Commits](https://github.com/react-native-community/cli/commits/v20.1.3/packages/cli-platform-ios)

Updates `@react-native/babel-preset` from 0.81.5 to 0.85.2
- [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.81.5...v0.85.2)

Updates `@react-native/metro-config` from 0.81.5 to 0.85.2
- [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.85.2/packages/metro-config)

Updates `@react-native/typescript-config` from 0.81.5 to 0.85.2
- [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.85.2/packages/typescript-config)

Updates `react-test-renderer` from 19.1.0 to 19.2.5
- [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.5/packages/react-test-renderer)

Updates `react-native` from 0.83.4 to 0.85.2
- [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.85.2/packages/react-native)

Updates `@react-native/metro-config` from 0.83.9 to 0.85.2
- [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.85.2/packages/metro-config)

Updates `metro-config` from 0.83.7 to 0.84.4
- [Release notes](https://github.com/facebook/metro/releases)
- [Changelog](https://github.com/facebook/metro/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/metro/commits/v0.84.4/packages/metro-config)

Updates `react-native-nitro-image` from 0.13.1 to 0.14.0
- [Release notes](https://github.com/mrousavy/react-native-nitro-image/releases)
- [Commits](https://github.com/mrousavy/react-native-nitro-image/commits/v0.14.0/packages/react-native-nitro-image)

Updates `react-native` from 0.83.4 to 0.85.2
- [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.85.2/packages/react-native)

Updates `@react-native/metro-config` from 0.83.9 to 0.85.2
- [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.85.2/packages/metro-config)

Updates `metro-config` from 0.83.7 to 0.84.4
- [Release notes](https://github.com/facebook/metro/releases)
- [Changelog](https://github.com/facebook/metro/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/metro/commits/v0.84.4/packages/metro-config)

Updates `react-native` from 0.83.4 to 0.85.2
- [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.85.2/packages/react-native)

Updates `@react-native/metro-config` from 0.83.9 to 0.85.2
- [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.85.2/packages/metro-config)

Updates `metro-config` from 0.83.7 to 0.84.4
- [Release notes](https://github.com/facebook/metro/releases)
- [Changelog](https://github.com/facebook/metro/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/metro/commits/v0.84.4/packages/metro-config)

Updates `react-native` from 0.83.4 to 0.85.2
- [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.85.2/packages/react-native)

Updates `@react-native/metro-config` from 0.83.9 to 0.85.2
- [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.85.2/packages/metro-config)

Updates `typescript` from 5.9.3 to 6.0.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.9.3...v6.0.3)

Updates `@docsearch/core` from 4.5.3 to 4.6.3
- [Release notes](https://github.com/algolia/docsearch/releases)
- [Changelog](https://github.com/algolia/docsearch/blob/main/CHANGELOG.md)
- [Commits](https://github.com/algolia/docsearch/commits/v4.6.3/packages/docsearch-core)

Updates `@docusaurus/core` from 3.9.2 to 3.10.1
- [Release notes](https://github.com/facebook/docusaurus/releases)
- [Changelog](https://github.com/facebook/docusaurus/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/docusaurus/commits/v3.10.1/packages/docusaurus)

Updates `@docusaurus/plugin-google-tag-manager` from 3.9.2 to 3.10.1
- [Release notes](https://github.com/facebook/docusaurus/releases)
- [Changelog](https://github.com/facebook/docusaurus/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/docusaurus/commits/v3.10.1/packages/docusaurus-plugin-google-tag-manager)

Updates `@docusaurus/plugin-sitemap` from 3.9.2 to 3.10.1
- [Release notes](https://github.com/facebook/docusaurus/releases)
- [Changelog](https://github.com/facebook/docusaurus/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/docusaurus/commits/v3.10.1/packages/docusaurus-plugin-sitemap)

Updates `@docusaurus/preset-classic` from 3.9.2 to 3.10.1
- [Release notes](https://github.com/facebook/docusaurus/releases)
- [Changelog](https://github.com/facebook/docusaurus/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/docusaurus/commits/v3.10.1/packages/docusaurus-preset-classic)

Updates `@mui/material` from 7.3.7 to 9.0.0
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/v9.0.0/packages/mui-material)

Updates `react-icons` from 5.5.0 to 5.6.0
- [Release notes](https://github.com/react-icons/react-icons/releases)
- [Commits](react-icons/react-icons@v5.5.0...v5.6.0)

Updates `@docusaurus/module-type-aliases` from 3.9.2 to 3.10.1
- [Release notes](https://github.com/facebook/docusaurus/releases)
- [Changelog](https://github.com/facebook/docusaurus/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/docusaurus/commits/v3.10.1/packages/docusaurus-module-type-aliases)

Updates `@docusaurus/tsconfig` from 3.9.2 to 3.10.1
- [Release notes](https://github.com/facebook/docusaurus/releases)
- [Changelog](https://github.com/facebook/docusaurus/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/docusaurus/commits/v3.10.1/packages/docusaurus-tsconfig)

Updates `typedoc-plugin-markdown` from 4.10.0 to 4.11.0
- [Release notes](https://github.com/typedoc2md/typedoc-plugin-markdown/releases)
- [Changelog](https://github.com/typedoc2md/typedoc-plugin-markdown/blob/main/packages/typedoc-plugin-markdown/CHANGELOG.md)
- [Commits](https://github.com/typedoc2md/typedoc-plugin-markdown/commits/typedoc-plugin-markdown@4.11.0/packages/typedoc-plugin-markdown)

Updates `typescript` from 5.9.3 to 6.0.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.9.3...v6.0.3)

Updates `react` from 19.1.0 to 19.2.5
- [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.5/packages/react)

Updates `react-native` from 0.81.5 to 0.85.2
- [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.85.2/packages/react-native)

Updates `typescript` from 5.9.3 to 6.0.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.9.3...v6.0.3)

Updates `react` from 19.1.0 to 19.2.5
- [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.5/packages/react)

Updates `react-native` from 0.81.5 to 0.85.2
- [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.85.2/packages/react-native)

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

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

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

Updates `typescript` from 5.9.3 to 6.0.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.9.3...v6.0.3)

Updates `react` from 19.1.0 to 19.2.5
- [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.5/packages/react)

Updates `react-native` from 0.81.5 to 0.85.2
- [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.85.2/packages/react-native)

Updates `react-native-builder-bob` from 0.40.18 to 0.41.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.41.0/packages/react-native-builder-bob)

---
updated-dependencies:
- dependency-name: "@cspell/eslint-plugin"
  dependency-version: 10.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: "@react-native/eslint-config"
  dependency-version: 0.85.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: cspell
  dependency-version: 10.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: eslint
  dependency-version: 10.3.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: eslint-plugin-ft-flow
  dependency-version: 3.0.11
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: eslint-plugin-jsdoc
  dependency-version: 62.9.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: expo-router
  dependency-version: 55.0.13
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: prettier
  dependency-version: 3.8.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: typescript
  dependency-version: 6.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: "@dr.pogodin/react-native-fs"
  dependency-version: 2.38.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: react
  dependency-version: 19.2.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: "@types/react"
  dependency-version: 19.2.14
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: react-native
  dependency-version: 0.85.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: expo
  dependency-version: 55.0.19
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: expo-asset
  dependency-version: 55.0.16
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: expo-file-system
  dependency-version: 55.0.17
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: jsonrepair
  dependency-version: 3.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: zod
  dependency-version: 4.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: "@react-native-community/cli"
  dependency-version: 20.1.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: jest
  dependency-version: 30.3.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: "@types/jest"
  dependency-version: 30.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: react-native-builder-bob
  dependency-version: 0.41.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: "@babel/runtime"
  dependency-version: 7.29.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: "@react-native-community/cli-platform-android"
  dependency-version: 20.1.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: "@react-native-community/cli-platform-ios"
  dependency-version: 20.1.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: "@react-native/babel-preset"
  dependency-version: 0.85.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: "@react-native/metro-config"
  dependency-version: 0.85.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: "@react-native/typescript-config"
  dependency-version: 0.85.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: react-test-renderer
  dependency-version: 19.2.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: metro-config
  dependency-version: 0.84.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: react-native-nitro-image
  dependency-version: 0.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: "@react-native/eslint-config"
  dependency-version: 0.85.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: eslint
  dependency-version: 10.3.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: prettier
  dependency-version: 3.8.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: typescript
  dependency-version: 6.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: react
  dependency-version: 19.2.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: react-native
  dependency-version: 0.85.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: "@react-native-community/cli"
  dependency-version: 20.1.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: "@types/jest"
  dependency-version: 30.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: jest
  dependency-version: 30.3.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: "@react-native-community/cli-platform-android"
  dependency-version: 20.1.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: "@react-native-community/cli-platform-ios"
  dependency-version: 20.1.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: "@react-native/babel-preset"
  dependency-version: 0.85.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: "@react-native/metro-config"
  dependency-version: 0.85.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: "@react-native/typescript-config"
  dependency-version: 0.85.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: react-test-renderer
  dependency-version: 19.2.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: react-native
  dependency-version: 0.85.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: "@react-native/metro-config"
  dependency-version: 0.85.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: metro-config
  dependency-version: 0.84.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: react-native-nitro-image
  dependency-version: 0.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: react-native
  dependency-version: 0.85.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: "@react-native/metro-config"
  dependency-version: 0.85.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: metro-config
  dependency-version: 0.84.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: react-native
  dependency-version: 0.85.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: "@react-native/metro-config"
  dependency-version: 0.85.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: metro-config
  dependency-version: 0.84.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: react-native
  dependency-version: 0.85.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: "@react-native/metro-config"
  dependency-version: 0.85.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: typescript
  dependency-version: 6.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: "@docsearch/core"
  dependency-version: 4.6.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: "@docusaurus/core"
  dependency-version: 3.10.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: "@docusaurus/plugin-google-tag-manager"
  dependency-version: 3.10.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: "@docusaurus/plugin-sitemap"
  dependency-version: 3.10.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: "@docusaurus/preset-classic"
  dependency-version: 3.10.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: "@mui/material"
  dependency-version: 9.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: react-icons
  dependency-version: 5.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: "@docusaurus/module-type-aliases"
  dependency-version: 3.10.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: "@docusaurus/tsconfig"
  dependency-version: 3.10.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: typedoc-plugin-markdown
  dependency-version: 4.11.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: typescript
  dependency-version: 6.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: react
  dependency-version: 19.2.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: react-native
  dependency-version: 0.85.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: typescript
  dependency-version: 6.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: react
  dependency-version: 19.2.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: react-native
  dependency-version: 0.85.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: expo
  dependency-version: 55.0.19
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: expo-asset
  dependency-version: 55.0.16
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: expo-file-system
  dependency-version: 55.0.17
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: typescript
  dependency-version: 6.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: react
  dependency-version: 19.2.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: react-native
  dependency-version: 0.85.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: react-native-builder-bob
  dependency-version: 0.41.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
...

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 May 1, 2026
@msluszniak msluszniak marked this pull request as draft May 5, 2026 11:01
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