Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 6, 2025

Bumps the all-dependencies group with 30 updates in the / directory:

Package From To
@clerk/nextjs 6.9.15 6.13.0
@livekit/components-react 2.8.0 2.9.0
@livekit/components-styles 1.1.4 1.1.5
@prisma/client 6.2.1 6.5.0
@radix-ui/react-avatar 1.1.2 1.1.3
@radix-ui/react-dialog 1.1.4 1.1.6
@radix-ui/react-dropdown-menu 2.1.4 2.1.6
@radix-ui/react-label 2.1.1 2.1.2
@radix-ui/react-popover 1.1.4 1.1.6
@radix-ui/react-scroll-area 1.2.2 1.2.3
@radix-ui/react-select 2.1.4 2.1.6
@radix-ui/react-separator 1.1.1 1.1.2
@radix-ui/react-slot 1.1.1 1.1.2
@radix-ui/react-tooltip 1.1.6 1.1.8
@tanstack/react-query 5.64.2 5.71.10
@uploadthing/react 7.1.5 7.3.0
axios 1.7.9 1.8.4
cmdk 1.0.4 1.1.1
livekit-server-sdk 2.9.7 2.11.0
next-themes 0.4.4 0.4.6
react 19.0.0 19.1.0
@types/react 19.0.10 19.1.0
react-dom 19.0.0 19.1.0
@types/react-dom 19.0.4 19.1.1
react-hook-form 7.54.2 7.55.0
uploadthing 7.4.4 7.6.0
uuid 11.0.5 11.1.0
zod 3.24.1 3.24.2
autoprefixer 10.4.20 10.4.21
typescript 5.7.3 5.8.3

Updates @clerk/nextjs from 6.9.15 to 6.13.0

Release notes

Sourced from @​clerk/nextjs's releases.

@​clerk/nextjs@​6.13.0

Minor Changes

  • Introduce a verifyWebhook() function to verify incoming Clerk webhook requests and process the payload. This function handles webhook signature verification using Svix and is now available across all backend and fullstack SDKs. (#5468) by @​wobsoriano

    To get started, install svix, which Clerk uses to verify its webhooks:

    npm install svix

    Then in your webhook route handler, import verifyWebhook() from the Next.js SDK:

    // app/api/webhooks/route.ts
    import { verifyWebhook } from '@clerk/nextjs/webhooks';
    export async function POST(req: Request) {
    try {
    const evt = await verifyWebhook(req);
    // Do something with payload
    const { id } = evt.data;
    const eventType = evt.type;
    console.log(`Received webhook with ID ${id} and event type of ${eventType}`);
    console.log('Webhook payload:', body);
    return new Response('Webhook received', { status: 200 });
    
    } catch (err) {
    console.error('Error: Could not verify webhook:', err);
    return new Response('Error: Verification error', {
    status: 400,
    });
    }
    }

    For more information on how to sync Clerk data to your app with webhooks, see our guide.

  • Redirect to tasks on auth.protect and auth.redirectToSignIn (#5440) by @​LauraBeatris

Patch Changes

... (truncated)

Changelog

Sourced from @​clerk/nextjs's changelog.

6.13.0

Minor Changes

  • Introduce a verifyWebhook() function to verify incoming Clerk webhook requests and process the payload. This function handles webhook signature verification using Svix and is now available across all backend and fullstack SDKs. (#5468) by @​wobsoriano

    To get started, install svix, which Clerk uses to verify its webhooks:

    npm install svix

    Then in your webhook route handler, import verifyWebhook() from the Next.js SDK:

    // app/api/webhooks/route.ts
    import { verifyWebhook } from '@clerk/nextjs/webhooks';
    export async function POST(req: Request) {
    try {
    const evt = await verifyWebhook(req);
    // Do something with payload
    const { id } = evt.data;
    const eventType = evt.type;
    console.log(`Received webhook with ID ${id} and event type of ${eventType}`);
    console.log('Webhook payload:', body);
    return new Response('Webhook received', { status: 200 });
    
    } catch (err) {
    console.error('Error: Could not verify webhook:', err);
    return new Response('Error: Verification error', {
    status: 400,
    });
    }
    }

    For more information on how to sync Clerk data to your app with webhooks, see our guide.

  • Redirect to tasks on auth.protect and auth.redirectToSignIn (#5440) by @​LauraBeatris

Patch Changes

... (truncated)

Commits
  • f95de07 ci(repo): Version packages (#5466)
  • fe065a9 feat(nextjs,astro,backend): Redirect to tasks on auth.protect and `auth.red...
  • cd6ee92 feat(backend,react-router,nuxt,astro,nextjs,tanstack-react-start,express,fast...
  • 7d5e361 chore(nextjs): Remove telemetry event from clerkMiddleware() (#5501)
  • 747fd01 chore(nextjs): Update dependency next to v14.2.26 (#5477)
  • 880177c fix(nextjs): Update clerkMiddleware type (#5470)
  • 45701bd ci(repo): Version packages (#5461)
  • 44c0074 chore(nextjs): Update dependency next to v14.2.25 [SECURITY] (#5418)
  • 7fac110 ci(repo): Version packages (#5452)
  • 7f6993a ci(repo): Version packages (#5444)
  • Additional commits viewable in compare view

Updates @livekit/components-react from 2.8.0 to 2.9.0

Release notes

Sourced from @​livekit/components-react's releases.

@​livekit/components-react@​2.9.0

Minor Changes

Patch Changes

@​livekit/components-react@​2.8.1

Patch Changes

Changelog

Sourced from @​livekit/components-react's changelog.

2.9.0

Minor Changes

Patch Changes

2.8.1

Patch Changes

Commits

Updates @livekit/components-styles from 1.1.4 to 1.1.5

Release notes

Sourced from @​livekit/components-styles's releases.

@​livekit/components-styles@​1.1.5

Patch Changes

Changelog

Sourced from @​livekit/components-styles's changelog.

1.1.5

Patch Changes

Commits

Updates @prisma/client from 6.2.1 to 6.5.0

Release notes

Sourced from @​prisma/client's releases.

6.5.0

Today, we are excited to share the 6.5.0 stable release 🎉

🌟 Help us spread the word about Prisma by starring the repo ☝️ or tweeting about the release. 🌟

Highlights

Databases can only be reset manually and explicitly

In previous versions, if Prisma ORM determined that a migrate command could not be applied cleanly to the underlying database, you would get a message like this one:

? We need to reset the "public" schema at "db.url.com:5432"
Do you want to continue? All data will be lost. (y/N)

While "no" was the default, we've determined that having this prompt in the first place was a mistake. In this version we're removing the prompt entirely and instead exiting with an appropriate error message.

To get the previous behavior, you will need to run prisma migrate reset directly.

Support for prisma.config.ts in Prisma Studio

We've expanded support for our prisma.config.ts file to include Prisma Studio!

To use the new config file, including the ability to connect to driver adapter enabled databases with Prisma Studio, add a studio block to your prisma.config.ts file:

import path from 'node:path'
import type { PrismaConfig } from 'prisma'
import { PrismaLibSQL } from '@prisma/adapter-libsql'
import { createClient } from '@libsql/client'
export default {
earlyAccess: true,
schema: {
kind: 'single',
filePath: './prisma/schema.prisma',
},
studio: {
adapter: async (env: unknown) => {
const connectionString = `file:./dev.db'
const libsql = createClient({
url: connectionString,
})
return new PrismaLibSQL(libsql)
},
},
} satisfies PrismaConfig

... (truncated)

Commits
  • 160e860 chore(deps): update engines to 6.5.0-73.173f8d54f8d52e692c7e27e72a88314ec7aef...
  • 1bc2337 chore(deps): update engines to 6.5.0-71.45af6d605e0f0ead4e63bb8e7624a6eadf930...
  • 5e5a2b8 chore(deps-dev): bump rimraf from 3.0.2 to 6.0.1 (#26522)
  • 4bb2040 chore(deps-dev): bump @​inquirer/prompts from 7.3.2 to 7.3.3 (#26563)
  • d44d9ea feat(instrumentation): add ability to filter span by PrismaLayerType (#20113)
  • 31381be chore(deps): update engines to 6.5.0-70.d3fd11690486b166608fd9d9091a0e94f299a...
  • 11aa623 chore(deps): update engines to 6.5.0-69.3f67705e4a5926f5487f51bfad02d128528ee...
  • bf38a15 chore(deps): update engines to 6.5.0-67.b2f6fb29daaeacb2c633f1d666d9d18555356...
  • 49489c6 chore(deps): update engines to 6.5.0-66.d8cf42b3d1a205c65d885c779ca30b63913dd...
  • 3c6da2c chore(deps): update engines to 6.5.0-64.e1a176ceb6ec2db27f00a5ae2bc5cb7dd6e89...
  • Additional commits viewable in compare view

Updates @radix-ui/react-avatar from 1.1.2 to 1.1.3

Commits

Updates @radix-ui/react-dialog from 1.1.4 to 1.1.6

Commits

Updates @radix-ui/react-dropdown-menu from 2.1.4 to 2.1.6

Commits

Updates @radix-ui/react-label from 2.1.1 to 2.1.2

Commits

Updates @radix-ui/react-popover from 1.1.4 to 1.1.6

Commits

Updates @radix-ui/react-scroll-area from 1.2.2 to 1.2.3

Commits

Updates @radix-ui/react-select from 2.1.4 to 2.1.6

Commits

Updates @radix-ui/react-separator from 1.1.1 to 1.1.2

Commits

Updates @radix-ui/react-slot from 1.1.1 to 1.1.2

Commits

Updates @radix-ui/react-tooltip from 1.1.6 to 1.1.8

Commits

Updates @tanstack/react-query from 5.64.2 to 5.71.10

Release notes

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

v5.71.10

Version 5.71.10 - 4/4/25, 12:44 PM

Changes

Refactor

  • query-core: remove double negative (#8952) (d2768d3) by novice0840

Docs

  • fix contributing link (#8954) (9556576) by marcelas5

Packages

  • @​tanstack/query-core@​5.71.10
  • @​tanstack/query-broadcast-client-experimental@​5.71.10
  • @​tanstack/query-persist-client-core@​5.71.10
  • @​tanstack/query-sync-storage-persister@​5.71.10
  • @​tanstack/react-query@​5.71.10
  • @​tanstack/react-query-devtools@​5.71.10
  • @​tanstack/react-query-persist-client@​5.71.10
  • @​tanstack/react-query-next-experimental@​5.71.10
  • @​tanstack/solid-query@​5.71.10
  • @​tanstack/solid-query-devtools@​5.71.10
  • @​tanstack/solid-query-persist-client@​5.71.10
  • @​tanstack/svelte-query@​5.71.10
  • @​tanstack/svelte-query-devtools@​5.71.10
  • @​tanstack/svelte-query-persist-client@​5.71.10
  • @​tanstack/vue-query@​5.71.10
  • @​tanstack/vue-query-devtools@​5.71.10
  • @​tanstack/angular-query-experimental@​5.71.10
  • @​tanstack/query-async-storage-persister@​5.71.10
  • @​tanstack/angular-query-devtools-experimental@​5.71.10

v5.71.9

Version 5.71.9 - 4/3/25, 9:57 PM

Changes

Fix

  • solid-query: deprecate create in favor of use, and add full docs (#8950) (d040eaa) by Birk Skyum

Packages

  • @​tanstack/solid-query@​5.71.9
  • @​tanstack/solid-query-persist-client@​5.71.9
  • @​tanstack/solid-query-devtools@​5.71.9

... (truncated)

Commits
  • 1bf2df6 release: v5.71.10
  • 0972942 release: v5.71.5
  • 8b1eff1 chore(deps): replace dependency npm-run-all with npm-run-all2 ^5.0.0 (#8602)
  • 64368bf release: v5.71.3
  • 8e27629 update devDeps to vite 6 (#8896)
  • 4be5740 test(react-query): resolve ESLint typescript-eslint/require-await warnings (#...
  • 78c8a0c test(react-query): resolve ESLint typescript-eslint/require-await warnings (#...
  • 815ff24 test(react-query): resolve ESLint typescript-eslint/require-await warnings (#...
  • 4117d68 test(react-query): resolve ESLint typescript-eslint/require-await warnings (#...
  • 3799d87 test(react-query): resolve ESLint typescript-eslint/require-await warnings (#...
  • Additional commits viewable in compare view

Updates @uploadthing/react from 7.1.5 to 7.3.0

Updates axios from 1.7.9 to 1.8.4

Release notes

Sourced from axios's releases.

Release v1.8.4

Release notes:

Bug Fixes

  • buildFullPath: handle allowAbsoluteUrls: false without baseURL (#6833) (f10c2e0)

Contributors to this release

Release v1.8.3

Release notes:

Bug Fixes

  • add missing type for allowAbsoluteUrls (#6818) (10fa70e)
  • xhr/fetch: pass allowAbsoluteUrls to buildFullPath in xhr and fetch adapters (#6814) (ec159e5)

Contributors to this release

Release v1.8.2

Release notes:

Bug Fixes

  • http-adapter: add allowAbsoluteUrls to path building (#6810) (fb8eec2)

Contributors to this release

Release v1.8.1

Release notes:

Bug Fixes

  • utils: move generateString to platform utils to avoid importing crypto module into client builds; (#6789) (36a5a62)

Contributors to this release

Release v1.8.0

Release notes:

Bug Fixes

  • examples: application crashed when navigating examples in browser (#5938) (1260ded)
  • missing word in SUPPORT_QUESTION.yml (#6757) (1f890b1)
  • utils: replace getRandomValues with crypto module (#6788) (23a25af)

... (truncated)

Changelog

Sourced from axios's changelog.

1.8.4 (2025-03-19)

Bug Fixes

  • buildFullPath: handle allowAbsoluteUrls: false without baseURL (#6833) (f10c2e0)

Contributors to this release

1.8.3 (2025-03-10)

Bug Fixes

  • add missing type for allowAbsoluteUrls (#6818) (10fa70e)
  • xhr/fetch: pass allowAbsoluteUrls to buildFullPath in xhr and fetch adapters (#6814) (ec159e5)

Contributors to this release

1.8.2 (2025-03-07)

Bug Fixes

  • http-adapter: add allowAbsoluteUrls to path building (#6810) (fb8eec2)

Contributors to this release

1.8.1 (2025-02-26)

Bug Fixes

  • utils: move generateString to platform utils to avoid importing crypto module into client builds; (#6789) (36a5a62)

Contributors to this release

1.8.0 (2025-02-25)

... (truncated)

Commits
  • 9f6f97b chore(release): v1.8.4 (#6844)
  • f10c2e0 fix(buildFullPath): handle allowAbsoluteUrls: false without baseURL (#6833)
  • 1e6632c chore(deps): bump tj-actions/changed-files in the github-actions group (#6838)
  • 39ec206 chore(release): v1.8.3 (#6819)
  • 10fa70e fix: add missing type for allowAbsoluteUrls (#6818)
  • 7821ef9 docs: update readme to include bun install (#6811)
  • ec159e5 fix(xhr/fetch): pass allowAbsoluteUrls to buildFullPath in xhr and `fet...
  • a9f7689 chore(release): v1.8.2 (#6812)
  • fb8eec2 fix(http-adapter): add allowAbsoluteUrls to path building (#6810)
  • 9812045 chore(sponsor): update sponsor block (#6804)
  • Additional commits viewable in compare view

Updates cmdk from 1.0.4 to 1.1.1

Release notes

Sourced from cmdk's releases.

v1.1.1

What's Changed

New Contributors

Full Changelog: pacocoursey/cmdk@v1.1.0...v1.1.1

v1.1.0

What's Changed

New Contributors

Full Changelog: pacocoursey/cmdk@v1.0.4...v1.1.0

Commits

Updates livekit-client from 2.8.1 to 2.9.9

Release notes

Sourced from livekit-client's releases.

v2.9.9

Patch Changes

v2.9.8

Patch Changes

  • Use string instead of passing url object to WebSocket constructor - #1443 (@​davidliu)

v2.9.7

Patch Changes

v2.9.6

Patch Changes

v2.9.5

Patch Changes

  • fix: properly remove text stream controllers on stream close - #1422 (@​lukasIO)

  • Reject publishing with insufficient permissions present - #1418 (@​lukasIO)

v2.9.4

Patch Changes

v2.9.3

Patch Changes

... (truncated)

Changelog

Sourced from livekit-client's changelog.

2.9.9

Patch Changes

2.9.8

Patch Changes

  • Use string instead of passing url object to WebSocket constructor - #1443 (@​davidliu)

2.9.7

Patch Changes

2.9.6

Patch Changes

2.9.5

Patch Changes

  • fix: properly remove text stream controllers on stream close - #1422 (@​lukasIO)

  • Reject publishing with insufficient permissions present - #1418 (@​lukasIO)

2.9.4

Patch Changes

... (truncated)

Commits

Updates livekit-server-sdk from 2.9.7 to 2.11.0

Release notes

Sourced from livekit-server-sdk's releases.

livekit-server-sdk@2.11.0

Minor Changes

Patch Changes

  • chore: Add a clock tolerance parameter to support clock skew for webhooks - #442 (@​Wundero)

livekit-server-sdk@2.10.2

Patch Changes

livekit-server-sdk@2.10.1

Patch Changes

livekit-server-sdk@2.10.0

Minor Changes

  • Improve error insight for twirp related requests, changes the error signature to custom TwirpError - #390 (@​lukasIO)

Patch Changes

Commits
  • 8a867b0 Version Packages (#446)
  • 449d584 Update bug fix on Video stream memory leak to be a patch (#453)
  • 3619521 [feat:webhooks] Add support for customizing JWT clock tolerance for webhook v...
  • 1c6e805 Fix Video Stream Memory Leak (#448)
  • a6ac582 Allow sender identity to be passed in streamText method (#447)
  • a56c174 Add ForwardParticipant method to room service (#440)
  • 65a14b2 fix(deps): update dependency @​livekit/protocol to v1.35.0 (#425)
  • 1455057 Version Packages (#438)
  • ca5abfb fix(rtc): never panic on invalid handle (#439)
  • 9bab960 fix(rtc): error on closed source for video as well (#437)
  • Additional commits viewable in compare view

Updates lucide-react from 0.473.0 to 0.476.0

Release notes

Sourced from lucide-react's releases.

Fixes and new icons 0.476.0

Fixes

New icons 🎨

Modified Icons 🔨

New icons 0.475.0

New icons 🎨

…37 updates

Bumps the all-dependencies group with 30 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@clerk/nextjs](https://github.com/clerk/javascript/tree/HEAD/packages/nextjs) | `6.9.15` | `6.13.0` |
| [@livekit/components-react](https://github.com/livekit/components-js/tree/HEAD/packages/react) | `2.8.0` | `2.9.0` |
| [@livekit/components-styles](https://github.com/livekit/components-js/tree/HEAD/packages/styles) | `1.1.4` | `1.1.5` |
| [@prisma/client](https://github.com/prisma/prisma/tree/HEAD/packages/client) | `6.2.1` | `6.5.0` |
| [@radix-ui/react-avatar](https://github.com/radix-ui/primitives) | `1.1.2` | `1.1.3` |
| [@radix-ui/react-dialog](https://github.com/radix-ui/primitives) | `1.1.4` | `1.1.6` |
| [@radix-ui/react-dropdown-menu](https://github.com/radix-ui/primitives) | `2.1.4` | `2.1.6` |
| [@radix-ui/react-label](https://github.com/radix-ui/primitives) | `2.1.1` | `2.1.2` |
| [@radix-ui/react-popover](https://github.com/radix-ui/primitives) | `1.1.4` | `1.1.6` |
| [@radix-ui/react-scroll-area](https://github.com/radix-ui/primitives) | `1.2.2` | `1.2.3` |
| [@radix-ui/react-select](https://github.com/radix-ui/primitives) | `2.1.4` | `2.1.6` |
| [@radix-ui/react-separator](https://github.com/radix-ui/primitives) | `1.1.1` | `1.1.2` |
| [@radix-ui/react-slot](https://github.com/radix-ui/primitives) | `1.1.1` | `1.1.2` |
| [@radix-ui/react-tooltip](https://github.com/radix-ui/primitives) | `1.1.6` | `1.1.8` |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.64.2` | `5.71.10` |
| @uploadthing/react | `7.1.5` | `7.3.0` |
| [axios](https://github.com/axios/axios) | `1.7.9` | `1.8.4` |
| [cmdk](https://github.com/pacocoursey/cmdk/tree/HEAD/cmdk) | `1.0.4` | `1.1.1` |
| [livekit-server-sdk](https://github.com/livekit/server-sdk-js) | `2.9.7` | `2.11.0` |
| [next-themes](https://github.com/pacocoursey/next-themes) | `0.4.4` | `0.4.6` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.0.0` | `19.1.0` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.0.10` | `19.1.0` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.0.0` | `19.1.0` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.0.4` | `19.1.1` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.54.2` | `7.55.0` |
| uploadthing | `7.4.4` | `7.6.0` |
| [uuid](https://github.com/uuidjs/uuid) | `11.0.5` | `11.1.0` |
| [zod](https://github.com/colinhacks/zod) | `3.24.1` | `3.24.2` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.20` | `10.4.21` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.7.3` | `5.8.3` |



Updates `@clerk/nextjs` from 6.9.15 to 6.13.0
- [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@6.13.0/packages/nextjs)

Updates `@livekit/components-react` from 2.8.0 to 2.9.0
- [Release notes](https://github.com/livekit/components-js/releases)
- [Changelog](https://github.com/livekit/components-js/blob/main/packages/react/CHANGELOG.md)
- [Commits](https://github.com/livekit/components-js/commits/@livekit/components-react@2.9.0/packages/react)

Updates `@livekit/components-styles` from 1.1.4 to 1.1.5
- [Release notes](https://github.com/livekit/components-js/releases)
- [Changelog](https://github.com/livekit/components-js/blob/main/packages/styles/CHANGELOG.md)
- [Commits](https://github.com/livekit/components-js/commits/@livekit/components-styles@1.1.5/packages/styles)

Updates `@prisma/client` from 6.2.1 to 6.5.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/6.5.0/packages/client)

Updates `@radix-ui/react-avatar` from 1.1.2 to 1.1.3
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-dialog` from 1.1.4 to 1.1.6
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-dropdown-menu` from 2.1.4 to 2.1.6
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-label` from 2.1.1 to 2.1.2
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-popover` from 1.1.4 to 1.1.6
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-scroll-area` from 1.2.2 to 1.2.3
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-select` from 2.1.4 to 2.1.6
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-separator` from 1.1.1 to 1.1.2
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-slot` from 1.1.1 to 1.1.2
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-tooltip` from 1.1.6 to 1.1.8
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@tanstack/react-query` from 5.64.2 to 5.71.10
- [Release notes](https://github.com/TanStack/query/releases)
- [Commits](https://github.com/TanStack/query/commits/v5.71.10/packages/react-query)

Updates `@uploadthing/react` from 7.1.5 to 7.3.0

Updates `axios` from 1.7.9 to 1.8.4
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.7.9...v1.8.4)

Updates `cmdk` from 1.0.4 to 1.1.1
- [Release notes](https://github.com/pacocoursey/cmdk/releases)
- [Commits](https://github.com/pacocoursey/cmdk/commits/v1.1.1/cmdk)

Updates `livekit-client` from 2.8.1 to 2.9.9
- [Release notes](https://github.com/livekit/client-sdk-js/releases)
- [Changelog](https://github.com/livekit/client-sdk-js/blob/main/CHANGELOG.md)
- [Commits](livekit/client-sdk-js@v2.8.1...v2.9.9)

Updates `livekit-server-sdk` from 2.9.7 to 2.11.0
- [Release notes](https://github.com/livekit/server-sdk-js/releases)
- [Commits](https://github.com/livekit/server-sdk-js/compare/livekit-server-sdk@2.9.7...livekit-server-sdk@2.11.0)

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

Updates `next` from 15.1.5 to 15.2.4
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v15.1.5...v15.2.4)

Updates `next-themes` from 0.4.4 to 0.4.6
- [Release notes](https://github.com/pacocoursey/next-themes/releases)
- [Commits](pacocoursey/next-themes@v0.4.4...v0.4.6)

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

Updates `@types/react` from 19.0.10 to 19.1.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

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

Updates `@types/react-dom` from 19.0.4 to 19.1.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `react-hook-form` from 7.54.2 to 7.55.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.54.2...v7.55.0)

Updates `uploadthing` from 7.4.4 to 7.6.0

Updates `uuid` from 11.0.5 to 11.1.0
- [Release notes](https://github.com/uuidjs/uuid/releases)
- [Changelog](https://github.com/uuidjs/uuid/blob/main/CHANGELOG.md)
- [Commits](uuidjs/uuid@v11.0.5...v11.1.0)

Updates `zod` from 3.24.1 to 3.24.2
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Changelog](https://github.com/colinhacks/zod/blob/main/CHANGELOG.md)
- [Commits](colinhacks/zod@v3.24.1...v3.24.2)

Updates `@types/node` from 22.10.7 to 22.13.5
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@types/react` from 19.0.7 to 19.1.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `@types/react-dom` from 19.0.3 to 19.1.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `autoprefixer` from 10.4.20 to 10.4.21
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
- [Commits](postcss/autoprefixer@10.4.20...10.4.21)

Updates `eslint-config-next` from 15.1.5 to 15.2.0
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v15.2.0/packages/eslint-config-next)

Updates `postcss` from 8.5.1 to 8.5.3
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.5.1...8.5.3)

Updates `prisma` from 6.2.1 to 6.4.1
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/6.4.1/packages/cli)

Updates `typescript` from 5.7.3 to 5.8.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](https://github.com/microsoft/TypeScript/commits)

---
updated-dependencies:
- dependency-name: "@clerk/nextjs"
  dependency-version: 6.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@livekit/components-react"
  dependency-version: 2.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@livekit/components-styles"
  dependency-version: 1.1.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@prisma/client"
  dependency-version: 6.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@radix-ui/react-avatar"
  dependency-version: 1.1.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@radix-ui/react-dialog"
  dependency-version: 1.1.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@radix-ui/react-dropdown-menu"
  dependency-version: 2.1.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@radix-ui/react-label"
  dependency-version: 2.1.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@radix-ui/react-popover"
  dependency-version: 1.1.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@radix-ui/react-scroll-area"
  dependency-version: 1.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@radix-ui/react-select"
  dependency-version: 2.1.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@radix-ui/react-separator"
  dependency-version: 1.1.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@radix-ui/react-slot"
  dependency-version: 1.1.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@radix-ui/react-tooltip"
  dependency-version: 1.1.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@tanstack/react-query"
  dependency-version: 5.71.10
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@uploadthing/react"
  dependency-version: 7.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: axios
  dependency-version: 1.8.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: cmdk
  dependency-version: 1.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: livekit-client
  dependency-version: 2.9.9
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: livekit-server-sdk
  dependency-version: 2.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: lucide-react
  dependency-version: 0.476.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: next
  dependency-version: 15.2.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: next-themes
  dependency-version: 0.4.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: react
  dependency-version: 19.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@types/react"
  dependency-version: 19.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: react-dom
  dependency-version: 19.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@types/react-dom"
  dependency-version: 19.1.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: react-hook-form
  dependency-version: 7.55.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: uploadthing
  dependency-version: 7.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: uuid
  dependency-version: 11.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: zod
  dependency-version: 3.24.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@types/node"
  dependency-version: 22.13.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@types/react"
  dependency-version: 19.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@types/react-dom"
  dependency-version: 19.1.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: autoprefixer
  dependency-version: 10.4.21
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: eslint-config-next
  dependency-version: 15.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: postcss
  dependency-version: 8.5.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: prisma
  dependency-version: 6.4.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: typescript
  dependency-version: 5.8.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from RicardoGEsteves April 6, 2025 16:50
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code minor labels Apr 6, 2025
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 minor

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant