Skip to content

deps: bump the production-dependencies group with 11 updates#56

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

deps: bump the production-dependencies group with 11 updates#56
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/production-dependencies-ce2eacb6a9

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Bumps the production-dependencies group with 11 updates:

Package From To
@playwright/test 1.59.1 1.60.0
@react-navigation/bottom-tabs 7.15.13 7.16.1
expo 55.0.23 55.0.24
expo-crypto 55.0.14 55.0.15
expo-device 55.0.16 55.0.17
expo-location 55.1.9 55.1.10
expo-notifications 55.0.22 55.0.23
expo-sqlite 55.0.15 55.0.16
expo-task-manager 55.0.15 55.0.16
react-native-screens 4.24.0 4.25.0
@clerk/nextjs 7.3.3 7.3.5

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 @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 expo from 55.0.23 to 55.0.24

Changelog

Sourced from expo's changelog.

Changelog

Unpublished

🛠 Breaking changes

🎉 New features

🐛 Bug fixes

💡 Others

56.0.0-preview.12 — 2026-05-15

🎉 New features

  • Implement Response.clone() on expo/fetch, and throw the spec's TypeError when a body is read twice. (#45740 by @​zoontek)

🐛 Bug fixes

💡 Others

56.0.0-preview.11 — 2026-05-13

This version does not introduce any user-facing changes.

56.0.0-preview.10 — 2026-05-13

🛠 Breaking changes

  • Removed @expo/vector-icons from the expo package's dependencies. Apps that list @expo/vector-icons in their own package.json are unaffected; this is flagged as breaking only for apps that relied on expo transitively pulling it in. (#45563 by @​vonovak)

💡 Others

  • Reexport permission hooks and permission types from expo-modules-core (#45564 by @​Wenszel)

56.0.0-preview.9 — 2026-05-12

This version does not introduce any user-facing changes.

56.0.0-preview.8 — 2026-05-11

🐛 Bug fixes

  • [iOS] Fixed launch-time crash in apps with source-built React Native by wiring the React RuntimeScheduler into ExpoModulesJSI from ExpoReactNativeFactory. (#45636 by @​tsapeta)

... (truncated)

Commits

Updates expo-crypto from 55.0.14 to 55.0.15

Changelog

Sourced from expo-crypto's changelog.

Changelog

Unpublished

🛠 Breaking changes

🎉 New features

🐛 Bug fixes

💡 Others

56.0.3 — 2026-05-06

This version does not introduce any user-facing changes.

56.0.2 — 2026-05-06

This version does not introduce any user-facing changes.

56.0.1 — 2026-05-06

This version does not introduce any user-facing changes.

56.0.0 — 2026-05-05

🛠 Breaking changes

Commits

Updates expo-device from 55.0.16 to 55.0.17

Changelog

Sourced from expo-device's changelog.

Changelog

Unpublished

🛠 Breaking changes

🎉 New features

🐛 Bug fixes

💡 Others

56.0.4 — 2026-05-06

This version does not introduce any user-facing changes.

56.0.3 — 2026-05-06

This version does not introduce any user-facing changes.

56.0.2 — 2026-05-06

This version does not introduce any user-facing changes.

56.0.1 — 2026-05-05

This version does not introduce any user-facing changes.

56.0.0 — 2026-05-05

🛠 Breaking changes

Commits

Updates expo-location from 55.1.9 to 55.1.10

Changelog

Sourced from expo-location's changelog.

Changelog

Unpublished

🛠 Breaking changes

🎉 New features

🐛 Bug fixes

💡 Others

56.0.9 — 2026-05-15

This version does not introduce any user-facing changes.

56.0.8 — 2026-05-13

This version does not introduce any user-facing changes.

56.0.7 — 2026-05-13

💡 Others

  • Updated permission hooks and permission type imports to be imported from expo instead of expo-modules-core (#45565 by @​Wenszel)

56.0.6 — 2026-05-11

This version does not introduce any user-facing changes.

56.0.5 — 2026-05-08

This version does not introduce any user-facing changes.

56.0.4 — 2026-05-07

This version does not introduce any user-facing changes.

56.0.3 — 2026-05-06

This version does not introduce any user-facing changes.

56.0.2 — 2026-05-06

This version does not introduce any user-facing changes.

56.0.1 — 2026-05-06

This version does not introduce any user-facing changes.

... (truncated)

Commits

Updates expo-notifications from 55.0.22 to 55.0.23

Changelog

Sourced from expo-notifications's changelog.

Changelog

Unpublished

🛠 Breaking changes

🎉 New features

🐛 Bug fixes

💡 Others

56.0.9 — 2026-05-15

This version does not introduce any user-facing changes.

56.0.8 — 2026-05-13

This version does not introduce any user-facing changes.

56.0.7 — 2026-05-13

🐛 Bug fixes

  • [ios] Dispatch foreground notification completion handler on the main thread to prevent SIGTRAP / BSPreconditionFailure on iOS 16. (#45096 by @​qutrek)

💡 Others

  • Updated permission type and permission status imports to be imported from expo instead of expo-modules-core (#45565 by @​Wenszel)

56.0.6 — 2026-05-11

This version does not introduce any user-facing changes.

56.0.5 — 2026-05-08

This version does not introduce any user-facing changes.

56.0.4 — 2026-05-07

This version does not introduce any user-facing changes.

56.0.3 — 2026-05-06

This version does not introduce any user-facing changes.

56.0.2 — 2026-05-06

This version does not introduce any user-facing changes.

... (truncated)

Commits

Updates expo-sqlite from 55.0.15 to 55.0.16

Changelog

Sourced from expo-sqlite's changelog.

Changelog

Unpublished

🛠 Breaking changes

🎉 New features

🐛 Bug fixes

💡 Others

56.0.3 — 2026-05-06

This version does not introduce any user-facing changes.

56.0.2 — 2026-05-06

This version does not introduce any user-facing changes.

56.0.1 — 2026-05-06

This version does not introduce any user-facing changes.

56.0.0 — 2026-05-05

🛠 Breaking changes

🎉 New features

💡 Others

  • [iOS] Updated sync function signatures (runSync, applyChangesetSync, invertChangesetSync) to accept any AnyArrayBuffer in place of the removed JavaScriptArrayBuffer. (#44337 by @​tsapeta)
  • Session changesets now use native ArrayBuffers. (#42638 by @​barthap)
  • Statement bind params now use native ArrayBuffers for blob columns. (#42639 by @​barthap)
  • [Android] Returned blob columns now use native ArrayBuffers. (#42640 by @​barthap)
  • [iOS] Returned blob columns now use native ArrayBuffers. (#42642 by @​barthap)
Commits

Updates expo-task-manager from 55.0.15 to 55.0.16

Changelog

Sourced from expo-task-manager's changelog.

Changelog

Unpublished

🛠 Breaking changes

🎉 New features

🐛 Bug fixes

💡 Others

56.0.9 — 2026-05-15

This version does not introduce any user-facing changes.

56.0.8 — 2026-05-13

This version does not introduce any user-facing changes.

56.0.7 — 2026-05-13

This version does not introduce any user-facing changes.

56.0.6 — 2026-05-11

This version does not introduce any user-facing changes.

56.0.5 — 2026-05-08

This version does not introduce any user-facing changes.

56.0.4 — 2026-05-07

This version does not introduce any user-facing changes.

56.0.3 — 2026-05-06

This version does not introduce any user-facing changes.

56.0.2 — 2026-05-06

This version does not introduce any user-facing changes.

56.0.1 — 2026-05-06

This version does not introduce any user-facing changes.

56.0.0 — 2026-05-05

... (truncated)

Commits

Updates react-native-screens from 4.24.0 to 4.25.0

Release notes

Sourced from react-native-screens's releases.

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
  • c07b9c5 fix: add web fallback for ScrollViewMarker (#4008)
  • 9543bbd fix(iOS, Tabs): register navigation state observer outside RCTAssert (#4004)
  • cb6359e fix(iOS): forward-declare RCTSurfaceTouchHandler in UIView+RNSUtility.h (#3986)
  • 4e1551b fix(Android, Tabs): propagate actionOrigin into navigation state progression ...
  • 09d5d3e fix(iOS, Tabs): correctly pass action origin to progressNavigationState (#3994)
  • d11966a fix(iOS, Tabs): fix moreNavigationController navigation bar visible on nav (#...
  • 85e3cd6 refactor(tabs): rename rejectedProvenance to rejectedBaseProvenance (#3982)
  • 56734b1 fix(web, SafeAreaView): replace default export with named export (#3956)
  • 01307f3 fix(iOS): unregister tabs accessory observer from observed wrapper (#3948)
  • 8a4fc6b fix(Android, Stack v5): prevent crash when subview with (0, 0) size is added ...
  • Additional commits viewable in compare view

Updates @clerk/nextjs from 7.3.3 to 7.3.5

Release notes

Sourced from @​clerk/nextjs's releases.

@​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

@​clerk/nextjs@​7.3.4

Patch Changes

Changelog

Sourced from @​clerk/nextjs's changelog.

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

7.3.4

Patch Changes

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

Bumps the production-dependencies group with 11 updates:

| Package | From | To |
| --- | --- | --- |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.59.1` | `1.60.0` |
| [@react-navigation/bottom-tabs](https://github.com/react-navigation/react-navigation/tree/HEAD/packages/bottom-tabs) | `7.15.13` | `7.16.1` |
| [expo](https://github.com/expo/expo/tree/HEAD/packages/expo) | `55.0.23` | `55.0.24` |
| [expo-crypto](https://github.com/expo/expo/tree/HEAD/packages/expo-crypto) | `55.0.14` | `55.0.15` |
| [expo-device](https://github.com/expo/expo/tree/HEAD/packages/expo-device) | `55.0.16` | `55.0.17` |
| [expo-location](https://github.com/expo/expo/tree/HEAD/packages/expo-location) | `55.1.9` | `55.1.10` |
| [expo-notifications](https://github.com/expo/expo/tree/HEAD/packages/expo-notifications) | `55.0.22` | `55.0.23` |
| [expo-sqlite](https://github.com/expo/expo/tree/HEAD/packages/expo-sqlite) | `55.0.15` | `55.0.16` |
| [expo-task-manager](https://github.com/expo/expo/tree/HEAD/packages/expo-task-manager) | `55.0.15` | `55.0.16` |
| [react-native-screens](https://github.com/software-mansion/react-native-screens) | `4.24.0` | `4.25.0` |
| [@clerk/nextjs](https://github.com/clerk/javascript/tree/HEAD/packages/nextjs) | `7.3.3` | `7.3.5` |


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 `@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 `expo` from 55.0.23 to 55.0.24
- [Changelog](https://github.com/expo/expo/blob/main/packages/expo/CHANGELOG.md)
- [Commits](https://github.com/expo/expo/commits/HEAD/packages/expo)

Updates `expo-crypto` from 55.0.14 to 55.0.15
- [Changelog](https://github.com/expo/expo/blob/main/packages/expo-crypto/CHANGELOG.md)
- [Commits](https://github.com/expo/expo/commits/HEAD/packages/expo-crypto)

Updates `expo-device` from 55.0.16 to 55.0.17
- [Changelog](https://github.com/expo/expo/blob/main/packages/expo-device/CHANGELOG.md)
- [Commits](https://github.com/expo/expo/commits/HEAD/packages/expo-device)

Updates `expo-location` from 55.1.9 to 55.1.10
- [Changelog](https://github.com/expo/expo/blob/main/packages/expo-location/CHANGELOG.md)
- [Commits](https://github.com/expo/expo/commits/HEAD/packages/expo-location)

Updates `expo-notifications` from 55.0.22 to 55.0.23
- [Changelog](https://github.com/expo/expo/blob/main/packages/expo-notifications/CHANGELOG.md)
- [Commits](https://github.com/expo/expo/commits/HEAD/packages/expo-notifications)

Updates `expo-sqlite` from 55.0.15 to 55.0.16
- [Changelog](https://github.com/expo/expo/blob/main/packages/expo-sqlite/CHANGELOG.md)
- [Commits](https://github.com/expo/expo/commits/HEAD/packages/expo-sqlite)

Updates `expo-task-manager` from 55.0.15 to 55.0.16
- [Changelog](https://github.com/expo/expo/blob/main/packages/expo-task-manager/CHANGELOG.md)
- [Commits](https://github.com/expo/expo/commits/HEAD/packages/expo-task-manager)

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

Updates `@clerk/nextjs` from 7.3.3 to 7.3.5
- [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.3.5/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: "@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: expo
  dependency-version: 55.0.24
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: expo-crypto
  dependency-version: 55.0.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: expo-device
  dependency-version: 55.0.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: expo-location
  dependency-version: 55.1.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: expo-notifications
  dependency-version: 55.0.23
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: expo-sqlite
  dependency-version: 55.0.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: expo-task-manager
  dependency-version: 55.0.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: react-native-screens
  dependency-version: 4.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@clerk/nextjs"
  dependency-version: 7.3.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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 18, 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 18, 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 18, 2026 9:05am

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