Skip to content

chore: bump the npm-production-minor-patch group across 1 directory with 9 updates - #73

Closed
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/npm-production-minor-patch-b18d1467b4
Closed

chore: bump the npm-production-minor-patch group across 1 directory with 9 updates#73
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/npm-production-minor-patch-b18d1467b4

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

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

Package From To
@react-native-google-signin/google-signin 16.1.2 16.1.4
@sentry/react-native 8.12.0 8.23.0
@shopify/flash-list 2.0.2 2.3.2
react 19.2.3 19.2.8
react-dom 19.2.3 19.2.8
react-native-reanimated 4.3.1 4.5.3
react-native-safe-area-context 5.7.0 5.9.0
react-native-screens 4.26.2 4.27.0
react-native-svg 15.15.4 15.15.5

Updates @react-native-google-signin/google-signin from 16.1.2 to 16.1.4

Release notes

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

v16.1.4

16.1.4 (2026-07-27)

Bug Fixes

  • expo: declare AppCheckCore modular dependencies (#1519) (8594b76)

Tip: there's a paid version of the package with a new implementation, advanced security features, support for web, and more features.

v16.1.3

16.1.3 (2026-07-27)

Bug Fixes

  • android avoid NPE in GoogleSigninButton on RN 0.79 old architecture (#1491) (be6c576)

Tip: there's a paid version of the package with a new implementation, advanced security features, support for web, and more features.

Commits
  • fe86016 chore(release): 16.1.4 [skip ci]
  • 8594b76 fix(expo): declare AppCheckCore modular dependencies (#1519)
  • 011d328 chore(release): 16.1.3 [skip ci]
  • be6c576 fix: android avoid NPE in GoogleSigninButton on RN 0.79 old architecture (#1491)
  • aa1074e chore(deps): bump lodash-es from 4.17.21 to 4.17.23 (#1497)
  • b344b33 chore(deps): bump tar from 6.1.12 to 6.2.1 (#1485)
  • 865ee19 chore(deps): bump lodash from 4.17.21 to 4.17.23 (#1486)
  • bf290c6 chore(deps): bump minimatch from 3.1.2 to 3.1.5 (#1494)
  • fc9a71f chore(deps): bump fast-xml-parser from 4.4.1 to 4.5.4 (#1495)
  • See full diff in compare view

Updates @sentry/react-native from 8.12.0 to 8.23.0

Release notes

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

8.23.0

Changes

  • Migrate iOS internals from the deprecated PrivateSentrySDKOnly SPI to SentrySDK.internal (#6541)

    Re-lands #6380, reverted in 8.20.0 by #6491 because it broke iOS screenshot capture. The underlying sentry-cocoa bug is fixed in 9.24.0.

[!WARNING] Action required if you target React Native < 0.75. RNSentry now ships Swift code, which makes it a Swift pod under CocoaPods. If your Podfile doesn't already modularize React Native's ObjC pods (RN >= 0.75 does this by default), add use_modular_headers! to your ios/Podfile before running pod install. Otherwise pod install fails with an error like: The Swift pod 'RNSentry' depends upon 'React-hermes', which does not define modules.

Fixes

  • Send SDK-internal diagnostics to the debug logger instead of the Sentry Logs API (#6585)

    Ten internal warnings in the TurboModule instrumentation, scope sync and the Expo Router error boundary were written against logger, which captures a log record and sends it to your project. They now go to debug, printed only when the SDK is initialized with debug: true.

  • Measure callback-style native module calls until their completion callback fires (#6561)

    Bridge methods that report completion through success/failure callbacks instead of a Promise return undefined, so they were recorded as sync calls with a near-zero duration. Their turbo_module.* durations are now correct, and slow ones produce a native.turbo_module breadcrumb. On the Old Architecture a failure callback is also counted as an error, following React Native's own (failure, success) trailing-argument convention.

  • Resolve config-plugins through the expo package in the Expo config plugin (#6581)

  • 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.

Internal

  • Mark enableTurboModuleTracking as internal and correct its documentation (#6168)

    The option only installs the native TurboModulePerfLogger; no sink consumes its callbacks, so enabling it emits no data. Its documentation claimed it fed crash attribution, per-module spans and aggregated stats — those all come from turboModuleContextIntegration(), which is enabled by default with enableNative and never reads this option. No behaviour change.

Dependencies

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.

... (truncated)

Changelog

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

8.23.0

Changes

  • Migrate iOS internals from the deprecated PrivateSentrySDKOnly SPI to SentrySDK.internal (#6541)

    Re-lands #6380, reverted in 8.20.0 by #6491 because it broke iOS screenshot capture. The underlying sentry-cocoa bug is fixed in 9.24.0.

[!WARNING] Action required if you target React Native < 0.75. RNSentry now ships Swift code, which makes it a Swift pod under CocoaPods. If your Podfile doesn't already modularize React Native's ObjC pods (RN >= 0.75 does this by default), add use_modular_headers! to your ios/Podfile before running pod install. Otherwise pod install fails with an error like: The Swift pod 'RNSentry' depends upon 'React-hermes', which does not define modules.

Fixes

  • Send SDK-internal diagnostics to the debug logger instead of the Sentry Logs API (#6585)

    Ten internal warnings in the TurboModule instrumentation, scope sync and the Expo Router error boundary were written against logger, which captures a log record and sends it to your project. They now go to debug, printed only when the SDK is initialized with debug: true.

  • Measure callback-style native module calls until their completion callback fires (#6561)

    Bridge methods that report completion through success/failure callbacks instead of a Promise return undefined, so they were recorded as sync calls with a near-zero duration. Their turbo_module.* durations are now correct, and slow ones produce a native.turbo_module breadcrumb. On the Old Architecture a failure callback is also counted as an error, following React Native's own (failure, success) trailing-argument convention.

  • Resolve config-plugins through the expo package in the Expo config plugin (#6581)

  • 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.

Internal

  • Mark enableTurboModuleTracking as internal and correct its documentation (#6168)

    The option only installs the native TurboModulePerfLogger; no sink consumes its callbacks, so enabling it emits no data. Its documentation claimed it fed crash attribution, per-module spans and aggregated stats — those all come from turboModuleContextIntegration(), which is enabled by default with enableNative and never reads this option. No behaviour change.

Dependencies

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.

... (truncated)

Commits
  • 580759e release: 8.23.0
  • 1d55d8a fix(core): Use the debug logger, not the Logs API, for SDK diagnostics (#6585)
  • 21c11b5 chore: update scripts/update-wizard.sh to v7.0.2 (#6569)
  • 36a65c1 chore: update scripts/update-sentry-android-gradle-plugin.sh to 6.18.0 (#6571)
  • 75735f9 fix(core): Measure callback-style native module calls until completion (#6561)
  • aab34e2 chore(deps): bump brace-expansion to ^2.1.4 / ^5.0.9 (#6577)
  • 4340ac1 fix(expo): Resolve config-plugins through the expo package (#6581)
  • fdff1d8 chore(deps): bump js-yaml to ^3.15.1 / ^4.3.1 (#6578)
  • c974c52 docs(core): Correct enableTurboModuleTracking docs and document TurboModule p...
  • 0a5670a docs: fix dead links in the README (#6570)
  • Additional commits viewable in compare view

Updates @shopify/flash-list from 2.0.2 to 2.3.2

Release notes

Sourced from @​shopify/flash-list's releases.

v2.3.2

What's Changed

New Contributors

Full Changelog: Shopify/flash-list@v2.3.1...v2.3.2

v2.3.1

What's Changed

New Contributors

Full Changelog: Shopify/flash-list@v2.3.0...v2.3.1

v2.3.0

What's Changed

Full Changelog: Shopify/flash-list@v2.2.3...v2.3.0

v2.2.3

What's Changed

New Contributors

Full Changelog: Shopify/flash-list@v2.2.2...v2.2.3

... (truncated)

Commits
  • 8c1375e v2.3.2
  • d6c9513 feat(sticky-headers): configure sticky header zIndex (#2311)
  • 8ca7477 fix: scroll to index autoscroll race (#2290)
  • f4278ba Update skill to include fixture checks
  • 8bf4c81 chore(deps): bump picomatch from 2.3.1 to 2.3.2 in /fixture/web (#2210)
  • ea9956a chore(deps): bump picomatch from 2.3.1 to 2.3.2 (#2214)
  • 43ed94e chore(deps): bump picomatch from 2.3.1 to 2.3.2 in /documentation (#2212)
  • 508606e chore(deps): bump picomatch from 2.3.1 to 2.3.2 in /fixture/react-native (#2213)
  • f47a64e chore(skills): add analyze-feedback skill and incorporate agent learnings (#2...
  • 5ffed99 feat(skills): add analyze-feedback skill for agent workflow feedback (#2206)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​shopify/flash-list since your current version.


Updates react from 19.2.3 to 19.2.8

Release notes

Sourced from react's releases.

19.2.8 (July 21st, 2026)

React Server Components

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

Changelog

Sourced from react's changelog.

19.2.7 (June 1, 2026)

React Server Components

19.2.6 (May 6, 2026)

React Server Components

19.2.5 (March 18, 2026)

React Server Components

19.2.4 (Jan 26, 2026)

React Server Components

Commits
Maintainer changes

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


Updates react-dom from 19.2.3 to 19.2.8

Release notes

Sourced from react-dom's releases.

19.2.8 (July 21st, 2026)

React Server Components

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

Changelog

Sourced from react-dom's changelog.

19.2.7 (June 1, 2026)

React Server Components

19.2.6 (May 6, 2026)

React Server Components

19.2.5 (March 18, 2026)

React Server Components

19.2.4 (Jan 26, 2026)

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 react-native-reanimated from 4.3.1 to 4.5.3

Release notes

Sourced from react-native-reanimated's releases.

Reanimated - 4.5.3

What's Changed

Full Changelog: software-mansion/react-native-reanimated@4.5.2...4.5.3

Reanimated - 4.5.2

What's Changed

Reanimated version supporting Worklets 0.11.

Full Changelog: software-mansion/react-native-reanimated@4.5.1...4.5.2

Reanimated - 4.5.1

What's Changed

Full Changelog: software-mansion/react-native-reanimated@4.5.0...4.5.1

Reanimated - 4.5.0

Key changes

More props supported by CSS Core Animation

Shadow (shadowColor, shadowOpacity, shadowRadius, shadowOffset), background, and border (backgroundColor, borderColor, borderWidth, borderRadius) CSS transitions now run on iOS Core Animation.

Using CSS Core Animation required enabling IOS_CSS_CORE_ANIMATION feature flag.

CSS Animations Pseudoselectors

CSS animations now support pseudo-selectors such as :hover, :active, and :focus, with native Apple and Android backends alongside a web implementation.

CSS Animations web support for SVG

... (truncated)

Commits
  • 312aaff release(Reanimated): 4.5.1
  • 610f2d5 cherry-pick(4.5-stable): Prevent animated views from reverting to stale value...
  • 66859a1 cherry-pick(4.5-stable): Fix crash from withheld exiting layout animations in...
  • 55c6bcc release(Reanimated): 4.5.2
  • 04a7c40 release(Reanimated): 4.5.1 (#9834)
  • b8ea72a cherry-pick(4.5-stable): Android crash on empty CSS strokeDasharray from the ...
  • d58c7e2 cherry-pick(4.5-stable): prevent useAnimatedKeyboard crash "Can't change in...
  • b19e4ec cherry-pick(4.5-stable): restore opacity for flaky entering animations under ...
  • dfd49fa cherry-pick(4.5-stable): Pass -fno-pch-timestamp so ccache can reuse the Andr...
  • 726430d cherry-pick(4.5-stable): animate react-native-svg via CSS on web in minified ...
  • Additional commits viewable in compare view

Updates react-native-safe-area-context from 5.7.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)

Release 5.8.0

5.8.0 (2026-05-18)

Changes

  • remove UIImplementation usage from SafeAreaView (#730) (ef89f4d)
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

…ith 9 updates

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

| Package | From | To |
| --- | --- | --- |
| [@react-native-google-signin/google-signin](https://github.com/react-native-google-signin/google-signin) | `16.1.2` | `16.1.4` |
| [@sentry/react-native](https://github.com/getsentry/sentry-react-native) | `8.12.0` | `8.23.0` |
| [@shopify/flash-list](https://github.com/Shopify/flash-list) | `2.0.2` | `2.3.2` |
| [react](https://github.com/react/react/tree/HEAD/packages/react) | `19.2.3` | `19.2.8` |
| [react-dom](https://github.com/react/react/tree/HEAD/packages/react-dom) | `19.2.3` | `19.2.8` |
| [react-native-reanimated](https://github.com/software-mansion/react-native-reanimated/tree/HEAD/packages/react-native-reanimated) | `4.3.1` | `4.5.3` |
| [react-native-safe-area-context](https://github.com/AppAndFlow/react-native-safe-area-context) | `5.7.0` | `5.9.0` |
| [react-native-screens](https://github.com/software-mansion/react-native-screens) | `4.26.2` | `4.27.0` |
| [react-native-svg](https://github.com/software-mansion/react-native-svg) | `15.15.4` | `15.15.5` |



Updates `@react-native-google-signin/google-signin` from 16.1.2 to 16.1.4
- [Release notes](https://github.com/react-native-google-signin/google-signin/releases)
- [Changelog](https://github.com/react-native-google-signin/google-signin/blob/master/release.config.js)
- [Commits](react-native-google-signin/google-signin@v16.1.2...v16.1.4)

Updates `@sentry/react-native` from 8.12.0 to 8.23.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@8.12.0...8.23.0)

Updates `@shopify/flash-list` from 2.0.2 to 2.3.2
- [Release notes](https://github.com/Shopify/flash-list/releases)
- [Changelog](https://github.com/Shopify/flash-list/blob/main/CHANGELOG.md)
- [Commits](Shopify/flash-list@v2.0.2...v2.3.2)

Updates `react` from 19.2.3 to 19.2.8
- [Release notes](https://github.com/react/react/releases)
- [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/react/react/commits/v19.2.8/packages/react)

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

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

Updates `react-native-safe-area-context` from 5.7.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.7.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-svg` from 15.15.4 to 15.15.5
- [Release notes](https://github.com/software-mansion/react-native-svg/releases)
- [Commits](software-mansion/react-native-svg@v15.15.4...v15.15.5)

---
updated-dependencies:
- dependency-name: "@react-native-google-signin/google-signin"
  dependency-version: 16.1.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-production-minor-patch
- dependency-name: "@sentry/react-native"
  dependency-version: 8.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-production-minor-patch
- dependency-name: "@shopify/flash-list"
  dependency-version: 2.3.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-production-minor-patch
- dependency-name: react
  dependency-version: 19.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-production-minor-patch
- dependency-name: react-dom
  dependency-version: 19.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-production-minor-patch
- dependency-name: react-native-reanimated
  dependency-version: 4.5.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-production-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-production-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-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: npm-production-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
@dependabot
dependabot Bot requested a review from maxjuniorbr as a code owner August 18, 2026 12:50
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 18, 2026
@dependabot @github

dependabot Bot commented on behalf of github Aug 24, 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 Aug 24, 2026
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/npm-production-minor-patch-b18d1467b4 branch August 24, 2026 11:09
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