Skip to content

chore(deps): bump the minor-and-patch group across 1 directory with 24 updates#38

Open
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/master/minor-and-patch-ab2466a06c
Open

chore(deps): bump the minor-and-patch group across 1 directory with 24 updates#38
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/master/minor-and-patch-ab2466a06c

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 13, 2026

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

Package From To
eslint-plugin-react-refresh 0.4.20 0.5.0
lint-staged 16.1.5 16.2.7
semver 7.7.2 7.7.4
@types/semver 7.7.0 7.7.1
tsx 4.20.5 4.21.0
turbo 2.5.6 2.8.7
typescript 5.9.2 5.9.3
@gorhom/bottom-sheet 5.2.4 5.2.8
@react-navigation/bottom-tabs 7.4.6 7.13.0
@react-navigation/drawer 7.5.7 7.8.1
@react-navigation/elements 2.6.3 2.9.5
@react-navigation/native 7.1.17 7.1.28
react-native-gesture-handler 2.28.0 2.30.0
react-native-image-colors 2.5.0 2.5.1
react-native-paper 5.14.5 5.15.0
react-native-permissions 5.4.2 5.4.4
react-native-safe-area-context 5.6.1 5.6.2
react-native-screens 4.15.4 4.23.0
react-native-tab-view 4.1.3 4.2.2
@babel/core 7.28.3 7.29.0
drizzle-orm 0.44.5 0.45.1
drizzle-kit 0.31.4 0.31.9
i18next 25.4.2 25.8.6
zustand 5.0.8 5.0.11

Updates eslint-plugin-react-refresh from 0.4.20 to 0.5.0

Release notes

Sourced from eslint-plugin-react-refresh's releases.

v0.5.0

Breaking changes

  • The package now ships as ESM and requires ESLint 9 + node 20. Because legacy config doesn't support ESM, this requires to use flat config
  • A new reactRefresh export is available and prefered over the default export. It's an object with two properties:
    • plugin: The plugin object with the rules
    • configs: An object containing configuration presets, each exposed as a function. These functions accept your custom options, merge them with sensible defaults for that config, and return the final config object.
  • customHOCs option was renamed to extraHOCs
  • Validation of HOCs calls is now more strict, you may need to add some HOCs to the extraHOCs option

Config example:

import { defineConfig } from "eslint/config";
import { reactRefresh } from "eslint-plugin-react-refresh";
export default defineConfig(
/* Main config */
reactRefresh.configs.vite({ extraHOCs: ["someLibHOC"] }),
);

Config example without config:

import { defineConfig } from "eslint/config";
import { reactRefresh } from "eslint-plugin-react-refresh";
export default defineConfig({
files: ["/*.ts", "/*.tsx"],
plugins: {
// other plugins
"react-refresh": reactRefresh.plugin,
},
rules: {
// other rules
"react-refresh/only-export-components": [
"warn",
{ extraHOCs: ["someLibHOC"] },
],
},
});

Why

This version follows a revamp of the internal logic to better make the difference between random call expressions like export const Enum = Object.keys(Record) and actual React HOC calls like export const MemoComponent = memo(Component). (fixes #93)

The rule now handles ternaries and patterns like export default customHOC(props)(Component) which makes it able to correctly support files like this one given this config:

... (truncated)

Changelog

Sourced from eslint-plugin-react-refresh's changelog.

0.5.0

Breaking changes

  • The package now ships as ESM and requires ESLint 9 + node 20. Because legacy config doesn't support ESM, this requires to use flat config
  • A new reactRefresh export is available and prefered over the default export. It's an object with two properties:
    • plugin: The plugin object with the rules
    • configs: An object containing configuration presets, each exposed as a function. These functions accept your custom options, merge them with sensible defaults for that config, and return the final config object.
  • customHOCs option was renamed to extraHOCs
  • Validation of HOCs calls is now more strict, you may need to add some HOCs to the extraHOCs option

Config example:

import { defineConfig } from "eslint/config";
import { reactRefresh } from "eslint-plugin-react-refresh";
export default defineConfig(
/* Main config */
reactRefresh.configs.vite({ extraHOCs: ["someLibHOC"] }),
);

Config example without config:

import { defineConfig } from "eslint/config";
import { reactRefresh } from "eslint-plugin-react-refresh";
export default defineConfig({
files: ["/*.ts", "/*.tsx"],
plugins: {
// other plugins
"react-refresh": reactRefresh.plugin,
},
rules: {
// other rules
"react-refresh/only-export-components": [
"warn",
{ extraHOCs: ["someLibHOC"] },
],
},
});

Why

This version follows a revamp of the internal logic to better make the difference between random call expressions like export const Enum = Object.keys(Record) and actual React HOC calls like export const MemoComponent = memo(Component). (fixes #93)

The rule now handles ternaries and patterns like export default customHOC(props)(Component) which makes it able to correctly support files like this one given this config:

... (truncated)

Commits
  • daa2efb Revamp logic to catch more cases [publish] (#97)
  • 95c02ba Revert "Catch non React exports defined as call expressions"(fixes #95) [publ...
  • 8ea312d Update the name of next config (vite -> next) (#96)
  • 4fc6d3d Catch non React exports defined as call expressions [publish]
  • 0397bde Allow non-leading underscores (#94)
  • 6368815 Add generate{ImageMetadata,Sitemaps,StaticParams} to Next config [publish] (#92)
  • 1d436ff More allowExportNames in Next config (fixes #90) [publish]
  • 3395dda v0.4.22 [publish]
  • 2dadd5e Bump deps
  • 91f7ebc Add viewport to Next.js config allowExportNames (#89)
  • Additional commits viewable in compare view
Maintainer changes

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


Updates lint-staged from 16.1.5 to 16.2.7

Release notes

Sourced from lint-staged's releases.

v16.2.7

Patch Changes

  • #1711 ef74c8d Thanks @​iiroj! - Do not display a "failed to spawn" error message when a task fails normally. This message is reserved for when the task didn't run because spawning it failed.

v16.2.6

Patch Changes

  • #1693 33d4502 Thanks @​Adrian-Baran-GY! - Fix problems with --continue-on-error option, where tasks might have still been killed (SIGINT) when one of them failed.

v16.2.5

Patch Changes

  • #1687 9e02d9d Thanks @​iiroj! - Fix unhandled promise rejection when spawning tasks (instead of the tasks themselves failing). Previously when a task failed to spawn, lint-staged also failed and the backup stash might not have been automatically restored.

v16.2.4

Patch Changes

v16.2.3

Patch Changes

  • #1669 27cd541 Thanks @​iiroj! - When using --fail-on-changes, automatically hidden (partially) unstaged changes are no longer counted to make lint-staged fail.

v16.2.2

Patch Changes

  • #1667 699f95d Thanks @​iiroj! - The backup stash will not be dropped when using --fail-on-changes and there are errors. When reverting to original state is disabled (via --no-revert or --fail-on-changes), hidden (partially) unstaged changes are still restored automatically so that it's easier to resolve the situation manually.

    Additionally, the example for using the backup stash manually now uses the correct backup hash, if available:

    % npx lint-staged --fail-on-changes
    ✔ Backed up original state in git stash (c18d55a3)
    ✔ Running tasks for staged files...
    ✖ Tasks modified files and --fail-on-changes was used!
    ↓ Cleaning up temporary files...
    ✖ lint-staged failed because --fail-on-changes was used.
    Any lost modifications can be restored from a git stash:
    > git stash list --format="%h %s"
    c18d55a3 On main: lint-staged automatic backup
    > git apply --index c18d55a3

... (truncated)

Changelog

Sourced from lint-staged's changelog.

16.2.7

Patch Changes

  • #1711 ef74c8d Thanks @​iiroj! - Do not display a "failed to spawn" error message when a task fails normally. This message is reserved for when the task didn't run because spawning it failed.

16.2.6

Patch Changes

  • #1693 33d4502 Thanks @​Adrian-Baran-GY! - Fix problems with --continue-on-error option, where tasks might have still been killed (SIGINT) when one of them failed.

16.2.5

Patch Changes

  • #1687 9e02d9d Thanks @​iiroj! - Fix unhandled promise rejection when spawning tasks (instead of the tasks themselves failing). Previously when a task failed to spawn, lint-staged also failed and the backup stash might not have been automatically restored.

16.2.4

Patch Changes

16.2.3

Patch Changes

  • #1669 27cd541 Thanks @​iiroj! - When using --fail-on-changes, automatically hidden (partially) unstaged changes are no longer counted to make lint-staged fail.

16.2.2

Patch Changes

  • #1667 699f95d Thanks @​iiroj! - The backup stash will not be dropped when using --fail-on-changes and there are errors. When reverting to original state is disabled (via --no-revert or --fail-on-changes), hidden (partially) unstaged changes are still restored automatically so that it's easier to resolve the situation manually.

    Additionally, the example for using the backup stash manually now uses the correct backup hash, if available:

    % npx lint-staged --fail-on-changes
    ✔ Backed up original state in git stash (c18d55a3)
    ✔ Running tasks for staged files...
    ✖ Tasks modified files and --fail-on-changes was used!
    ↓ Cleaning up temporary files...
    ✖ lint-staged failed because --fail-on-changes was used.
    Any lost modifications can be restored from a git stash:

... (truncated)

Commits
  • 0c1b000 chore(changeset): release
  • 595b202 build(deps): update dependencies
  • ef74c8d fix: do display "failed to spawn" message when task fails normally
  • 5cf2a1e style: do not autofix when running lint-staged
  • ba40012 chore: drop npx from commit-msg hook
  • d67de9a chore: fix pre-push hook usage with changeset
  • 8017d1d build(deps): update dependencies
  • 922d7f4 ci: remove dependabot integration, it's not useful
  • 6aeeef1 docs: add PR template
  • a5728b5 docs: add AGENTS.md
  • Additional commits viewable in compare view
Maintainer changes

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


Updates semver from 7.7.2 to 7.7.4

Release notes

Sourced from semver's releases.

v7.7.4

7.7.4 (2026-01-16)

Bug Fixes

Documentation

Dependencies

Chores

v7.7.3

7.7.3 (2025-10-06)

Bug Fixes

Chores

Changelog

Sourced from semver's changelog.

7.7.4 (2026-01-16)

Bug Fixes

Documentation

Dependencies

Chores

7.7.3 (2025-10-06)

Bug Fixes

Chores

Commits
  • 5993c2e chore: release 7.7.4 (#839)
  • 120968b deps: @​npmcli/template-oss@​4.29.0 (#840)
  • a29faa5 fix(cli): pass options to semver.valid() for loose version validation (#835)
  • 1d28d5e docs: fix typos and update -n CLI option documentation (#836)
  • 5816d4c chore: bump @​npmcli/template-oss from 4.28.0 to 4.28.1 (#829)
  • ab9e28a chore: bump @​npmcli/template-oss from 4.27.1 to 4.28.0 (#827)
  • 44d7130 chore: bump @​npmcli/eslint-config from 5.1.0 to 6.0.0 (#824)
  • 7073576 chore: reorder parameters in invalid-versions.js test (#820)
  • 16a35f5 chore: bump @​npmcli/template-oss from 4.26.0 to 4.27.1 (#823)
  • 3a3459d chore: bump @​npmcli/template-oss from 4.25.1 to 4.26.0 (#818)
  • Additional commits viewable in compare view
Maintainer changes

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


Updates @types/semver from 7.7.0 to 7.7.1

Commits

Updates tsx from 4.20.5 to 4.21.0

Release notes

Sourced from tsx's releases.

v4.21.0

4.21.0 (2025-11-30)

Features


This release is also available on:

v4.20.6

4.20.6 (2025-09-26)

Bug Fixes

  • properly hide relaySignal from process.listeners() (#741) (710a424)

This release is also available on:

Commits

Updates turbo from 2.5.6 to 2.8.7

Release notes

Sourced from turbo's releases.

Turborepo v2.8.7

What's Changed

Changelog

Full Changelog: vercel/turborepo@v2.8.6...v2.8.7

Turborepo v2.8.7-canary.3

What's Changed

Changelog

Full Changelog: vercel/turborepo@v2.8.7-canary.2...v2.8.7-canary.3

Turborepo v2.8.7-canary.2

Full Changelog: vercel/turborepo@v2.8.2-canary.6...v2.8.7-canary.2

Turborepo v2.8.7-canary.1

What's Changed

Changelog

Full Changelog: vercel/turborepo@v2.8.6...v2.8.7-canary.1

Turborepo v2.8.6

What's Changed

Changelog

... (truncated)

Commits
  • e497e3c publish 2.8.7 to registry
  • 21152cf fix: Normalize bare LF to CRLF in TUI output to prevent garbled logs (#11804)
  • 1c2b0e2 release(turborepo): 2.8.7-canary.3 (#11803)
  • 1bb3575 ci: Make check-examples conditional and cacheable via Turborepo (#11801)
  • 63bc6f8 feat: Add dashboard with run tracking and live logs for agent sandboxes (#11802)
  • 5d1f9cf fix: Handle subpath package imports in turbo boundaries (#11798)
  • f09d944 chore: Add env vars (#11800)
  • 45be7be feat: Add internal agents app for repo automation (#11799)
  • 01733b7 release(turborepo): 2.8.7-canary.2 (#11796)
  • 93a1a7d perf: Replace git fetch --tags with git ls-remote in release pipeline (#1...
  • Additional commits viewable in compare view
Maintainer changes

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


Updates typescript from 5.9.2 to 5.9.3

Release notes

Sourced from typescript's releases.

TypeScript 5.9.3

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement

Downloads are available on:

Commits
  • c63de15 Bump version to 5.9.3 and LKG
  • 8428ca4 🤖 Pick PR #62438 (Fix incorrectly ignored dts file fr...) into release-5.9 (#...
  • a131cac 🤖 Pick PR #62351 (Add missing Float16Array constructo...) into release-5.9 (#...
  • 0424333 🤖 Pick PR #62423 (Revert PR 61928) into release-5.9 (#62425)
  • bdb641a 🤖 Pick PR #62311 (Fix parenthesizer rules for manuall...) into release-5.9 (#...
  • 0d9b9b9 🤖 Pick PR #61978 (Restructure CI to prepare for requi...) into release-5.9 (#...
  • 2dce0c5 Intentionally regress one buggy declaration output to an older version (#62163)
  • See full diff in compare view

Updates @gorhom/bottom-sheet from 5.2.4 to 5.2.8

Release notes

Sourced from @​gorhom/bottom-sheet's releases.

Release 5.2.8

5.2.8 (2025-12-04)

🐛 Bug Fixes

🧹 Maintenance Chores

Release 5.2.7

5.2.7 (2025-11-26)

🐛 Bug Fixes

🧹 Maintenance Chores

  • updated ts tags for getBoundingClientRect (6b22037)

Release 5.2.6

5.2.6 (2025-09-05)

🐛 Bug Fixes

  • #2452: prevented the bottom sheet from snapping to -1 when resizing the detent while keyboard is open(#2327)(by @​pakerwreah) (c68edac), closes #2452
  • prevent the bottom sheet from closing when over dragging while keyboard is open (cce1f7e)

Release 5.2.5

5.2.5 (2025-09-04)

🐛 Bug Fixes

  • #2449: adjust next index to current index when animating to a temporary position (20de151), closes #2449
  • #2449: adjust next index to the highest detent index when animating by keyboard (f8cd4fe), closes #2449
  • conditionally apply web-only cursor style to avoid TypeScript error (#2420)(by @​kirstilynn) (e5c077b)

🧹 Maintenance Chores

  • updated the example deps (c9e0473)
Changelog

Sourced from @​gorhom/bottom-sheet's changelog.

5.2.8 (2025-12-04)

🐛 Bug Fixes

🧹 Maintenance Chores

5.2.7 (2025-11-26)

🐛 Bug Fixes

🧹 Maintenance Chores

  • updated ts tags for getBoundingClientRect (6b22037)

5.2.6 (2025-09-05)

🐛 Bug Fixes

  • #2452: prevented the bottom sheet from snapping to -1 when resizing the detent while keyboard is open(#2327)(by @​pakerwreah) (c68edac), closes #2452
  • prevent the bottom sheet from closing when over dragging while keyboard is open (cce1f7e)

5.2.5 (2025-09-04)

🐛 Bug Fixes

  • #2449: adjust next index to current index when animating to a temporary position (20de151), closes #2449
  • #2449: adjust next index to the highest detent index when animating by keyboard (f8cd4fe), closes #2449
  • conditionally apply web-only cursor style to avoid TypeScript error (#2420)(by @​kirstilynn) (e5c077b)

🧹 Maintenance Chores

  • updated the example deps (c9e0473)
Commits

Updates @react-navigation/bottom-tabs from 7.4.6 to 7.13.0

Release notes

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

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

7.13.0 (2026-02-10)

Features

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

7.12.0 (2026-02-02)

Features

  • add support for xcasset for icons in native tabs (5904082) - by @

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

7.11.0 (2026-02-02)

Features

  • add support for disabling overrideScrollViewContentInsetAdjustmentBehavior (ccd9544) - by @

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

7.10.0 (2026-01-16)

Features

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

7.9.0 (2025-12-17)

Bug Fixes

Features

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

7.8.7 (2025-11-26)

... (truncated)

Changelog

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

7.13.0 (2026-02-10)

Features

7.12.0 (2026-02-02)

Features

  • add support for xcasset for icons in native tabs (5904082) - by @

7.11.0 (2026-02-02)

Features

…4 updates

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

| Package | From | To |
| --- | --- | --- |
| [eslint-plugin-react-refresh](https://github.com/ArnaudBarre/eslint-plugin-react-refresh) | `0.4.20` | `0.5.0` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `16.1.5` | `16.2.7` |
| [semver](https://github.com/npm/node-semver) | `7.7.2` | `7.7.4` |
| [@types/semver](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/semver) | `7.7.0` | `7.7.1` |
| [tsx](https://github.com/privatenumber/tsx) | `4.20.5` | `4.21.0` |
| [turbo](https://github.com/vercel/turborepo) | `2.5.6` | `2.8.7` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.2` | `5.9.3` |
| [@gorhom/bottom-sheet](https://github.com/gorhom/react-native-bottom-sheet) | `5.2.4` | `5.2.8` |
| [@react-navigation/bottom-tabs](https://github.com/react-navigation/react-navigation/tree/HEAD/packages/bottom-tabs) | `7.4.6` | `7.13.0` |
| [@react-navigation/drawer](https://github.com/react-navigation/react-navigation/tree/HEAD/packages/drawer) | `7.5.7` | `7.8.1` |
| [@react-navigation/elements](https://github.com/react-navigation/react-navigation/tree/HEAD/packages/elements) | `2.6.3` | `2.9.5` |
| [@react-navigation/native](https://github.com/react-navigation/react-navigation/tree/HEAD/packages/native) | `7.1.17` | `7.1.28` |
| [react-native-gesture-handler](https://github.com/software-mansion/react-native-gesture-handler) | `2.28.0` | `2.30.0` |
| [react-native-image-colors](https://github.com/osamaqarem/react-native-image-colors) | `2.5.0` | `2.5.1` |
| [react-native-paper](https://github.com/callstack/react-native-paper) | `5.14.5` | `5.15.0` |
| [react-native-permissions](https://github.com/zoontek/react-native-permissions) | `5.4.2` | `5.4.4` |
| [react-native-safe-area-context](https://github.com/AppAndFlow/react-native-safe-area-context) | `5.6.1` | `5.6.2` |
| [react-native-screens](https://github.com/software-mansion/react-native-screens) | `4.15.4` | `4.23.0` |
| [react-native-tab-view](https://github.com/react-navigation/react-navigation/tree/HEAD/packages/react-native-tab-view) | `4.1.3` | `4.2.2` |
| [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.28.3` | `7.29.0` |
| [drizzle-orm](https://github.com/drizzle-team/drizzle-orm) | `0.44.5` | `0.45.1` |
| [drizzle-kit](https://github.com/drizzle-team/drizzle-orm) | `0.31.4` | `0.31.9` |
| [i18next](https://github.com/i18next/i18next) | `25.4.2` | `25.8.6` |
| [zustand](https://github.com/pmndrs/zustand) | `5.0.8` | `5.0.11` |



Updates `eslint-plugin-react-refresh` from 0.4.20 to 0.5.0
- [Release notes](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/releases)
- [Changelog](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/blob/main/CHANGELOG.md)
- [Commits](ArnaudBarre/eslint-plugin-react-refresh@v0.4.20...v0.5.0)

Updates `lint-staged` from 16.1.5 to 16.2.7
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v16.1.5...v16.2.7)

Updates `semver` from 7.7.2 to 7.7.4
- [Release notes](https://github.com/npm/node-semver/releases)
- [Changelog](https://github.com/npm/node-semver/blob/main/CHANGELOG.md)
- [Commits](npm/node-semver@v7.7.2...v7.7.4)

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

Updates `tsx` from 4.20.5 to 4.21.0
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.20.5...v4.21.0)

Updates `turbo` from 2.5.6 to 2.8.7
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/RELEASE.md)
- [Commits](vercel/turborepo@v2.5.6...v2.8.7)

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

Updates `@gorhom/bottom-sheet` from 5.2.4 to 5.2.8
- [Release notes](https://github.com/gorhom/react-native-bottom-sheet/releases)
- [Changelog](https://github.com/gorhom/react-native-bottom-sheet/blob/master/CHANGELOG.md)
- [Commits](gorhom/react-native-bottom-sheet@v5.2.4...v5.2.8)

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

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

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

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

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

Updates `react-native-image-colors` from 2.5.0 to 2.5.1
- [Release notes](https://github.com/osamaqarem/react-native-image-colors/releases)
- [Commits](osamaqarem/react-native-image-colors@v2.5.0...v2.5.1)

Updates `react-native-paper` from 5.14.5 to 5.15.0
- [Release notes](https://github.com/callstack/react-native-paper/releases)
- [Commits](callstack/react-native-paper@v5.14.5...v5.15.0)

Updates `react-native-permissions` from 5.4.2 to 5.4.4
- [Release notes](https://github.com/zoontek/react-native-permissions/releases)
- [Commits](zoontek/react-native-permissions@5.4.2...5.4.4)

Updates `react-native-safe-area-context` from 5.6.1 to 5.6.2
- [Release notes](https://github.com/AppAndFlow/react-native-safe-area-context/releases)
- [Commits](AppAndFlow/react-native-safe-area-context@v5.6.1...v5.6.2)

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

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

Updates `@babel/core` from 7.28.3 to 7.29.0
- [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.0/packages/babel-core)

Updates `drizzle-orm` from 0.44.5 to 0.45.1
- [Release notes](https://github.com/drizzle-team/drizzle-orm/releases)
- [Commits](drizzle-team/drizzle-orm@0.44.5...0.45.1)

Updates `drizzle-kit` from 0.31.4 to 0.31.9
- [Release notes](https://github.com/drizzle-team/drizzle-orm/releases)
- [Commits](https://github.com/drizzle-team/drizzle-orm/compare/drizzle-kit@0.31.4...drizzle-kit@0.31.9)

Updates `i18next` from 25.4.2 to 25.8.6
- [Release notes](https://github.com/i18next/i18next/releases)
- [Changelog](https://github.com/i18next/i18next/blob/master/CHANGELOG.md)
- [Commits](i18next/i18next@v25.4.2...v25.8.6)

Updates `zustand` from 5.0.8 to 5.0.11
- [Release notes](https://github.com/pmndrs/zustand/releases)
- [Commits](pmndrs/zustand@v5.0.8...v5.0.11)

---
updated-dependencies:
- dependency-name: eslint-plugin-react-refresh
  dependency-version: 0.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: lint-staged
  dependency-version: 16.2.7
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: semver
  dependency-version: 7.7.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@types/semver"
  dependency-version: 7.7.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: tsx
  dependency-version: 4.21.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: turbo
  dependency-version: 2.8.7
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: typescript
  dependency-version: 5.9.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@gorhom/bottom-sheet"
  dependency-version: 5.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@react-navigation/bottom-tabs"
  dependency-version: 7.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@react-navigation/drawer"
  dependency-version: 7.8.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@react-navigation/elements"
  dependency-version: 2.9.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@react-navigation/native"
  dependency-version: 7.1.28
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: react-native-gesture-handler
  dependency-version: 2.30.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: react-native-image-colors
  dependency-version: 2.5.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: react-native-paper
  dependency-version: 5.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: react-native-permissions
  dependency-version: 5.4.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: react-native-safe-area-context
  dependency-version: 5.6.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: react-native-screens
  dependency-version: 4.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: react-native-tab-view
  dependency-version: 4.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@babel/core"
  dependency-version: 7.29.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: drizzle-orm
  dependency-version: 0.45.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: drizzle-kit
  dependency-version: 0.31.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: i18next
  dependency-version: 25.8.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: zustand
  dependency-version: 5.0.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-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 Feb 13, 2026
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