Skip to content

Bump the all-dependencies group across 1 directory with 47 updates #14

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Mar 16, 2025

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

Package From To
@clerk/nextjs 6.2.1 6.12.5
@livekit/components-react 2.6.10 2.8.1
@prisma/client 6.0.1 6.5.0
@radix-ui/react-avatar 1.1.1 1.1.3
@radix-ui/react-checkbox 1.1.3 1.1.4
@radix-ui/react-dialog 1.1.2 1.1.6
@radix-ui/react-dropdown-menu 2.1.2 2.1.6
@radix-ui/react-label 2.1.0 2.1.2
@radix-ui/react-popover 1.1.2 1.1.6
@radix-ui/react-progress 1.1.1 1.1.2
@radix-ui/react-scroll-area 1.2.0 1.2.3
@radix-ui/react-select 2.1.2 2.1.6
@radix-ui/react-separator 1.1.0 1.1.2
@radix-ui/react-slot 1.1.0 1.1.2
@radix-ui/react-tabs 1.1.2 1.1.3
@radix-ui/react-toast 1.2.4 1.2.6
@radix-ui/react-tooltip 1.1.3 1.1.8
@supabase/supabase-js 2.47.8 2.49.1
@tanstack/react-query 5.59.20 5.68.0
@uploadthing/react 7.1.1 7.3.0
@vercel/analytics 1.4.1 1.5.0
axios 1.7.7 1.8.3
class-variance-authority 0.7.0 0.7.1
cmdk 1.0.4 1.1.1
exifreader 4.26.0 4.26.2
groq-sdk 0.9.1 0.16.0
livekit-server-sdk 2.8.1 2.10.2
lucide-react 0.456.0 0.482.0
next 15.0.3 15.2.2
next-themes 0.4.3 0.4.6
openai 4.77.0 4.87.3
react-dropzone 14.3.5 14.3.8
react-hook-form 7.54.1 7.54.2
react-json-tree 0.19.0 0.20.0
svix 1.44.0 1.61.4
uploadthing 7.3.0 7.5.2
uuid 11.0.2 11.1.0
zod 3.23.8 3.24.2
zustand 5.0.1 5.0.3
@types/node 22.10.2 22.13.10
eslint 9.14.0 9.22.0
eslint-config-next 15.0.3 15.2.2
postcss 8.4.47 8.5.3
prisma 6.0.1 6.5.0
typescript 5.6.3 5.8.2

Updates @clerk/nextjs from 6.2.1 to 6.12.5

Release notes

Sourced from @​clerk/nextjs's releases.

@​clerk/nextjs@​6.12.5

Patch Changes

@​clerk/nextjs@​6.12.4

Patch Changes

@​clerk/nextjs@​6.12.3

Patch Changes

@​clerk/nextjs@​6.12.2

Patch Changes

@​clerk/nextjs@​6.12.1

Patch Changes

Changelog

Sourced from @​clerk/nextjs's changelog.

6.12.5

Patch Changes

6.12.4

Patch Changes

6.12.3

Patch Changes

6.12.2

Patch Changes

6.12.1

Patch Changes

... (truncated)

Commits

Updates @livekit/components-react from 2.6.10 to 2.8.1

Release notes

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

@​livekit/components-react@​2.8.1

Patch Changes

@​livekit/components-react@​2.8.0

Minor Changes

Patch Changes

@​livekit/components-react@​2.7.0

Minor Changes

Patch Changes

@​livekit/components-react@​2.6.11

Patch Changes

Changelog

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

2.8.1

Patch Changes

2.8.0

Minor Changes

Patch Changes

2.7.0

Minor Changes

Patch Changes

2.6.11

Patch Changes

Commits

Updates @prisma/client from 6.0.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.1 to 1.1.3

Commits

Updates @radix-ui/react-checkbox from 1.1.3 to 1.1.4

Commits

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

Commits

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

Commits

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

Commits
Maintainer changes

This version was pushed to npm by chancestrickland, a new releaser for @​radix-ui/react-label since your current version.


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

Commits

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

Commits

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

Commits

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

Commits

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

Commits
Maintainer changes

This version was pushed to npm by chancestrickland, a new releaser for @​radix-ui/react-separator since your current version.


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

Commits
Maintainer changes

This version was pushed to npm by chancestrickland, a new releaser for @​radix-ui/react-slot since your current version.


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

Commits

Updates @radix-ui/react-toast from 1.2.4 to 1.2.6

Commits

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

Commits

Updates @radix-ui/react-visually-hidden from 1.1.0 to 1.1.2

Commits
Maintainer changes

This version was pushed to npm by chancestrickland, a new releaser for @​radix-ui/react-visually-hidden since your current version.


Updates @supabase/supabase-js from 2.47.8 to 2.49.1

Release notes

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

v2.49.1

2.49.1 (2025-02-24)

Bug Fixes

  • deps: upgrade postgrest-js 1.19.2 (3f01c3f)

v2.49.0

2.49.0 (2025-02-24)

Features

v2.48.1

2.48.1 (2025-01-24)

Bug Fixes

v2.48.0

2.48.0 (2025-01-20)

Features

  • deps: bump postgrest-js to 1.18.0 (4397e57)

v2.47.16

2.47.16 (2025-01-17)

Bug Fixes

  • 🐛 Fix nullish coalescing operator issue in hasCustomAuthorizationHeader (e8cffda), closes #1338

v2.47.15

2.47.15 (2025-01-16)

Bug Fixes

  • Make the return value of accessToken nullable (f8e48ff)

v2.47.14

2.47.14 (2025-01-15)

... (truncated)

Commits
  • fceca48 Merge pull request #1369 from supabase/avallete/chore-bump-postgrest-js-1-19-2
  • a9ece9a feat: bump @supabase/auth-js to 2.68.0 (#1359)
  • 3f01c3f fix(deps): upgrade postgrest-js 1.19.2
  • 3316f24 Merge pull request #1361 from supabase/fix/chore-bump-postgrest-js-1-18-1
  • da9e26d fix(types): bump postgrest-js 1.18.1
  • 07cf12d Merge pull request #1358 from supabase/chore/bump-postgrest-js-1-18-0
  • 4397e57 feat(deps): bump postgrest-js to 1.18.0
  • 76217a4 Merge pull request #1344 from raghavyuva/fix/nullish-coalescing-operator
  • a50725d Merge pull request #1332 from supabase/fix/nullable-accessToken
  • 1661420 Merge pull request #1355 from supabase/chore/bump-postgrest-js-1-17-11
  • Additional commits viewable in compare view

Updates @tanstack/react-query from 5.59.20 to 5.68.0

Release notes

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

v5.68.0

Version 5.68.0 - 3/14/25, 10:00 AM

Changes

Feat

  • eslint-plugin-query: enhance no-rest-destructuring rule to detect spread operations (#8802) (796032d) by Eliya Cohen

Test

Docs

  • Fix broken links in query-options.md (#8800) (d7f4cb0) by @​dngur9801
  • Fix broken links on ssr.md (#8792) (edbb304) by Julien Piron

Packages

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

v5.67.3

Version 5.67.3 - 3/11/25, 5:19 PM

Changes

Refactor

  • types: restore missing readonly (#8783) (79496dd) by Yoomin Kang

... (truncated)

Commits

Updates @uploadthing/react from 7.1.1 to 7.3.0

Updates @vercel/analytics from 1.4.1 to 1.5.0

Release notes

Sourced from @​vercel/analytics's releases.

1.5.0

What's Changed

  • fix: next/jest does not support import.meta by @​feugy in #162
  • feat: support configurable deployment basepath by @​feugy in #158

Full Changelog: vercel/analytics@1.4.1...1.5.0

1.5.0-canary.3

What's Changed

Full Changelog: vercel/analytics@1.4.1...1.5.0-canary.3

1.5.0-canary.2

What's Changed

Full Changelog: vercel/analytics@1.4.1...1.5.0-canary.2

1.5.0-canary.1

What's Changed

New Contributors

Full Changelog: vercel/analytics@1.4.0...1.5.0-canary.1

Commits

Updates axios from 1.7.7 to 1.8.3

Release notes

Sourced from axios's releases.

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)

Features

Reverts

... (truncated)

Changelog

Sourced from axios's changelog.

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)

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)

Features

... (truncated)

Commits
  • 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)
  • 72acf75 chore(sponsor): update sponsor block (#6794)
  • 2e64afd chore(release): v1.8.1 (#6800)
  • 36a5a62 fix(utils): move generateString to platform utils to avoid importing crypto...
  • Additional commits viewable in compare view

Updates class-variance-authority from 0.7.0 to 0.7.1

Release notes

Sourced from class-variance-authority's releases.

v0.7.1

What's Changed

New Contributors

Full Changelog: joe-bell/cva@v0.7.0...v0.7.1

Commits

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

Description has been truncated

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

| Package | From | To |
| --- | --- | --- |
| [@clerk/nextjs](https://github.com/clerk/javascript/tree/HEAD/packages/nextjs) | `6.2.1` | `6.12.5` |
| [@livekit/components-react](https://github.com/livekit/components-js/tree/HEAD/packages/react) | `2.6.10` | `2.8.1` |
| [@prisma/client](https://github.com/prisma/prisma/tree/HEAD/packages/client) | `6.0.1` | `6.5.0` |
| [@radix-ui/react-avatar](https://github.com/radix-ui/primitives) | `1.1.1` | `1.1.3` |
| [@radix-ui/react-checkbox](https://github.com/radix-ui/primitives) | `1.1.3` | `1.1.4` |
| [@radix-ui/react-dialog](https://github.com/radix-ui/primitives) | `1.1.2` | `1.1.6` |
| [@radix-ui/react-dropdown-menu](https://github.com/radix-ui/primitives) | `2.1.2` | `2.1.6` |
| [@radix-ui/react-label](https://github.com/radix-ui/primitives) | `2.1.0` | `2.1.2` |
| [@radix-ui/react-popover](https://github.com/radix-ui/primitives) | `1.1.2` | `1.1.6` |
| [@radix-ui/react-progress](https://github.com/radix-ui/primitives) | `1.1.1` | `1.1.2` |
| [@radix-ui/react-scroll-area](https://github.com/radix-ui/primitives) | `1.2.0` | `1.2.3` |
| [@radix-ui/react-select](https://github.com/radix-ui/primitives) | `2.1.2` | `2.1.6` |
| [@radix-ui/react-separator](https://github.com/radix-ui/primitives) | `1.1.0` | `1.1.2` |
| [@radix-ui/react-slot](https://github.com/radix-ui/primitives) | `1.1.0` | `1.1.2` |
| [@radix-ui/react-tabs](https://github.com/radix-ui/primitives) | `1.1.2` | `1.1.3` |
| [@radix-ui/react-toast](https://github.com/radix-ui/primitives) | `1.2.4` | `1.2.6` |
| [@radix-ui/react-tooltip](https://github.com/radix-ui/primitives) | `1.1.3` | `1.1.8` |
| [@supabase/supabase-js](https://github.com/supabase/supabase-js) | `2.47.8` | `2.49.1` |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.59.20` | `5.68.0` |
| @uploadthing/react | `7.1.1` | `7.3.0` |
| [@vercel/analytics](https://github.com/vercel/analytics/tree/HEAD/packages/web) | `1.4.1` | `1.5.0` |
| [axios](https://github.com/axios/axios) | `1.7.7` | `1.8.3` |
| [class-variance-authority](https://github.com/joe-bell/cva) | `0.7.0` | `0.7.1` |
| [cmdk](https://github.com/pacocoursey/cmdk/tree/HEAD/cmdk) | `1.0.4` | `1.1.1` |
| [exifreader](https://github.com/mattiasw/ExifReader) | `4.26.0` | `4.26.2` |
| [groq-sdk](https://github.com/groq/groq-typescript) | `0.9.1` | `0.16.0` |
| [livekit-server-sdk](https://github.com/livekit/server-sdk-js) | `2.8.1` | `2.10.2` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.456.0` | `0.482.0` |
| [next](https://github.com/vercel/next.js) | `15.0.3` | `15.2.2` |
| [next-themes](https://github.com/pacocoursey/next-themes) | `0.4.3` | `0.4.6` |
| [openai](https://github.com/openai/openai-node) | `4.77.0` | `4.87.3` |
| [react-dropzone](https://github.com/react-dropzone/react-dropzone) | `14.3.5` | `14.3.8` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.54.1` | `7.54.2` |
| [react-json-tree](https://github.com/reduxjs/redux-devtools) | `0.19.0` | `0.20.0` |
| [svix](https://github.com/svix/svix-libs) | `1.44.0` | `1.61.4` |
| uploadthing | `7.3.0` | `7.5.2` |
| [uuid](https://github.com/uuidjs/uuid) | `11.0.2` | `11.1.0` |
| [zod](https://github.com/colinhacks/zod) | `3.23.8` | `3.24.2` |
| [zustand](https://github.com/pmndrs/zustand) | `5.0.1` | `5.0.3` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.10.2` | `22.13.10` |
| [eslint](https://github.com/eslint/eslint) | `9.14.0` | `9.22.0` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `15.0.3` | `15.2.2` |
| [postcss](https://github.com/postcss/postcss) | `8.4.47` | `8.5.3` |
| [prisma](https://github.com/prisma/prisma/tree/HEAD/packages/cli) | `6.0.1` | `6.5.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.6.3` | `5.8.2` |



Updates `@clerk/nextjs` from 6.2.1 to 6.12.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/[email protected]/packages/nextjs)

Updates `@livekit/components-react` from 2.6.10 to 2.8.1
- [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/[email protected]/packages/react)

Updates `@prisma/client` from 6.0.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.1 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-checkbox` from 1.1.3 to 1.1.4
- [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.2 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.2 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.0 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.2 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-progress` 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-scroll-area` from 1.2.0 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.2 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.0 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.0 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-tabs` 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-toast` from 1.2.4 to 1.2.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-tooltip` from 1.1.3 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 `@radix-ui/react-visually-hidden` from 1.1.0 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 `@supabase/supabase-js` from 2.47.8 to 2.49.1
- [Release notes](https://github.com/supabase/supabase-js/releases)
- [Changelog](https://github.com/supabase/supabase-js/blob/master/RELEASE.md)
- [Commits](supabase/supabase-js@v2.47.8...v2.49.1)

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

Updates `@uploadthing/react` from 7.1.1 to 7.3.0

Updates `@vercel/analytics` from 1.4.1 to 1.5.0
- [Release notes](https://github.com/vercel/analytics/releases)
- [Commits](https://github.com/vercel/analytics/commits/1.5.0/packages/web)

Updates `axios` from 1.7.7 to 1.8.3
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.7.7...v1.8.3)

Updates `class-variance-authority` from 0.7.0 to 0.7.1
- [Release notes](https://github.com/joe-bell/cva/releases)
- [Commits](joe-bell/cva@v0.7.0...v0.7.1)

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 `exifreader` from 4.26.0 to 4.26.2
- [Release notes](https://github.com/mattiasw/ExifReader/releases)
- [Commits](mattiasw/ExifReader@v4.26.0...v4.26.2)

Updates `groq-sdk` from 0.9.1 to 0.16.0
- [Release notes](https://github.com/groq/groq-typescript/releases)
- [Changelog](https://github.com/groq/groq-typescript/blob/main/CHANGELOG.md)
- [Commits](groq/groq-typescript@v0.9.1...v0.16.0)

Updates `livekit-client` from 2.6.0 to 2.9.7
- [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.6.0...v2.9.7)

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

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

Updates `next` from 15.0.3 to 15.2.2
- [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.0.3...v15.2.2)

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

Updates `openai` from 4.77.0 to 4.87.3
- [Release notes](https://github.com/openai/openai-node/releases)
- [Changelog](https://github.com/openai/openai-node/blob/master/CHANGELOG.md)
- [Commits](openai/openai-node@v4.77.0...v4.87.3)

Updates `react-dropzone` from 14.3.5 to 14.3.8
- [Release notes](https://github.com/react-dropzone/react-dropzone/releases)
- [Commits](react-dropzone/react-dropzone@v14.3.5...v14.3.8)

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

Updates `react-json-tree` from 0.19.0 to 0.20.0
- [Release notes](https://github.com/reduxjs/redux-devtools/releases)
- [Commits](https://github.com/reduxjs/redux-devtools/commits)

Updates `svix` from 1.44.0 to 1.61.4
- [Release notes](https://github.com/svix/svix-libs/releases)
- [Changelog](https://github.com/svix/svix-webhooks/blob/main/ChangeLog.md)
- [Commits](svix/svix-webhooks@v1.44.0...v1.61.4)

Updates `uploadthing` from 7.3.0 to 7.5.2

Updates `uuid` from 11.0.2 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.2...v11.1.0)

Updates `zod` from 3.23.8 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.23.8...v3.24.2)

Updates `zustand` from 5.0.1 to 5.0.3
- [Release notes](https://github.com/pmndrs/zustand/releases)
- [Commits](pmndrs/zustand@v5.0.1...v5.0.3)

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

Updates `eslint` from 9.14.0 to 9.22.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v9.14.0...v9.22.0)

Updates `eslint-config-next` from 15.0.3 to 15.2.2
- [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.2/packages/eslint-config-next)

Updates `postcss` from 8.4.47 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.4.47...8.5.3)

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

Updates `typescript` from 5.6.3 to 5.8.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.6.3...v5.8.2)

---
updated-dependencies:
- dependency-name: "@clerk/nextjs"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@livekit/components-react"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@prisma/client"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@radix-ui/react-avatar"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@radix-ui/react-checkbox"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@radix-ui/react-dialog"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@radix-ui/react-dropdown-menu"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@radix-ui/react-label"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@radix-ui/react-popover"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@radix-ui/react-progress"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@radix-ui/react-scroll-area"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@radix-ui/react-select"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@radix-ui/react-separator"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@radix-ui/react-slot"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@radix-ui/react-tabs"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@radix-ui/react-toast"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@radix-ui/react-tooltip"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@radix-ui/react-visually-hidden"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@supabase/supabase-js"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@tanstack/react-query"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@uploadthing/react"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@vercel/analytics"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: axios
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: class-variance-authority
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: cmdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: exifreader
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: groq-sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: livekit-client
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: livekit-server-sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: lucide-react
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: next
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: next-themes
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: openai
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: react-dropzone
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: react-hook-form
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: react-json-tree
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: svix
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: uploadthing
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: uuid
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: zod
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: zustand
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: eslint-config-next
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: postcss
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: prisma
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 16, 2025
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Mar 16, 2025

Reviewers

The following users could not be added as reviewers: RicardoGEsteves. Either the username does not exist or it does not have the correct permissions to be added as a reviewer.

Assignees

The following users could not be added as assignees: RicardoGEsteves. Either the username does not exist or it does not have the correct permissions to be added as an assignee.

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

Copy link

vercel bot commented Mar 16, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
discordant ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 16, 2025 4:12pm

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