Skip to content

build(deps): Bump the production-dependencies group across 1 directory with 7 updates - #230

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/production-dependencies-5680dbb9e6
Closed

build(deps): Bump the production-dependencies group across 1 directory with 7 updates#230
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/production-dependencies-5680dbb9e6

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the production-dependencies group with 7 updates in the / directory:

Package From To
@sentry/react-native 7.11.0 8.22.0
@supabase/supabase-js 2.110.6 2.112.2
@tanstack/query-async-storage-persister 5.101.2 5.101.4
@tanstack/react-query 5.101.2 5.101.4
@tanstack/react-query-persist-client 5.101.2 5.101.4
@vercel/og 0.11.1 1.0.1
node-addon-api 8.9.0 8.9.1

Updates @sentry/react-native from 7.11.0 to 8.22.0

Release notes

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

8.22.0

Features

  • Add enableMetricKit option to enable the iOS MetricKit integration (#6540)

    When enabled, the iOS SDK sends MXDiskWriteExceptionDiagnostic, MXCPUExceptionDiagnostic and MXHangDiagnostic reports to Sentry. Requires iOS 15 or later and is disabled by default. MetricKit hang diagnostics are reported by the operating system and are separate from the app hangs captured by enableAppHangTracking, so enabling both can result in the same hang being reported twice.

    Sentry.init({
      dsn: '___DSN___',
      enableMetricKit: true,
    });
  • Extend TurboModule instrumentation to the Old Architecture NativeModules bridge (#6504)

    Apps on the Old Architecture now get the same aggregate, span attribution and slow call breadcrumbs as TurboModules. An arch: 'new' | 'legacy' field distinguishes the two sources. Opt in with turboModuleContextIntegration({ enableLegacyNativeModules: true }).

Fixes

  • Attach debug_meta to JS error events on Hermes when the Debug ID stack match fails (#6545)

  • sentry-expo-upload-sourcemaps now reads plugin config when the plugin is registered as @sentry/react-native (#6543)

  • Make the RNSentry SPEC CHECKSUM in Podfile.lock machine-independent (#6534)

    The prebuilt Sentry.xcframework is now referenced through a $(PODS_ROOT)/sentry-xcframeworks/… symlink instead of the absolute per-user cache path, so Podfile.lock no longer churns between developers and CI. Expect a one-time RNSentry checksum change on the next pod install; the SENTRY_XCFRAMEWORK_CACHE_DIR=/tmp/… workaround is no longer needed.

Dependencies

8.21.0

Features

  • Add check and download timing spans to Expo Updates listener integration (#6430)

  • Attach a per-(module, method) TurboModule breakdown to active spans on spanEnd, plus native.turbo_module breadcrumbs for slow async calls (#6478)

    When a root span ends (idle nav spans from reactNavigationIntegration / expoRouterIntegration, or a user's own Sentry.startSpan(...)), the integration writes turbo_module.<name>.<method>.{call_count,duration_ms,error_count} attributes plus summary keys (turbo_module.total_call_count, turbo_module.total_duration_ms, turbo_module.top_module). Async calls above slowCallThresholdMs (default 500ms) additionally record a native.turbo_module breadcrumb. Both surfaces enabled by default; new knobs enableSpanAttribution, slowCallThresholdMs, maxTopModulesPerSpan on turboModuleContextIntegration.

  • Session Replay network details now capture fetch (Blob/ArrayBuffer) response bodies (#6473, #6533)

Fixes

  • Fix duplicate navigation transaction on Expo Router withAnchor navigations (#6439)

Changes

  • Expose instrumentStateGraph for manual LangGraph instrumentation (#6520)
    • instrumentLangGraph was renamed to instrumentStateGraph in the JavaScript SDK and is now deprecated. It stays exported for backwards compatibility and will be removed in the next major version.

... (truncated)

Changelog

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

8.22.0

Features

  • Add enableMetricKit option to enable the iOS MetricKit integration (#6540)

    When enabled, the iOS SDK sends MXDiskWriteExceptionDiagnostic, MXCPUExceptionDiagnostic and MXHangDiagnostic reports to Sentry. Requires iOS 15 or later and is disabled by default. MetricKit hang diagnostics are reported by the operating system and are separate from the app hangs captured by enableAppHangTracking, so enabling both can result in the same hang being reported twice.

    Sentry.init({
      dsn: '___DSN___',
      enableMetricKit: true,
    });
  • Extend TurboModule instrumentation to the Old Architecture NativeModules bridge (#6504)

    Apps on the Old Architecture now get the same aggregate, span attribution and slow call breadcrumbs as TurboModules. An arch: 'new' | 'legacy' field distinguishes the two sources. Opt in with turboModuleContextIntegration({ enableLegacyNativeModules: true }).

Fixes

  • Attach debug_meta to JS error events on Hermes when the Debug ID stack match fails (#6545)

  • sentry-expo-upload-sourcemaps now reads plugin config when the plugin is registered as @sentry/react-native (#6543)

  • Make the RNSentry SPEC CHECKSUM in Podfile.lock machine-independent (#6534)

    The prebuilt Sentry.xcframework is now referenced through a $(PODS_ROOT)/sentry-xcframeworks/… symlink instead of the absolute per-user cache path, so Podfile.lock no longer churns between developers and CI. Expect a one-time RNSentry checksum change on the next pod install; the SENTRY_XCFRAMEWORK_CACHE_DIR=/tmp/… workaround is no longer needed.

Dependencies

8.21.0

Features

  • Add check and download timing spans to Expo Updates listener integration (#6430)

  • Attach a per-(module, method) TurboModule breakdown to active spans on spanEnd, plus native.turbo_module breadcrumbs for slow async calls (#6478)

    When a root span ends (idle nav spans from reactNavigationIntegration / expoRouterIntegration, or a user's own Sentry.startSpan(...)), the integration writes turbo_module.<name>.<method>.{call_count,duration_ms,error_count} attributes plus summary keys (turbo_module.total_call_count, turbo_module.total_duration_ms, turbo_module.top_module). Async calls above slowCallThresholdMs (default 500ms) additionally record a native.turbo_module breadcrumb. Both surfaces enabled by default; new knobs enableSpanAttribution, slowCallThresholdMs, maxTopModulesPerSpan on turboModuleContextIntegration.

  • Session Replay network details now capture fetch (Blob/ArrayBuffer) response bodies (#6473, #6533)

Fixes

  • Fix duplicate navigation transaction on Expo Router withAnchor navigations (#6439)

... (truncated)

Commits
  • e8ef920 release: 8.22.0
  • 02aafd6 test(e2e): Add TurboModule sample coverage and e2e validation (#6549)
  • a9672d9 fix(core): Attach debug_meta to Hermes JS error events via Debug ID lookup (#...
  • 4bb93c7 ci: Replace secrets: inherit with explicit SENTRY_AUTH_TOKEN pass (#6562)
  • e5ae7f9 chore: update scripts/update-wizard.sh to v7.0.0 (#6558)
  • 1059cf6 chore(deps): bump the codeql-action group with 3 updates (#6553)
  • d67e46f chore(deps): bump getsentry/craft/.github/workflows/changelog-preview.yml (#6...
  • da07aed chore(deps): bump fast-uri from 3.1.4 to 3.1.5 (#6560)
  • 1ed1824 chore(deps): bump getsentry/craft from 2.26.14 to 2.28.0 (#6556)
  • 234671e chore(deps): bump ip-address from 10.2.0 to 10.4.0 (#6557)
  • Additional commits viewable in compare view

Updates @supabase/supabase-js from 2.110.6 to 2.112.2

Release notes

Sourced from @​supabase/supabase-js's releases.

v2.112.2

2.112.2 (2026-08-06)

🩹 Fixes

  • realtime: prevent duplicate on bindings (#2594)
  • realtime: clear stale join payload on sign-out (#2597)

❤️ Thank You

v2.112.2-canary.1

2.112.2-canary.1 (2026-08-06)

🩹 Fixes

  • realtime: clear stale join payload on sign-out (#2597)

❤️ Thank You

v2.112.2-canary.0

2.112.2-canary.0 (2026-08-06)

🩹 Fixes

  • realtime: prevent duplicate on bindings (#2594)

❤️ Thank You

v2.112.1

2.112.1 (2026-08-05)

🩹 Fixes

  • auth: preserve 5xx error message (#2587)
  • realtime: ensure setAuth doesn't disable token refresh (#2592)

❤️ Thank You

v2.112.1-canary.1

2.112.1-canary.1 (2026-08-05)

... (truncated)

Changelog

Sourced from @​supabase/supabase-js's changelog.

2.112.2 (2026-08-06)

This was a version bump only for @​supabase/supabase-js to align it with other projects, there were no code changes.

2.112.1 (2026-08-05)

🩹 Fixes

  • realtime: ensure setAuth doesn't disable token refresh (#2592)

❤️ Thank You

  • Eduardo Gurgel

2.112.0 (2026-08-03)

🚀 Features

  • supabase: move OpenTelemetry tracing to opt-in /tracing subpath (#2583)

🩹 Fixes

  • supabase: forward db retry option (#2571)

❤️ Thank You

2.111.0 (2026-07-28)

This was a version bump only for @​supabase/supabase-js to align it with other projects, there were no code changes.

2.110.9 (2026-07-27)

This was a version bump only for @​supabase/supabase-js to align it with other projects, there were no code changes.

2.110.8 (2026-07-21)

🩹 Fixes

  • supabase: skip Node warning in Deno (#2541)

❤️ Thank You

2.110.7 (2026-07-16)

🩹 Fixes

... (truncated)

Commits
  • 07b27ee chore(release): version 2.112.1 changelogs (#2593)
  • 1831402 fix(realtime): ensure setAuth doesn't disable token refresh (#2592)
  • 0136f34 chore(release): version 2.112.0 changelogs (#2589)
  • 2877b5b test(supabase): replace test-tracing harness with real-OTel unit and e2e cove...
  • a413544 feat(supabase): move OpenTelemetry tracing to opt-in /tracing subpath (#2583)
  • e6c975c fix(supabase): forward db retry option (#2571)
  • a262492 chore(release): version 2.111.0 changelogs (#2572)
  • 18b5bb2 chore(release): version 2.110.9 changelogs (#2567)
  • fc2e61e chore(repo): bump postcss override and fix playwright 1.62 tsconfig failure (...
  • 22050de chore(release): version 2.110.8 changelogs (#2546)
  • Additional commits viewable in compare view

Updates @tanstack/query-async-storage-persister from 5.101.2 to 5.101.4

Release notes

Sourced from @​tanstack/query-async-storage-persister's releases.

@​tanstack/query-async-storage-persister@​5.101.4

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.101.4
    • @​tanstack/query-persist-client-core@​5.101.4

@​tanstack/query-async-storage-persister@​5.101.3

Patch Changes

  • Updated dependencies [7e3c822]:
    • @​tanstack/query-core@​5.101.3
    • @​tanstack/query-persist-client-core@​5.101.3
Changelog

Sourced from @​tanstack/query-async-storage-persister's changelog.

5.101.4

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.101.4
    • @​tanstack/query-persist-client-core@​5.101.4

5.101.3

Patch Changes

  • Updated dependencies [7e3c822]:
    • @​tanstack/query-core@​5.101.3
    • @​tanstack/query-persist-client-core@​5.101.3
Commits

Updates @tanstack/react-query from 5.101.2 to 5.101.4

Release notes

Sourced from @​tanstack/react-query's releases.

@​tanstack/react-query-devtools@​5.101.4

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-devtools@​5.101.4
    • @​tanstack/react-query@​5.101.4

@​tanstack/react-query-next-experimental@​5.101.4

Patch Changes

  • Updated dependencies []:
    • @​tanstack/react-query@​5.101.4

@​tanstack/react-query-persist-client@​5.101.4

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-persist-client-core@​5.101.4
    • @​tanstack/react-query@​5.101.4

@​tanstack/react-query@​5.101.4

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.101.4

@​tanstack/react-query-devtools@​5.101.3

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-devtools@​5.101.3
    • @​tanstack/react-query@​5.101.3

@​tanstack/react-query-next-experimental@​5.101.3

Patch Changes

  • Updated dependencies []:
    • @​tanstack/react-query@​5.101.3

@​tanstack/react-query-persist-client@​5.101.3

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-persist-client-core@​5.101.3
    • @​tanstack/react-query@​5.101.3

@​tanstack/react-query@​5.101.3

Patch Changes

... (truncated)

Changelog

Sourced from @​tanstack/react-query's changelog.

5.101.4

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.101.4

5.101.3

Patch Changes

  • Updated dependencies [7e3c822]:
    • @​tanstack/query-core@​5.101.3
Commits
  • 86bb8a6 ci: Version Packages (#11094)
  • 181ea82 ci: Version Packages (#11089)
  • 6d55b07 test({react,preact}-query): use the '.then()' convention consistently (#11085)
  • 44f38df test({react,preact,solid}-query/useInfiniteQuery): inline the shared 'fetchIt...
  • d1558c1 test({react,preact}-query/usePrefetchQuery): inline the 'generateQueryFn' fac...
  • 99690d1 test({react,preact}-query/usePrefetchInfiniteQuery): inline single-use helper...
  • 10770f0 test({react,preact}-query/usePrefetchInfiniteQuery): inline the shared 'Suspe...
  • dbd5a86 test({react,preact}-query/usePrefetchQuery): inline the shared 'Suspended' co...
  • b955f60 test({react,preact}-query/useSuspenseQuery): assert the 'loading' fallback is...
  • b9c657e test({react,preact}-query/usePrefetchQuery): assert the 'Loading...' fallback...
  • Additional commits viewable in compare view

Updates @tanstack/react-query-persist-client from 5.101.2 to 5.101.4

Release notes

Sourced from @​tanstack/react-query-persist-client's releases.

@​tanstack/react-query-persist-client@​5.101.4

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-persist-client-core@​5.101.4
    • @​tanstack/react-query@​5.101.4

@​tanstack/react-query-persist-client@​5.101.3

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-persist-client-core@​5.101.3
    • @​tanstack/react-query@​5.101.3
Changelog

Sourced from @​tanstack/react-query-persist-client's changelog.

5.101.4

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-persist-client-core@​5.101.4
    • @​tanstack/react-query@​5.101.4

5.101.3

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-persist-client-core@​5.101.3
    • @​tanstack/react-query@​5.101.3
Commits

Updates @vercel/og from 0.11.1 to 1.0.1

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​vercel/og since your current version.


Updates node-addon-api from 8.9.0 to 8.9.1

Changelog

Sourced from node-addon-api's changelog.

8.9.1 (2026-07-31)

Bug Fixes

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…y with 7 updates

Bumps the production-dependencies group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@sentry/react-native](https://github.com/getsentry/sentry-react-native) | `7.11.0` | `8.22.0` |
| [@supabase/supabase-js](https://github.com/supabase/supabase-js/tree/HEAD/packages/core/supabase-js) | `2.110.6` | `2.112.2` |
| [@tanstack/query-async-storage-persister](https://github.com/TanStack/query/tree/HEAD/packages/query-async-storage-persister) | `5.101.2` | `5.101.4` |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.101.2` | `5.101.4` |
| [@tanstack/react-query-persist-client](https://github.com/TanStack/query/tree/HEAD/packages/react-query-persist-client) | `5.101.2` | `5.101.4` |
| [@vercel/og](https://github.com/vercel/og) | `0.11.1` | `1.0.1` |
| [node-addon-api](https://github.com/nodejs/node-addon-api) | `8.9.0` | `8.9.1` |



Updates `@sentry/react-native` from 7.11.0 to 8.22.0
- [Release notes](https://github.com/getsentry/sentry-react-native/releases)
- [Changelog](https://github.com/getsentry/sentry-react-native/blob/main/CHANGELOG.md)
- [Commits](getsentry/sentry-react-native@7.11.0...8.22.0)

Updates `@supabase/supabase-js` from 2.110.6 to 2.112.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.112.2/packages/core/supabase-js)

Updates `@tanstack/query-async-storage-persister` from 5.101.2 to 5.101.4
- [Release notes](https://github.com/TanStack/query/releases)
- [Changelog](https://github.com/TanStack/query/blob/main/packages/query-async-storage-persister/CHANGELOG.md)
- [Commits](https://github.com/TanStack/query/commits/@tanstack/query-async-storage-persister@5.101.4/packages/query-async-storage-persister)

Updates `@tanstack/react-query` from 5.101.2 to 5.101.4
- [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.4/packages/react-query)

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

Updates `@vercel/og` from 0.11.1 to 1.0.1
- [Commits](https://github.com/vercel/og/commits)

Updates `node-addon-api` from 8.9.0 to 8.9.1
- [Release notes](https://github.com/nodejs/node-addon-api/releases)
- [Changelog](https://github.com/nodejs/node-addon-api/blob/main/CHANGELOG.md)
- [Commits](nodejs/node-addon-api@v8.9.0...v8.9.1)

---
updated-dependencies:
- dependency-name: "@sentry/react-native"
  dependency-version: 8.22.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@supabase/supabase-js"
  dependency-version: 2.112.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tanstack/query-async-storage-persister"
  dependency-version: 5.101.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@tanstack/react-query"
  dependency-version: 5.101.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@tanstack/react-query-persist-client"
  dependency-version: 5.101.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@vercel/og"
  dependency-version: 1.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: node-addon-api
  dependency-version: 8.9.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
...

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 13, 2026
@vercel

vercel Bot commented Aug 13, 2026

Copy link
Copy Markdown

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

Project Deployment Actions Updated (UTC)
mythique Ready Ready Preview Aug 14, 2026 12:09am

@dependabot @github

dependabot Bot commented on behalf of github Sep 1, 2026

Copy link
Copy Markdown
Contributor Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Sep 1, 2026
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/production-dependencies-5680dbb9e6 branch September 1, 2026 17:13
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