Skip to content

chore(deps): bump the npm-minor-patch group across 1 directory with 16 updates - #266

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-minor-patch-715f687b4d
Closed

chore(deps): bump the npm-minor-patch group across 1 directory with 16 updates#266
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-minor-patch-715f687b4d

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the npm-minor-patch group with 16 updates in the / directory:

Package From To
@expo/metro-runtime 57.0.7 57.0.10
@expo/ui 57.0.10 57.0.11
@material-symbols/svg-400 0.45.9 0.46.0
@react-navigation/native 7.3.14 7.3.16
@react-navigation/native-stack 7.18.6 7.18.8
axios 1.18.1 1.19.0
react-native-keyboard-controller 1.21.9 1.22.3
react-native-safe-area-context 5.8.0 5.9.0
react-native-screens 4.26.2 4.27.0
react-native-webview 13.16.1 13.17.0
react-native-worklets 0.10.3 0.11.4
@types/node 26.1.2 26.2.0
@typescript-eslint/eslint-plugin 8.65.0 8.67.0
@typescript-eslint/parser 8.65.0 8.67.0
eslint 10.8.0 10.8.1
tsx 4.23.1 4.23.12

Updates @expo/metro-runtime from 57.0.7 to 57.0.10

Commits

Updates @expo/ui from 57.0.10 to 57.0.11

Commits

Updates @material-symbols/svg-400 from 0.45.9 to 0.46.0

Commits

Updates @react-navigation/native from 7.3.14 to 7.3.16

Release notes

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

@​react-navigation/native@​7.3.15

7.3.15 (2026-08-05)

Bug Fixes

  • workaround VSCode autoimport not working for useNavigation etc (1d26955), closes #13204 - by @
Changelog

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

7.3.16 (2026-08-07)

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

7.3.15 (2026-08-05)

Bug Fixes

  • workaround VSCode autoimport not working for useNavigation etc (1d26955), closes #13204 - by @
Commits

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

Changelog

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

7.18.8 (2026-08-07)

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

7.18.7 (2026-08-05)

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

Commits

Updates axios from 1.18.1 to 1.19.0

Release notes

Sourced from axios's releases.

v1.19.0 - July 22, 2026

This release raises the form-data security floor, adds configuration and type-system capabilities, and fixes NO_PROXY matching, interceptor errors, progress reporting, and serialization edge cases.

🔒 Security Fixes

  • Multipart Form Data: Raised the form-data dependency floor to ^4.0.6, preventing fresh installations from resolving versions affected by the CRLF injection vulnerability GHSA-hmw2-7cc7-3qxx (GHSA-hmw2-7cc7-3qxx). (#11028)

🚀 New Features

  • Configuration Extensibility: Preserved own-enumerable symbol-keyed fields through mergeConfig and added a generic params type across public TypeScript declarations, responses, errors, adapters, and serializers. (#11043, #11081)
  • Header Parameter Parsing: Added the opt-in AxiosHeaders.parseParameters() parser for quote-aware, RFC-style HTTP parameter parsing while preserving legacy parsing behavior. (#11051)
  • HTTP Status Codes: Added the missing Cloudflare 520 WebServerReturnsAnUnknownError status and matching ESM/CJS declarations. (#11067)

🐛 Bug Fixes

  • Form Data Conversion: Limited formDataToJSON path splitting to dot and bracket notation, preserving literal punctuation in keys, and removed browser-facing Buffer.from usage from toFormData to avoid unnecessary polyfills. (#11006, #11018)
  • Proxy Bypass: Canonicalized IPv4 shorthand, octal, and hexadecimal forms during NO_PROXY matching and honored * entries within comma- or space-separated bypass lists. (#11029, #11053)
  • Cancellation: Propagated already-aborted input signals immediately when composing abort signals. (#11035)
  • Header Handling: Preserved empty first values for duplicate singleton headers and made AxiosHeaders#getSetCookie() consistently return arrays for present values. (#11036, #11037)
  • URL Handling: Included normalized, safely redacted offending URLs in malformed-protocol errors and removed repeated trailing slashes when combining base URLs. (#11024, #11038)
  • Progress Events: Clamped malformed negative progress values to zero and ensured final Node.js download progress events are delivered before streamed responses close. (#11039, #11040)
  • Error and JSON Serialization: Serialized Set values as arrays in JSON-compatible snapshots and synthesized useful AxiosError messages from otherwise-empty AggregateError instances. (#11044, #11059)
  • Content-Length Enforcement: Corrected base64 data: URL size estimation so maxContentLength is enforced consistently by the HTTP and Fetch adapters. (#11061)
  • Synchronous Interceptors: Prevented requests from being dispatched after synchronous request interceptors fail unless their paired rejection handler resolves successfully. (#11071)

🔧 Maintenance & Chores

  • Dependencies: Updated development and test tooling, the docs fixture's Axios version, and GitHub Actions integrations including Checkout, Setup Node, Setup Deno, and Zizmor. (#11031, #11055, #11056, #11058, #11079, #11080, #11088, #11089, #11090)
  • Build Outputs: Limited sourcemap generation to published minified bundles, removing broken map references from non-minified builds. (#11054)
  • Form Data Internals: Centralized FormData header handling and made the Node.js adapter tolerate getHeaders() returning undefined under the content-only policy. (#11062)
  • Developer Experience: Ignored common local AI-tooling directories and fixed a constant-reassignment crash when the development sandbox serves its root path. (#11032, #11073)
  • Documentation: Updated sponsor information, clarified that baseURL is not a path-security boundary, scoped provenance claims to attested releases, and corrected the configuration-defaults documentation. (#11041, #11068, #11076, #11078)
  • Publishing: Simplified v1 publishing to use the npm version bundled with Node.js 26 and updated package metadata for the 1.19.0 release. (#11083, #11095)

🌟 New Contributors

We are thrilled to welcome our new contributors. Thank you for helping improve Axios:

... (truncated)

Changelog

Sourced from axios's changelog.

v1.19.0 — July 22, 2026

This release raises the form-data security floor, adds configuration and type-system capabilities, and fixes NO_PROXY matching, interceptor errors, progress reporting, and serialization edge cases.

🔒 Security Fixes

  • Multipart Form Data: Raised the form-data dependency floor to ^4.0.6, preventing fresh installations from resolving versions affected by the CRLF injection vulnerability GHSA-hmw2-7cc7-3qxx (GHSA-hmw2-7cc7-3qxx). (#11028)

🚀 New Features

  • Configuration Extensibility: Preserved own-enumerable symbol-keyed fields through mergeConfig and added a generic params type across public TypeScript declarations, responses, errors, adapters, and serializers. (#11043, #11081)
  • Header Parameter Parsing: Added the opt-in AxiosHeaders.parseParameters() parser for quote-aware, RFC-style HTTP parameter parsing while preserving legacy parsing behavior. (#11051)
  • HTTP Status Codes: Added the missing Cloudflare 520 WebServerReturnsAnUnknownError status and matching ESM/CJS declarations. (#11067)

🐛 Bug Fixes

  • Form Data Conversion: Limited formDataToJSON path splitting to dot and bracket notation, preserving literal punctuation in keys, and removed browser-facing Buffer.from usage from toFormData to avoid unnecessary polyfills. (#11006, #11018)

  • Proxy Bypass: Canonicalized IPv4 shorthand, octal, and hexadecimal forms during NO_PROXY matching and honored * entries within comma- or space-separated bypass lists. (#11029, #11053)

  • Cancellation: Propagated already-aborted input signals immediately when composing abort signals. (#11035)

  • Header Handling: Preserved empty first values for duplicate singleton headers and made AxiosHeaders#getSetCookie() consistently return arrays for present values. (#11036, #11037)

  • URL Handling: Included normalized, safely redacted offending URLs in malformed-protocol errors and removed repeated trailing slashes when combining base URLs. (#11008, #11038)

  • Progress Events: Clamped malformed negative progress values to zero and ensured final Node.js download progress events are delivered before streamed responses close. (#11039, #11040)

  • Error and JSON Serialization: Serialized Set values as arrays in JSON-compatible snapshots and synthesized useful AxiosError messages from otherwise-empty AggregateError instances. (#11044, #11059)

  • Content-Length Enforcement: Corrected base64 data: URL size estimation so maxContentLength is enforced consistently by the HTTP and Fetch adapters. (#11061)

  • Synchronous Interceptors: Prevented requests from being dispatched after synchronous request interceptors fail unless their paired rejection handler resolves successfully. (#11071)

🔧 Maintenance & Chores

  • Dependencies: Updated development and test tooling, the docs fixture's Axios version, and GitHub Actions integrations including Checkout, Setup Node, Setup Deno, and Zizmor. (#11031, #11055, #11056, #11058, #11079, #11080, #11088, #11089, #11090)
  • Build Outputs: Limited sourcemap generation to published minified bundles, removing broken map references from non-minified builds. (#11054)
  • Form Data Internals: Centralized FormData header handling and made the Node.js adapter tolerate getHeaders() returning undefined under the content-only policy. (#11062)
  • Developer Experience: Ignored common local AI-tooling directories and fixed a constant-reassignment crash when the development sandbox serves its root path. (#11032, #11073)
  • Documentation: Updated sponsor information, clarified that baseURL is not a path-security boundary, scoped provenance claims to attested releases, and corrected the configuration-defaults documentation. (#11041, #11068, #11076, #11078)
  • Publishing: Simplified v1 publishing to use the npm version bundled with Node.js 26 and updated package metadata for the 1.19.0 release. (#11083, #11095)

🌟 New Contributors

We are thrilled to welcome our new contributors. Thank you for helping improve Axios:

... (truncated)

Commits
  • 311fcc5 chore(release): prepare release 1.19.0 (#11095)
  • cb4fd74 chore(deps): bump axios from 1.16.1 to 1.18.1 in /docs (#11088)
  • 004c93a chore(deps): bump actions/setup-node from 6.4.0 to 7.0.0 in the github-action...
  • 122edde chore(deps-dev): bump the development_dependencies group with 3 updates (#11089)
  • c44f8d0 ci: use bundled npm for v1 publish (#11083)
  • 878bb29 fix(sandbox): resolve TypeError on constant variable path assignment (#11073)
  • a092bae fix(core): synchronous interceptors swallow errors and proceed with request (...
  • 3041b8f feat(HttpStatusCode): add missing 520 status code (#11067)
  • 58b16c8 refactor(helpers): extract duplicated setFormDataHeaders into a shared helper...
  • 3077e62 feat(types): Allow the Params property to be typed, instead of any (#11081)
  • Additional commits viewable in compare view

Updates react-native-keyboard-controller from 1.21.9 to 1.22.3

Release notes

Sourced from react-native-keyboard-controller's releases.

Release 1.22.3

Just bunch of fixes making the library more stable 😎

🐛 Bug fixes

👍 Improvements

🔢 Miscellaneous

Release 1.22.2

Improving KeyboardChatScrollView and interactive dismissal behavior on Android 🤖

🐛 Bug fixes

🔢 Miscellaneous

Release 1.22.1

Improving KeyboardAwareScrollView behavior in edge cases 😎

🐛 Bug fixes

📚 Documentation

🔢 Miscellaneous

Release 1.22.0

... (truncated)

Commits
  • 0109d89 chore: release 1.22.3 (#1581)
  • 3677f93 fix: use propagation view surfaceId for focused input events inside Modal...
  • 7e47a16 fix: UTF-16 encoding in onTextChangedHandler (#1584)
  • 9c8f9ba chore: bump legend-list (#1582)
  • 7de6ea9 fix: stabilize unit tests (#1580)
  • e3c179a feat: rounded prop for KeyboardEffects (#1578)
  • 9e63b74 fix: defer focused input layout sync out of synchronous onStart dispatch (#1576)
  • c579a25 fix: KeyboardChatScrollView crash on unmount (#1579)
  • b5fe11e fix: overscroll during interactive dismissal using KeyboardChatScrollView c...
  • 2bb2323 fix: strict api compatibility (#1560)
  • Additional commits viewable in compare view

Updates react-native-safe-area-context from 5.8.0 to 5.9.0

Release notes

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

Release 5.9.0

5.9.0 (2026-08-12)

Bug Fixes

  • avoid NotFoundError when the measurement element is already detached (#746) (76dfb06)
  • make nested SafeAreaProvider report its own frame and insets on web (#737) (2fa707d)
  • update insets and frame on window resize on web (#736) (1fe7ec5)

Features

Release 5.8.1

5.8.1 (2026-08-03)

Bug Fixes

  • Move jest/mock into package build (fix TS under RN 0.87) (#745) (b9e2857)
  • skip Fabric SafeAreaView state updates while detached from window (#735) (ae0e83f)

Features

  • upgrade to react-native 0.85.0 with RNTA 5.3.2 (#732) (4d00f52)
Commits
  • f65d4d9 chore: release 5.9.0
  • 76dfb06 fix: avoid NotFoundError when the measurement element is already detached (#746)
  • 2fa707d fix: make nested SafeAreaProvider report its own frame and insets on web (#737)
  • 1fe7ec5 fix: update insets and frame on window resize on web (#736)
  • 42c50a6 feat: Adopt AGP v9 (#733)
  • b3cfc57 chore: release 5.8.1
  • 2f7f2e9 rm tea.yaml
  • b9e2857 fix: Move jest/mock into package build (fix TS under RN 0.87) (#745)
  • ae0e83f fix: skip Fabric SafeAreaView state updates while detached from window (#735)
  • 4d00f52 feat: upgrade to react-native 0.85.0 with RNTA 5.3.2 (#732)
  • Additional commits viewable in compare view

Updates react-native-screens from 4.26.2 to 4.27.0

Release notes

Sourced from react-native-screens's releases.

4.27.0

What's changed

This release adds support for React Native 0.87, fixing a runtime crash on iOS in the process. It also introduces the experimental ScrollToTopGuard component and fully migrates the Split component implementation from Swift to Objective-C.

✅ Improvements

  • feat(Android, Stack v5): support sending multiple updates via view command (#4243)
  • refactor(test): Add scenario for Stack v5 preventNativeDismiss with nested stack (#4279)
  • feat(Stack v5, iOS): Implement basic view commands for iOS header menu (#4339)
  • feat(experimental, iOS): add experimental ScrollToTopGuard component (#4454)
  • refactor: change default value of backTitleVisible to true instead of 'true' (#4457)
  • chore(iOS, Split): Migrate ReactMountingTransactionObserving to obj-c (#4458)
  • chore(iOS, Split): Migrate Appearance-related logic to obj-c (#4459)
  • chore: add support for react-native@0.87.0-rc.3 (#4461)
  • chore(iOS, Split): Migrate RNSSplitNavigationController to obj-c (#4462)
  • chore(iOS, Split): Migrate RNSSplitScreenController to obj-c (#4463)
  • chore(iOS, Split): Migrate RNSSplitHostController to Obj-C with all associated classes (#4465)
  • chore(iOS): Post Swift-removal cleanup (#4466)
  • feat(ios, Stack v4): add subtitle support for UIMenu header button submenus (#4469)

🐞 Bugfixes

  • fix(Android): defensively guard against an unexpected menuItem Id (#4450)
  • fix(Android, Stack): don't add top inset to measured header height when it's disabled (#4452)
  • fix(iOS, Stack v4): fall back to inheriting orientation if it's not defined on the screen (#4455)
  • fix(iOS): Don't swap view controller's view during transition (#4456)
  • fix(iOS, Tabs): re-layout tab bar after async icon load to prevent label truncation on iOS 26 (#4460)
  • fix(Android): Fix crash when header gets update during screen removal (#4468)
  • fix(Android, FormSheet v4): Cleanup inset and layout listener (#4470)
  • fix(JS): Prevent using ViewInstance type (#4471)
  • fix(iOS, Stack v5): use framework-style imports for React core headers (#4472)

Misc

  • chore(examples): allow explicit undefined for defaultRouteName in TabsContainerStateInitArg (#4353)
  • chore: block the possibility to create plain-text issues and update agents instructions (#4366)
  • chore: Update workflows to include v4-main (#4396)
  • chore: Remove nightly publishing flows from v4 and bump npm-package-publish (#4401)
  • chore: bump react-navigation submodule version (#4451)
  • chore: format RNSScreenShadowNode.cpp after #4357 (#4453)
  • chore(Android): Fix incremental compilation in FabricExample broken by Kotlin 2.2 symlink issue (#4467)
Commits

Updates react-native-webview from 13.16.1 to 13.17.0

Release notes

Sourced from react-native-webview's releases.

v13.17.0

13.17.0 (2026-06-20)

Features

v13.16.2

13.16.2 (2026-06-20)

Bug Fixes

Commits
Install script changes

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


Updates react-native-worklets from 0.10.3 to 0.11.4

Release notes

Sourced from react-native-worklets's releases.

Worklets - 0.11.4

What's Changed

Full Changelog: software-mansion/react-native-reanimated@worklets-0.11.3...worklets-0.11.4

Worklets - 0.11.3

What's Changed

Full Changelog: software-mansion/react-native-reanimated@worklets-0.11.2...worklets-0.11.3

Worklets - 0.11.2

What's Changed

Full Changelog: software-mansion/react-native-reanimated@worklets-0.11.1...worklets-0.11.2

Worklets - 0.11.1

What's Changed

Full Changelog: software-mansion/react-native-reanimated@worklets-0.11.0...worklets-0.11.1

Worklets - 0.11.0

Key changes

Experimental bytecode worklets in Legacy Eval Mode

Legacy Eval Mode can now optionally evaluate worklets from Hermes bytecode instead of plain code in production builds. This is an opt-in workaround for the Hermes V1 memory issue (software-mansion/react-native-reanimated#9650).

https://docs.swmansion.com/react-native-worklets/docs/worklets-babel-plugin/plugin-options

Other changes

... (truncated)

Commits
  • 06ed7ee release(Worklets): 0.11.4 (#10225)
  • d093aaf fix(Worklets): UI loop not pausing when the app is backgrounded (#10196)
  • 8616206 fix(Worklets): missing autorelease drain on detached worklet threads (#10192)
  • e5ccb1e release(Worklets): 0.11.3
  • 6a426b6 fix(Worklets): don't mutate shared Babel options in plugin (#10032)
  • 470d425 release(Worklets): 0.11.2
  • f20aaac fix(Worklets): networking in Bundle Mode on some setups (#9897)
  • c9c7c17 fix: Prevent crashes on empty worklet source maps in debug builds (#9920)
  • afa43be release(Worklets): 0.11.1
  • 338b87c Changed error to warning in createSerializable unserializable code branch
  • Additional commits viewable in compare view<...

    Description has been truncated

…6 updates

Bumps the npm-minor-patch group with 16 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@expo/metro-runtime](https://github.com/expo/expo) | `57.0.7` | `57.0.10` |
| [@expo/ui](https://github.com/expo/expo/tree/HEAD/packages/expo-ui) | `57.0.10` | `57.0.11` |
| [@material-symbols/svg-400](https://github.com/marella/material-symbols/tree/HEAD/svg/400) | `0.45.9` | `0.46.0` |
| [@react-navigation/native](https://github.com/react-navigation/react-navigation/tree/HEAD/packages/native) | `7.3.14` | `7.3.16` |
| [@react-navigation/native-stack](https://github.com/react-navigation/react-navigation/tree/HEAD/packages/native-stack) | `7.18.6` | `7.18.8` |
| [axios](https://github.com/axios/axios) | `1.18.1` | `1.19.0` |
| [react-native-keyboard-controller](https://github.com/kirillzyusko/react-native-keyboard-controller) | `1.21.9` | `1.22.3` |
| [react-native-safe-area-context](https://github.com/AppAndFlow/react-native-safe-area-context) | `5.8.0` | `5.9.0` |
| [react-native-screens](https://github.com/software-mansion/react-native-screens) | `4.26.2` | `4.27.0` |
| [react-native-webview](https://github.com/react-native-webview/react-native-webview) | `13.16.1` | `13.17.0` |
| [react-native-worklets](https://github.com/software-mansion/react-native-reanimated/tree/HEAD/packages/react-native-worklets) | `0.10.3` | `0.11.4` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `26.1.2` | `26.2.0` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.65.0` | `8.67.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.65.0` | `8.67.0` |
| [eslint](https://github.com/eslint/eslint) | `10.8.0` | `10.8.1` |
| [tsx](https://github.com/privatenumber/tsx) | `4.23.1` | `4.23.12` |



Updates `@expo/metro-runtime` from 57.0.7 to 57.0.10
- [Changelog](https://github.com/expo/expo/blob/main/CHANGELOG.md)
- [Commits](https://github.com/expo/expo/commits)

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

Updates `@material-symbols/svg-400` from 0.45.9 to 0.46.0
- [Release notes](https://github.com/marella/material-symbols/releases)
- [Commits](https://github.com/marella/material-symbols/commits/v0.46.0/svg/400)

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

Updates `@react-navigation/native-stack` from 7.18.6 to 7.18.8
- [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.8/packages/native-stack/CHANGELOG.md)
- [Commits](https://github.com/react-navigation/react-navigation/commits/@react-navigation/native-stack@7.18.8/packages/native-stack)

Updates `axios` from 1.18.1 to 1.19.0
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.18.1...v1.19.0)

Updates `react-native-keyboard-controller` from 1.21.9 to 1.22.3
- [Release notes](https://github.com/kirillzyusko/react-native-keyboard-controller/releases)
- [Commits](kirillzyusko/react-native-keyboard-controller@1.21.9...1.22.3)

Updates `react-native-safe-area-context` from 5.8.0 to 5.9.0
- [Release notes](https://github.com/AppAndFlow/react-native-safe-area-context/releases)
- [Commits](appandflow/react-native-safe-area-context@v5.8.0...v5.9.0)

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

Updates `react-native-webview` from 13.16.1 to 13.17.0
- [Release notes](https://github.com/react-native-webview/react-native-webview/releases)
- [Commits](react-native-webview/react-native-webview@v13.16.1...v13.17.0)

Updates `react-native-worklets` from 0.10.3 to 0.11.4
- [Release notes](https://github.com/software-mansion/react-native-reanimated/releases)
- [Changelog](https://github.com/software-mansion/react-native-reanimated/blob/main/packages/react-native-worklets/CHANGELOG.md)
- [Commits](https://github.com/software-mansion/react-native-reanimated/commits/worklets-0.11.4/packages/react-native-worklets)

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

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

Updates `@typescript-eslint/parser` from 8.65.0 to 8.67.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.67.0/packages/parser)

Updates `eslint` from 10.8.0 to 10.8.1
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v10.8.0...v10.8.1)

Updates `tsx` from 4.23.1 to 4.23.12
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.23.1...v4.23.12)

---
updated-dependencies:
- dependency-name: "@expo/metro-runtime"
  dependency-version: 57.0.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-minor-patch
- dependency-name: "@expo/ui"
  dependency-version: 57.0.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-minor-patch
- dependency-name: "@material-symbols/svg-400"
  dependency-version: 0.46.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-minor-patch
- dependency-name: "@react-navigation/native"
  dependency-version: 7.3.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-minor-patch
- dependency-name: "@react-navigation/native-stack"
  dependency-version: 7.18.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-minor-patch
- dependency-name: axios
  dependency-version: 1.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-minor-patch
- dependency-name: react-native-keyboard-controller
  dependency-version: 1.22.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-minor-patch
- dependency-name: react-native-safe-area-context
  dependency-version: 5.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-minor-patch
- dependency-name: react-native-screens
  dependency-version: 4.27.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-minor-patch
- dependency-name: react-native-webview
  dependency-version: 13.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-minor-patch
- dependency-name: react-native-worklets
  dependency-version: 0.11.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-minor-patch
- dependency-name: "@types/node"
  dependency-version: 26.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor-patch
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.67.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor-patch
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.67.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor-patch
- dependency-name: eslint
  dependency-version: 10.8.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-minor-patch
- dependency-name: tsx
  dependency-version: 4.23.12
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-minor-patch
...

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 18, 2026
@naltatis naltatis closed this Aug 20, 2026
@dependabot @github

dependabot Bot commented on behalf of github Aug 20, 2026

Copy link
Copy Markdown
Contributor Author

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/npm-minor-patch-715f687b4d branch August 20, 2026 14:54
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.

1 participant