Skip to content

chore(deps): bump the production-minor-patch group across 1 directory with 27 updates - #261

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/production-minor-patch-b079c996f4
Closed

chore(deps): bump the production-minor-patch group across 1 directory with 27 updates#261
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/production-minor-patch-b079c996f4

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 23, 2026

Copy link
Copy Markdown
Contributor

Bumps the production-minor-patch group with 26 updates in the / directory:

Package From To
react-dom 19.2.0 19.2.7
@rolldown/binding-linux-x64-gnu 1.1.0 1.1.2
@rolldown/binding-win32-x64-msvc 1.1.0 1.1.2
@lodev09/react-native-true-sheet 3.10.1 3.11.1
@react-navigation/native 7.2.5 7.3.3
@siteed/audio-studio 3.2.0 3.2.1
@supabase/supabase-js 2.107.0 2.108.2
@tanstack/react-query 5.101.0 5.101.1
expo-iap 4.3.1 4.3.2
lucide-react-native 1.17.0 1.21.0
nativewind 4.2.4 4.2.6
react-hook-form 7.77.0 7.80.0
react-native 0.83.4 0.86.0
react-native-google-mobile-ads 16.3.3 16.3.4
react-native-reanimated 4.2.1 4.5.0
react-native-safe-area-context 5.6.2 5.8.0
react-native-screens 4.23.0 4.25.2
react-native-svg 15.15.3 15.15.5
react-native-worklets 0.7.2 0.10.0
regenerator-runtime 0.13.11 0.14.1
@sentry/nextjs 10.59.0 10.60.0
dompurify 3.4.8 3.4.11
lucide-react 1.17.0 1.21.0
marked 18.0.4 18.0.5
motion 12.40.0 12.41.0
next 16.2.7 16.2.9

Updates react-dom from 19.2.0 to 19.2.7

Release notes

Sourced from react-dom's releases.

19.2.7 (June 1st, 2026)

React Server Components

19.2.6 (May 6th, 2026)

React Server Components

19.2.5 (April 8th, 2026)

React Server Components

19.2.4 (January 26th, 2026)

React Server Components

19.2.3 (December 11th, 2025)

React Server Components

19.2.2 (December 11th, 2025)

React Server Components

19.2.1 (December 3rd, 2025)

React Server Components

Changelog

Sourced from react-dom's changelog.

19.2.1 (Dec 3, 2025)

React Server Components

Commits
Maintainer changes

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


Updates @rolldown/binding-linux-x64-gnu from 1.1.0 to 1.1.2

Release notes

Sourced from @​rolldown/binding-linux-x64-gnu's releases.

v1.1.2

[1.1.2] - 2026-06-18

📝 Notable tsconfig behavior changes

These ship via the oxc_resolver 11.21.3 bump (#9841) and affect resolve.tsconfigPaths (Vite 8 resolves through oxc-resolver):

  • Honor explicit non-TS extensions in includeoxc-project/oxc-resolver#1213compilerOptions.paths now resolve for importers whose extension is explicitly listed in a tsconfig's include (e.g. src/**/*.vue, src/**/*.svelte). Previously oxc-resolver filtered importers by extension before evaluating the include globs, so a .vue/.svelte file listed in include never matched its project and its paths were skipped. This unblocks the default create-vite Vue + TS layout (a solution-style root plus a referenced tsconfig.app.json that declares paths and include: ["src/**/*.ts", "src/**/*.vue"]). Matches vue-tsc and svelte-check, which register these extensions via TypeScript's extraFileExtensions.
  • No fallback to the outermost tsconfig in auto-discoveryoxc-project/oxc-resolver#1220tsconfig.json to a file that no project actually owns (via files / include / project references). Previously such a file inherited the outermost ancestor's paths / baseUrl, leaking aliases into files that project does not own. oxc-resolver now returns no config in that case, matching tsserver / typescript-go, which route such files to an inferred project with no aliases.

🚀 Features

🐛 Bug Fixes

🚜 Refactor

... (truncated)

Changelog

Sourced from @​rolldown/binding-linux-x64-gnu's changelog.

[1.1.2] - 2026-06-18

🚀 Features

🐛 Bug Fixes

🚜 Refactor

📚 Documentation

  • tsconfig: align auto-discovery docs with oxc-resolver behavior (#9845) by @​shulaoda

... (truncated)

Commits
  • e0d0b1b release: v1.1.2 (#9863)
  • fd225a8 docs(tsconfig): align auto-discovery docs with oxc-resolver behavior (#9845)
  • 455fb60 chore(deps): update oxc to 0.137.0 (#9856)
  • 8606737 feat: add option names for invalid return type errors (#9821)
  • 01e4eee feat(transform): infer decorator strictNullChecks from tsconfig (#9590)
  • 6626e20 docs: relocate meta/design to internal-docs, split design from implementation...
  • bea835c refactor(options): merge manualCodeSplitting into codeSplitting object form (...
  • f480f9d feat: expose React Compiler options for rolldown and Vite users (#9801)
  • 697a7c4 fix: avoid O(N^2) rendering of high-volume diagnostics (#9748) (#9749)
  • 1af4293 feat(tracing): gate chrome-json trace layer behind chrome-tracing feature (...
  • Additional commits viewable in compare view

Updates @rolldown/binding-win32-x64-msvc from 1.1.0 to 1.1.2

Release notes

Sourced from @​rolldown/binding-win32-x64-msvc's releases.

v1.1.2

[1.1.2] - 2026-06-18

📝 Notable tsconfig behavior changes

These ship via the oxc_resolver 11.21.3 bump (#9841) and affect resolve.tsconfigPaths (Vite 8 resolves through oxc-resolver):

  • Honor explicit non-TS extensions in includeoxc-project/oxc-resolver#1213compilerOptions.paths now resolve for importers whose extension is explicitly listed in a tsconfig's include (e.g. src/**/*.vue, src/**/*.svelte). Previously oxc-resolver filtered importers by extension before evaluating the include globs, so a .vue/.svelte file listed in include never matched its project and its paths were skipped. This unblocks the default create-vite Vue + TS layout (a solution-style root plus a referenced tsconfig.app.json that declares paths and include: ["src/**/*.ts", "src/**/*.vue"]). Matches vue-tsc and svelte-check, which register these extensions via TypeScript's extraFileExtensions.
  • No fallback to the outermost tsconfig in auto-discoveryoxc-project/oxc-resolver#1220tsconfig.json to a file that no project actually owns (via files / include / project references). Previously such a file inherited the outermost ancestor's paths / baseUrl, leaking aliases into files that project does not own. oxc-resolver now returns no config in that case, matching tsserver / typescript-go, which route such files to an inferred project with no aliases.

🚀 Features

🐛 Bug Fixes

🚜 Refactor

... (truncated)

Changelog

Sourced from @​rolldown/binding-win32-x64-msvc's changelog.

[1.1.2] - 2026-06-18

🚀 Features

🐛 Bug Fixes

🚜 Refactor

📚 Documentation

  • tsconfig: align auto-discovery docs with oxc-resolver behavior (#9845) by @​shulaoda

... (truncated)

Commits
  • e0d0b1b release: v1.1.2 (#9863)
  • fd225a8 docs(tsconfig): align auto-discovery docs with oxc-resolver behavior (#9845)
  • 455fb60 chore(deps): update oxc to 0.137.0 (#9856)
  • 8606737 feat: add option names for invalid return type errors (#9821)
  • 01e4eee feat(transform): infer decorator strictNullChecks from tsconfig (#9590)
  • 6626e20 docs: relocate meta/design to internal-docs, split design from implementation...
  • bea835c refactor(options): merge manualCodeSplitting into codeSplitting object form (...
  • f480f9d feat: expose React Compiler options for rolldown and Vite users (#9801)
  • 697a7c4 fix: avoid O(N^2) rendering of high-volume diagnostics (#9748) (#9749)
  • 1af4293 feat(tracing): gate chrome-json trace layer behind chrome-tracing feature (...
  • Additional commits viewable in compare view

Updates @lodev09/react-native-true-sheet from 3.10.1 to 3.11.1

Release notes

Sourced from @​lodev09/react-native-true-sheet's releases.

Release 3.11.1

🎉 New features

  • Added footerOptions.keyboardOffset to adjust how far the footer rises when the keyboard opens. Pass -insets.bottom to tuck its safe-area padding behind the keyboard instead of leaving a gap. (#716 by @​bigcupcoffee)

Full Changelog: lodev09/react-native-true-sheet@v3.11.0...v3.11.1

Release 3.11.0

🎉 New features

🐛 Bug fixes

  • iOS: Improved accessibility support so sheet content, footer controls, and controllers presented over the sheet (alert, action sheet, image picker) are reliably reachable by XCTest and assistive technologies. (#699, #700 by @​erickreutz, #702, #703 by @​lodev09)
  • iOS: Fixed Mac Catalyst build issue. (#685 by @​theeket)
  • iOS: Fixed footer rendering at the bottom of the content view instead of the bottom of the sheet when the footer view is recycled across present cycles. (#688 by @​lucaswickstrom)
  • Android: Fixed resize() being interrupted when sheet content size changes during the animation, causing the sheet to revert to the previous detent. (#693 by @​lodev09)
  • Android: Fixed horizontal child gestures inside the footer or sheet body being cancelled by BottomSheetBehavior when a touch drifted vertically past touchSlop. Footer touches are now latched on ACTION_DOWN and routed for the full stream, and horizontal-dominant gestures bypass sheet drag — matching iOS. (#698 by @​lodev09)
  • Android: Fixed sheet drag stealing touches that start over a TextInput, and vertical child gestures (e.g. a react-native-gesture-handler pan) being cancelled by sheet drag before they could activate. The sheet now yields the touch stream once a child claims a native gesture — matching iOS. (#712 by @​bigcupcoffee and @​lodev09)
  • Fixed the Sheet Navigator breaking under Expo Router SDK 56 by importing from @react-navigation/core (auto-rewritten to expo-router/react-navigation on SDK 56, resolves normally in bare projects). The optional peer dependency changed from @react-navigation/native to @react-navigation/core. (#695 by @​lodev09)

⚠️ Breaking

  • Renamed pageSizing: boolean to presentation: 'page' | 'form' (default 'page'). presentation='form' is absolute and ignores maxContentWidth. Migration: pageSizing={true}presentation='page' (default); pageSizing={false}presentation='form'. (#680 by @​lodev09)
  • Web: Removed stackBehavior prop; stacking is now handled automatically. (#639)
  • Web: Peer dependency changed from @gorhom/bottom-sheet to @radix-ui/react-dialog. (#639)

💡 Others

  • Bump react-native-monorepo-config to fix build on windows. (#672 by @​harveylx)
  • Upgrade examples to Expo SDK 56 / React Native 0.85.3, TypeScript 6, and react-native-builder-bob 0.41. (#694 by @​lodev09)
  • Docs: Documented that Expo SDK 56+ ships react-native-screens precompiled on EAS, silently dropping the navigation patch; added a Troubleshooting fix (EXPO_USE_PRECOMPILED_MODULES=0). (#715 by @​lodev09)

New Contributors

Full Changelog: lodev09/react-native-true-sheet@v3.10.1...v3.11.0

Changelog

Sourced from @​lodev09/react-native-true-sheet's changelog.

3.11.1

🎉 New features

  • Added footerOptions.keyboardOffset to adjust how far the footer rises when the keyboard opens. Pass -insets.bottom to tuck its safe-area padding behind the keyboard instead of leaving a gap. (#716 by @​bigcupcoffee)

3.11.0

🎉 New features

🐛 Bug fixes

  • iOS: Improved accessibility support so sheet content, footer controls, and controllers presented over the sheet (alert, action sheet, image picker) are reliably reachable by XCTest and assistive technologies. (#699, #700 by @​erickreutz, #702, #703 by @​lodev09)
  • iOS: Fixed Mac Catalyst build issue. (#685 by @​theeket)
  • iOS: Fixed footer rendering at the bottom of the content view instead of the bottom of the sheet when the footer view is recycled across present cycles. (#688 by @​lucaswickstrom)
  • Android: Fixed resize() being interrupted when sheet content size changes during the animation, causing the sheet to revert to the previous detent. (#693 by @​lodev09)
  • Android: Fixed horizontal child gestures inside the footer or sheet body being cancelled by BottomSheetBehavior when a touch drifted vertically past touchSlop. Footer touches are now latched on ACTION_DOWN and routed for the full stream, and horizontal-dominant gestures bypass sheet drag — matching iOS. (#698 by @​lodev09)
  • Android: Fixed sheet drag stealing touches that start over a TextInput, and vertical child gestures (e.g. a react-native-gesture-handler pan) being cancelled by sheet drag before they could activate. The sheet now yields the touch stream once a child claims a native gesture — matching iOS. (#712 by @​bigcupcoffee and @​lodev09)
  • Fixed the Sheet Navigator breaking under Expo Router SDK 56 by importing from @react-navigation/core (auto-rewritten to expo-router/react-navigation on SDK 56, resolves normally in bare...

    Description has been truncated

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jun 23, 2026
@vercel

vercel Bot commented Jun 23, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

1 Skipped Deployment
Project Deployment Actions Updated (UTC)
orbit-ui-mobile-web Ignored Ignored Jun 23, 2026 7:37pm

Request Review

… with 27 updates

Bumps the production-minor-patch group with 26 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.0` | `19.2.7` |
| [@rolldown/binding-linux-x64-gnu](https://github.com/rolldown/rolldown/tree/HEAD/packages/rolldown) | `1.1.0` | `1.1.2` |
| [@rolldown/binding-win32-x64-msvc](https://github.com/rolldown/rolldown/tree/HEAD/packages/rolldown) | `1.1.0` | `1.1.2` |
| [@lodev09/react-native-true-sheet](https://github.com/lodev09/react-native-true-sheet) | `3.10.1` | `3.11.1` |
| [@react-navigation/native](https://github.com/react-navigation/react-navigation/tree/HEAD/packages/native) | `7.2.5` | `7.3.3` |
| [@siteed/audio-studio](https://github.com/deeeed/audiolab/tree/HEAD/packages/audio-studio) | `3.2.0` | `3.2.1` |
| [@supabase/supabase-js](https://github.com/supabase/supabase-js/tree/HEAD/packages/core/supabase-js) | `2.107.0` | `2.108.2` |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.101.0` | `5.101.1` |
| [expo-iap](https://github.com/hyodotdev/openiap/tree/HEAD/libraries/expo-iap) | `4.3.1` | `4.3.2` |
| [lucide-react-native](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react-native) | `1.17.0` | `1.21.0` |
| [nativewind](https://github.com/nativewind/nativewind) | `4.2.4` | `4.2.6` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.77.0` | `7.80.0` |
| [react-native](https://github.com/facebook/react-native/tree/HEAD/packages/react-native) | `0.83.4` | `0.86.0` |
| [react-native-google-mobile-ads](https://github.com/invertase/react-native-google-mobile-ads) | `16.3.3` | `16.3.4` |
| [react-native-reanimated](https://github.com/software-mansion/react-native-reanimated/tree/HEAD/packages/react-native-reanimated) | `4.2.1` | `4.5.0` |
| [react-native-safe-area-context](https://github.com/AppAndFlow/react-native-safe-area-context) | `5.6.2` | `5.8.0` |
| [react-native-screens](https://github.com/software-mansion/react-native-screens) | `4.23.0` | `4.25.2` |
| [react-native-svg](https://github.com/software-mansion/react-native-svg) | `15.15.3` | `15.15.5` |
| [react-native-worklets](https://github.com/software-mansion/react-native-reanimated/tree/HEAD/packages/react-native-worklets) | `0.7.2` | `0.10.0` |
| [regenerator-runtime](https://github.com/facebook/regenerator) | `0.13.11` | `0.14.1` |
| [@sentry/nextjs](https://github.com/getsentry/sentry-javascript) | `10.59.0` | `10.60.0` |
| [dompurify](https://github.com/cure53/DOMPurify) | `3.4.8` | `3.4.11` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `1.17.0` | `1.21.0` |
| [marked](https://github.com/markedjs/marked) | `18.0.4` | `18.0.5` |
| [motion](https://github.com/motiondivision/motion) | `12.40.0` | `12.41.0` |
| [next](https://github.com/vercel/next.js) | `16.2.7` | `16.2.9` |



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

Updates `@rolldown/binding-linux-x64-gnu` from 1.1.0 to 1.1.2
- [Release notes](https://github.com/rolldown/rolldown/releases)
- [Changelog](https://github.com/rolldown/rolldown/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rolldown/rolldown/commits/v1.1.2/packages/rolldown)

Updates `@rolldown/binding-win32-x64-msvc` from 1.1.0 to 1.1.2
- [Release notes](https://github.com/rolldown/rolldown/releases)
- [Changelog](https://github.com/rolldown/rolldown/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rolldown/rolldown/commits/v1.1.2/packages/rolldown)

Updates `@lodev09/react-native-true-sheet` from 3.10.1 to 3.11.1
- [Release notes](https://github.com/lodev09/react-native-true-sheet/releases)
- [Changelog](https://github.com/lodev09/react-native-true-sheet/blob/main/CHANGELOG.md)
- [Commits](lodev09/react-native-true-sheet@v3.10.1...v3.11.1)

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

Updates `@siteed/audio-studio` from 3.2.0 to 3.2.1
- [Release notes](https://github.com/deeeed/audiolab/releases)
- [Changelog](https://github.com/deeeed/audiolab/blob/main/packages/audio-studio/CHANGELOG.md)
- [Commits](https://github.com/deeeed/audiolab/commits/@siteed/audio-studio@3.2.1/packages/audio-studio)

Updates `@supabase/supabase-js` from 2.107.0 to 2.108.2
- [Release notes](https://github.com/supabase/supabase-js/releases)
- [Changelog](https://github.com/supabase/supabase-js/blob/master/packages/core/supabase-js/CHANGELOG.md)
- [Commits](https://github.com/supabase/supabase-js/commits/v2.108.2/packages/core/supabase-js)

Updates `@tanstack/react-query` from 5.101.0 to 5.101.1
- [Release notes](https://github.com/TanStack/query/releases)
- [Changelog](https://github.com/TanStack/query/blob/main/packages/react-query/CHANGELOG.md)
- [Commits](https://github.com/TanStack/query/commits/@tanstack/react-query@5.101.1/packages/react-query)

Updates `expo-iap` from 4.3.1 to 4.3.2
- [Release notes](https://github.com/hyodotdev/openiap/releases)
- [Changelog](https://github.com/hyodotdev/openiap/blob/main/CHANGELOG.md)
- [Commits](https://github.com/hyodotdev/openiap/commits/expo-iap-4.3.2/libraries/expo-iap)

Updates `lucide-react-native` from 1.17.0 to 1.21.0
- [Release notes](https://github.com/lucide-icons/lucide/releases)
- [Commits](https://github.com/lucide-icons/lucide/commits/1.21.0/packages/lucide-react-native)

Updates `nativewind` from 4.2.4 to 4.2.6
- [Release notes](https://github.com/nativewind/nativewind/releases)
- [Changelog](https://github.com/nativewind/nativewind/blob/main/CHANGELOG.md)
- [Commits](https://github.com/nativewind/nativewind/compare/nativewind@4.2.4...nativewind@4.2.6)

Updates `react-hook-form` from 7.77.0 to 7.80.0
- [Release notes](https://github.com/react-hook-form/react-hook-form/releases)
- [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md)
- [Commits](react-hook-form/react-hook-form@v7.77.0...v7.80.0)

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

Updates `react-native-google-mobile-ads` from 16.3.3 to 16.3.4
- [Release notes](https://github.com/invertase/react-native-google-mobile-ads/releases)
- [Changelog](https://github.com/invertase/react-native-google-mobile-ads/blob/main/CHANGELOG.md)
- [Commits](invertase/react-native-google-mobile-ads@v16.3.3...v16.3.4)

Updates `react-native-reanimated` from 4.2.1 to 4.5.0
- [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-reanimated/RELEASE.md)
- [Commits](https://github.com/software-mansion/react-native-reanimated/commits/4.5.0/packages/react-native-reanimated)

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

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

Updates `react-native-svg` from 15.15.3 to 15.15.5
- [Release notes](https://github.com/software-mansion/react-native-svg/releases)
- [Commits](software-mansion/react-native-svg@v15.15.3...v15.15.5)

Updates `react-native-worklets` from 0.7.2 to 0.10.0
- [Release notes](https://github.com/software-mansion/react-native-reanimated/releases)
- [Commits](https://github.com/software-mansion/react-native-reanimated/commits/worklets-0.10.0/packages/react-native-worklets)

Updates `regenerator-runtime` from 0.13.11 to 0.14.1
- [Release notes](https://github.com/facebook/regenerator/releases)
- [Commits](https://github.com/facebook/regenerator/compare/regenerator-runtime@0.13.11...regenerator-runtime@0.14.1)

Updates `@sentry/nextjs` from 10.59.0 to 10.60.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@10.59.0...10.60.0)

Updates `dompurify` from 3.4.8 to 3.4.11
- [Release notes](https://github.com/cure53/DOMPurify/releases)
- [Commits](cure53/DOMPurify@3.4.8...3.4.11)

Updates `lucide-react` from 1.17.0 to 1.21.0
- [Release notes](https://github.com/lucide-icons/lucide/releases)
- [Commits](https://github.com/lucide-icons/lucide/commits/1.21.0/packages/lucide-react)

Updates `marked` from 18.0.4 to 18.0.5
- [Release notes](https://github.com/markedjs/marked/releases)
- [Commits](markedjs/marked@v18.0.4...v18.0.5)

Updates `motion` from 12.40.0 to 12.41.0
- [Changelog](https://github.com/motiondivision/motion/blob/main/CHANGELOG.md)
- [Commits](motiondivision/motion@v12.40.0...v12.41.0)

Updates `next` from 16.2.7 to 16.2.9
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v16.2.7...v16.2.9)

Updates `@tanstack/query-core` from 5.101.0 to 5.101.1
- [Release notes](https://github.com/TanStack/query/releases)
- [Changelog](https://github.com/TanStack/query/blob/main/packages/query-core/CHANGELOG.md)
- [Commits](https://github.com/TanStack/query/commits/@tanstack/query-core@5.101.1/packages/query-core)

---
updated-dependencies:
- dependency-name: "@lodev09/react-native-true-sheet"
  dependency-version: 3.11.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-minor-patch
- dependency-name: "@react-navigation/native"
  dependency-version: 7.3.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-minor-patch
- dependency-name: "@rolldown/binding-linux-x64-gnu"
  dependency-version: 1.1.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-minor-patch
- dependency-name: "@rolldown/binding-win32-x64-msvc"
  dependency-version: 1.1.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-minor-patch
- dependency-name: "@sentry/nextjs"
  dependency-version: 10.60.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-minor-patch
- dependency-name: "@siteed/audio-studio"
  dependency-version: 3.2.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-minor-patch
- dependency-name: "@supabase/supabase-js"
  dependency-version: 2.108.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-minor-patch
- dependency-name: "@tanstack/query-core"
  dependency-version: 5.101.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-minor-patch
- dependency-name: "@tanstack/react-query"
  dependency-version: 5.101.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-minor-patch
- dependency-name: dompurify
  dependency-version: 3.4.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-minor-patch
- dependency-name: expo-iap
  dependency-version: 4.3.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-minor-patch
- dependency-name: lucide-react
  dependency-version: 1.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-minor-patch
- dependency-name: lucide-react-native
  dependency-version: 1.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-minor-patch
- dependency-name: marked
  dependency-version: 18.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-minor-patch
- dependency-name: motion
  dependency-version: 12.41.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-minor-patch
- dependency-name: nativewind
  dependency-version: 4.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-minor-patch
- dependency-name: next
  dependency-version: 16.2.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-minor-patch
- dependency-name: react-dom
  dependency-version: 19.2.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-minor-patch
- dependency-name: react-hook-form
  dependency-version: 7.80.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-minor-patch
- dependency-name: react-native
  dependency-version: 0.86.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-minor-patch
- dependency-name: react-native-google-mobile-ads
  dependency-version: 16.3.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-minor-patch
- dependency-name: react-native-reanimated
  dependency-version: 4.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-minor-patch
- dependency-name: react-native-safe-area-context
  dependency-version: 5.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-minor-patch
- dependency-name: react-native-screens
  dependency-version: 4.25.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-minor-patch
- dependency-name: react-native-svg
  dependency-version: 15.15.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-minor-patch
- dependency-name: react-native-worklets
  dependency-version: 0.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-minor-patch
- dependency-name: regenerator-runtime
  dependency-version: 0.14.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title chore(deps): bump the production-minor-patch group with 27 updates chore(deps): bump the production-minor-patch group across 1 directory with 27 updates Jun 23, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/production-minor-patch-b079c996f4 branch from 42f759a to dd28a99 Compare June 23, 2026 19:37
@dependabot @github

dependabot Bot commented on behalf of github Jun 23, 2026

Copy link
Copy Markdown
Contributor Author

Looks like these dependencies are no longer being updated by Dependabot, so this is no longer needed.

@dependabot dependabot Bot closed this Jun 23, 2026
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/production-minor-patch-b079c996f4 branch June 23, 2026 19:46
@thomasluizon

Copy link
Copy Markdown
Owner

@dependabot rebase

@dependabot @github

dependabot Bot commented on behalf of github Jun 23, 2026

Copy link
Copy Markdown
Contributor Author

Looks like this PR is closed. If the branch still exists, you can re-open the PR and then use @dependabot rebase or @dependabot recreate. If the branch was deleted, Dependabot will create a new PR on the next scheduled run, or you can trigger an update from the Dependency graph page.

@thomasluizon

Copy link
Copy Markdown
Owner

Holding: Unit Tests FAIL on this group — one of the 27 minor/patch bumps regresses a test. Not merging a test-breaking change; needs bisecting which package broke it (or waiting for a follow-up bump).

thomasluizon added a commit that referenced this pull request Jun 23, 2026
…tep) (#280)

Dependabot bumped react-dom to 19.2.7 while leaving react at 19.2.0, which React rejects ('Incompatible React versions') and broke all web component tests (#261). react and react-dom must move together via a coordinated upgrade, so ignore both — same rationale as the Expo SDK packages.

Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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