Skip to content

deps: bump the production-dependencies group across 1 directory with 9 updates#59

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/production-dependencies-d86913cb9f
Open

deps: bump the production-dependencies group across 1 directory with 9 updates#59
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/production-dependencies-d86913cb9f

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 25, 2026

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

Package From To
@playwright/test 1.59.1 1.60.0
@tanstack/react-virtual 3.13.24 3.13.25
date-fns 4.1.0 4.3.0
@react-native-async-storage/async-storage 3.0.2 3.1.0
@react-navigation/bottom-tabs 7.15.13 7.16.1
@supabase/supabase-js 2.105.4 2.106.1
react-native-safe-area-context 5.7.0 5.8.0
react-native-screens 4.24.0 4.25.2
@clerk/nextjs 7.3.3 7.4.1

Updates @playwright/test from 1.59.1 to 1.60.0

Release notes

Sourced from @​playwright/test's releases.

v1.60.0

🌐 HAR recording on Tracing

tracing.startHar() / tracing.stopHar() expose HAR recording as a first-class tracing API, with the same content, mode and urlFilter options as recordHar. The returned Disposable makes it easy to scope a recording with await using:

await using har = await context.tracing.startHar('trace.har');
const page = await context.newPage();
await page.goto('https://playwright.dev');
// HAR is finalized when `har` goes out of scope.

🪝 Drop API

New locator.drop() simulates an external drag-and-drop of files or clipboard-like data onto an element. Playwright dispatches dragenter, dragover, and drop with a synthetic [DataTransfer] in the page context — works cross-browser and is great for testing upload zones:

await page.locator('#dropzone').drop({
  files: { name: 'note.txt', mimeType: 'text/plain', buffer: Buffer.from('hello') },
});
await page.locator('#dropzone').drop({
data: {
'text/plain': 'hello world',
'text/uri-list': 'https://example.com',
},
});

🎯 Aria snapshots

🛑 test.abort()

New test.abort() aborts the currently running test from a fixture, hook, or route handler with an optional message. Use it when you have detected an unrecoverable misuse and want to fail the test right away:

test('does not publish to the shared page', async ({ page }) => {
  await page.route('**/publish', route => {
    test.abort('Tests must not publish to the shared page. Use the `clone` option.');
    return route.abort();
  });
  // ...
});

New APIs

Browser, Context and Page

... (truncated)

Commits

Updates @tanstack/react-virtual from 3.13.24 to 3.13.25

Release notes

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

@​tanstack/react-virtual@​3.13.25

Patch Changes

  • Replace the useReducer(() => ({}), {}) force-rerender pattern with an (#1168) incrementing number counter. Same semantics (every dispatch changes the reducer state, forcing a render); zero per-dispatch object allocation. Trivial individual cost, but eliminates one steady-state GC source on scroll-heavy apps.
  • Updated dependencies [99355ad, 99355ad, 99355ad, 99355ad, 99355ad, 99355ad, 99355ad]:
    • @​tanstack/virtual-core@​3.15.0
Changelog

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

3.13.25

Patch Changes

  • Replace the useReducer(() => ({}), {}) force-rerender pattern with an (#1168) incrementing number counter. Same semantics (every dispatch changes the reducer state, forcing a render); zero per-dispatch object allocation. Trivial individual cost, but eliminates one steady-state GC source on scroll-heavy apps.
  • Updated dependencies [99355ad, 99355ad, 99355ad, 99355ad, 99355ad, 99355ad, 99355ad]:
    • @​tanstack/virtual-core@​3.15.0
Commits
  • 949180b ci: Version Packages (#1169)
  • 99355ad perf: virtual-core rewrite for mount/measure-storm, plus iOS Safari handling ...
  • 3374977 chore(angular-virtual)!: upgrade Angular to v19 (#1158)
  • See full diff in compare view

Updates date-fns from 4.1.0 to 4.3.0

Release notes

Sourced from date-fns's releases.

v4.3.0

Kudos to @​ImRodry and @​puneetdixit200 for their contributions.

Fixed

v4.2.1

Fixed

  • Fixed type definitions missing in v4.2.0 due to TypeScript misconfiguration.

v4.2.0

This is a minor release in all senses, it only includes documentation updates (first of many) that points to the new You Don't Need date-fns* page.

* Not really

Changed

  • Added Temporal API references to the JSDoc annotations of add, addBusinessDays, and addDays.
Commits

Updates @react-native-async-storage/async-storage from 3.0.2 to 3.1.0

Release notes

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

Async Storage v3.1.0

Minor Changes

  • fa6d5bc: Shared Storage artifact published to maven central

This eliminates the extra step in installation for android.

Async Storage v3.0.3

Patch Changes

350e149:

  • Correctly handle "other" error for Apple platforms
  • Android to use limited parallelism from DispatcherIO, instead of using dedicated thread pools per database
  • When providing null for a key, for some reason, throw an error instead of crashing the app
  • Make example RN example work again
  • Use concurrent hashmap instead of hashmap + synchronization combo for Storage initialization on Android
  • Double check lock for legacy storage initialization on android
Changelog

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

3.1.0

Minor Changes

  • fa6d5bc: Shared Storage artifact published to maven central

    This eliminates the extra step in installation for android.

3.0.3

Patch Changes

  • 350e149: - Correctly handle "other" error for Apple platforms
    • Android to use limited parallelism from DispatcherIO, instead of using dedicated thread pools per database
    • When providing null for a key, for some reason, throw an error instead of crashing the app
    • Make example RN example work again
    • Use concurrent hashmap instead of hashmap + synchronization combo for Storage initialization on Android
    • Double check lock for legacy storage initialization on android
Commits

Updates @react-navigation/bottom-tabs from 7.15.13 to 7.16.1

Release notes

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

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

7.16.0 (2026-05-11)

Bug Fixes

Features

Changelog

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

7.16.1 (2026-05-14)

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

7.16.0 (2026-05-11)

Bug Fixes

Features

Commits
  • 8e0ce2b chore: publish
  • b5b1f7c chore: publish
  • cd466d4 fix: default multiselectable to undefined
  • 1930fa0 feat: add ability to prevent tab bar selection
  • a12db96 feat: update native tabs to use the new API in react-native-screens
  • See full diff in compare view

Updates @supabase/supabase-js from 2.105.4 to 2.106.1

Release notes

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

v2.106.1

2.106.1 (2026-05-20)

🩹 Fixes

  • auth: encode client-id in oauth requests (#2383)
  • misc: hide dynamic import from hermesc (#2381)

❤️ Thank You

v2.106.1-canary.1

2.106.1-canary.1 (2026-05-20)

🩹 Fixes

  • misc: hide dynamic import from hermesc (#2381)

❤️ Thank You

v2.106.1-canary.0

2.106.1-canary.0 (2026-05-20)

🩹 Fixes

  • auth: encode client-id in oauth requests (#2383)

❤️ Thank You

v2.106.1-beta.3

2.106.1-beta.3 (2026-05-20)

🩹 Fixes

... (truncated)

Changelog

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

2.106.1 (2026-05-20)

🩹 Fixes

  • misc: hide dynamic import from hermesc (#2381)

❤️ Thank You

2.106.0 (2026-05-18)

🚀 Features

  • supabase: W3C/OpenTelemetry trace context propagation (#2163)

🩹 Fixes

  • release: mark @​supabase/tracing private and snapshot it for JSR (#2370)

❤️ Thank You

  • Claude Sonnet 4.5
  • Guilherme Souza
  • Katerina Skroumpelou @​mandarini
Commits

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

Release notes

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

Release 5.8.0

5.8.0 (2026-05-18)

Changes

  • remove UIImplementation usage from SafeAreaView (#730) (ef89f4d)
Commits

Updates react-native-screens from 4.24.0 to 4.25.2

Release notes

Sourced from react-native-screens's releases.

4.25.2

What's changed

Patch release bringing two important fixes.

Bug fixes 🐞

  • fix(Android, Tabs): trigger appearance update on user tab selection (#4075)
  • fix(Android, FormSheet): include keyboard translationY in shadow update (#4065)

Full Changelog: software-mansion/react-native-screens@4.25.1...4.25.2

4.25.1

What's Changed

Patch version with some crucial fixes.

Bug fixes 🐞

  • fix(Android, Tabs): handle Tabs reattachment to window (#4035)
  • fix(Android, FormSheet): Prioritize keyboard animation over content resize animation (#3924)
  • refactor(Android, FormSheet): Align animators implementation to use ValueAnimator (#3922)
  • refactor(Android, FormSheet): Minor cleanups in SheetAnimationCoordinator (#3921)
  • fix(Android, FormSheet): Create SheetAnimationCoordinator to synchronize animations coming from different sources (#3914)

Full Changelog: software-mansion/react-native-screens@4.25.0...4.25.1

4.25.0

What's Changed

Minor release, bringing golden version of Tabs API. Unless we get your negative feedback, we plan to stabilise Tabs API in next minor.

[!important] 4.25.0 no longer supports the legacy architecture. Most likely, the library will simply fail to build.

This release brings important Tabs API changes in JS and native layer, required for stabilisation of the API. Downstream libraries are already in advanced stage of adaptation to these changes. Please track the releases of your navigation solution for compatibility remarks.

Improvements

... (truncated)

Commits
  • a9d5735 fix(Android, Tabs): trigger appearance update on user tab selection (#4075)
  • c58b6d4 fix(Android, FormSheet): include keyboard translationY in shadow update (#4065)
  • a00b359 Remove import of test 3910
  • 8722518 fix(Android, Tabs): handle Tabs reattachment to window (#4035)
  • c2172be fix(Android, FormSheet): Prioritize keyboard animation over content resize an...
  • fa54825 refactor(Android, FormSheet): Align animators implementation to use ValueAnim...
  • 1258d2b refactor(Android, FormSheet): Minor cleanups in SheetAnimationCoordinator (#3...
  • 2565173 fix(Android, FormSheet): Create SheetAnimationCoordinator to synchronize anim...
  • dfd36e1 chore: revert "chore: cherry-pick changes to 4.25.1 stable" (#4055)
  • 0b200fd chore: cherry-pick changes to 4.25.1 stable (#4054)
  • Additional commits viewable in compare view

Updates @clerk/nextjs from 7.3.3 to 7.4.1

Release notes

Sourced from @​clerk/nextjs's releases.

@​clerk/nextjs@​7.4.1

Patch Changes

  • Updated dependencies [a036ce8]:
    • @​clerk/shared@​4.13.1
    • @​clerk/react@​6.7.1
    • @​clerk/backend@​3.4.13

@​clerk/nextjs@​7.4.0

Minor Changes

Patch Changes

@​clerk/nextjs@​7.3.7

Patch Changes

@​clerk/nextjs@​7.3.5

Patch Changes

  • Bump next devDependency to 15.5.18 to pick up the fix for GHSA-26hh-7cqf-hhc6, a high-severity (CVSS 7.5) Middleware/Proxy bypass in App Router applications via segment-prefetch routes (incomplete-fix follow-up). If you use the Next.js App Router, we recommend upgrading to Next.js 15.5.18, 16.2.6, or a later patched release. The 16.0.0 through 16.2.5 versions are still affected. (#8547) by @​jacekradko

  • Updated dependencies [9fa6642, 930047f, b45777c, 5441d86, 5a7225e]:

    • @​clerk/shared@​4.12.0
    • @​clerk/react@​6.6.4
    • @​clerk/backend@​3.4.9
Changelog

Sourced from @​clerk/nextjs's changelog.

7.4.1

Patch Changes

  • Updated dependencies [a036ce8]:
    • @​clerk/shared@​4.13.1
    • @​clerk/react@​6.7.1
    • @​clerk/backend@​3.4.13

7.4.0

Minor Changes

Patch Changes

7.3.7

Patch Changes

7.3.6

Patch Changes

  • Updated dependencies [4fc38a0]:
    • @​clerk/shared@​4.12.1
    • @​clerk/react@​6.6.5
    • @​clerk/backend@​3.4.10

7.3.5

Patch Changes

  • Bump next devDependency to 15.5.18 to pick up the fix for GHSA-26hh-7cqf-hhc6, a high-severity (CVSS 7.5) Middleware/Proxy bypass in App Router applications via segment-prefetch routes (incomplete-fix follow-up). If you use the Next.js App Router, we recommend upgrading to Next.js 15.5.18, 16.2.6, or a later patched release. The 16.0.0 through 16.2.5 versions are still affected. (#8547) by @​jacekradko

  • Updated dependencies [9fa6642, 930047f, b45777c, 5441d86, 5a7225e]:

    • @​clerk/shared@​4.12.0
    • @​clerk/react@​6.6.4
    • @​clerk/backend@​3.4.9

... (truncated)

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

…9 updates

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

| Package | From | To |
| --- | --- | --- |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.59.1` | `1.60.0` |
| [@tanstack/react-virtual](https://github.com/TanStack/virtual/tree/HEAD/packages/react-virtual) | `3.13.24` | `3.13.25` |
| [date-fns](https://github.com/date-fns/date-fns) | `4.1.0` | `4.3.0` |
| [@react-native-async-storage/async-storage](https://github.com/react-native-async-storage/async-storage/tree/HEAD/packages/async-storage) | `3.0.2` | `3.1.0` |
| [@react-navigation/bottom-tabs](https://github.com/react-navigation/react-navigation/tree/HEAD/packages/bottom-tabs) | `7.15.13` | `7.16.1` |
| [@supabase/supabase-js](https://github.com/supabase/supabase-js/tree/HEAD/packages/core/supabase-js) | `2.105.4` | `2.106.1` |
| [react-native-safe-area-context](https://github.com/AppAndFlow/react-native-safe-area-context) | `5.7.0` | `5.8.0` |
| [react-native-screens](https://github.com/software-mansion/react-native-screens) | `4.24.0` | `4.25.2` |
| [@clerk/nextjs](https://github.com/clerk/javascript/tree/HEAD/packages/nextjs) | `7.3.3` | `7.4.1` |



Updates `@playwright/test` from 1.59.1 to 1.60.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.59.1...v1.60.0)

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

Updates `date-fns` from 4.1.0 to 4.3.0
- [Release notes](https://github.com/date-fns/date-fns/releases)
- [Commits](date-fns/date-fns@v4.1.0...v4.3.0)

Updates `@react-native-async-storage/async-storage` from 3.0.2 to 3.1.0
- [Release notes](https://github.com/react-native-async-storage/async-storage/releases)
- [Changelog](https://github.com/react-native-async-storage/async-storage/blob/main/packages/async-storage/CHANGELOG.md)
- [Commits](https://github.com/react-native-async-storage/async-storage/commits/@react-native-async-storage/async-storage@3.1.0/packages/async-storage)

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

Updates `@supabase/supabase-js` from 2.105.4 to 2.106.1
- [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.106.1/packages/core/supabase-js)

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

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

Updates `@clerk/nextjs` from 7.3.3 to 7.4.1
- [Release notes](https://github.com/clerk/javascript/releases)
- [Changelog](https://github.com/clerk/javascript/blob/main/packages/nextjs/CHANGELOG.md)
- [Commits](https://github.com/clerk/javascript/commits/@clerk/nextjs@7.4.1/packages/nextjs)

---
updated-dependencies:
- dependency-name: "@playwright/test"
  dependency-version: 1.60.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tanstack/react-virtual"
  dependency-version: 3.13.25
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: date-fns
  dependency-version: 4.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@react-native-async-storage/async-storage"
  dependency-version: 3.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@react-navigation/bottom-tabs"
  dependency-version: 7.16.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@supabase/supabase-js"
  dependency-version: 2.106.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- 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-dependencies
- dependency-name: react-native-screens
  dependency-version: 4.25.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@clerk/nextjs"
  dependency-version: 7.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github May 25, 2026

Labels

The following labels could not be found: dependencies, security. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@vercel
Copy link
Copy Markdown

vercel Bot commented May 25, 2026

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

Project Deployment Actions Updated (UTC)
crew-roster Ready Ready Preview, Comment May 25, 2026 8:32am

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants