Skip to content
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

⬆️ Bump the updates group across 1 directory with 21 updates #241

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

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the updates group with 21 updates in the / directory:

Package From To
@auth/drizzle-adapter 1.7.4 1.8.0
@conform-to/react 1.2.2 1.3.0
@conform-to/zod 1.2.2 1.3.0
@nextui-org/react 2.6.10 2.6.11
@t3-oss/env-nextjs 0.11.1 0.12.0
@tabler/icons-react 3.26.0 3.31.0
drizzle-orm 0.38.3 0.41.0
drizzle-zod 0.6.1 0.7.1
next 15.1.3 15.2.4
next-themes 0.4.4 0.4.6
zod 3.24.1 3.24.2
@trivago/prettier-plugin-sort-imports 5.2.0 5.2.2
@types/node 22.10.2 22.13.14
drizzle-kit 0.30.1 0.30.6
eslint 9.17.0 9.23.0
eslint-config-next 15.1.3 15.2.4
eslint-plugin-n 17.15.1 17.17.0
postcss 8.4.49 8.5.3
prettier 3.4.2 3.5.3
prettier-plugin-tailwindcss 0.6.9 0.6.11
typescript 5.7.2 5.8.2

Updates @auth/drizzle-adapter from 1.7.4 to 1.8.0

Release notes

Sourced from @​auth/drizzle-adapter's releases.

@​auth/drizzle-adapter@​1.8.0

Other

  • @​auth/core: dependency update (887c28c1)
Commits

Updates @conform-to/react from 1.2.2 to 1.3.0

Release notes

Sourced from @​conform-to/react's releases.

v1.3.0

Hello world! We're finally back after a bit of a break. This release is a bit small, but we hope it's the start of a more regular update schedule moving forward. I'm excited to share that @​chimame has joined the team and is prepping our first valibot integration release in #876. We'll be sharing more details about the other changes as well. Thanks for your patience and stay tuned!

Custom coercion

v1.3.0 adds the ability to disable the default auto coercion behavior by setting the disableAutoCoercion option to true in parseWithZod in #871.

function Example() {
  const [form, fields] = useForm({
    onValidate({ formData }) {
      return parseWithZod(formData, {
        schema,
        disableAutoCoercion: true,
      });
    },
  });
// ...
}

You can then manage how the form value is parsed yourself, or use the new unstable_coerceFormValue helper to coerce form value:

import { parseWithZod, unstable_coerceFormValue as coerceFormValue } from '@conform-to/zod';
import { z } from 'zod';
// Coerce the form value with default behaviour
const schema = coerceFormValue(
z.object({
// ...
})
);
// Coerce the form value with default coercion overrided
const schema = coerceFormValue(
z.object({
ref: z.number()
date: z.date(),
amount: z.number(),
confirm: z.boolean(),
}),
{
// Trim the value for all string-based fields
// e.g. z.string(), z.number() or z.boolean()
string: (value) => {
if (typeof value !== 'string') {
return value;
}
</tr></table>

... (truncated)

Commits

Updates @conform-to/zod from 1.2.2 to 1.3.0

Release notes

Sourced from @​conform-to/zod's releases.

v1.3.0

Hello world! We're finally back after a bit of a break. This release is a bit small, but we hope it's the start of a more regular update schedule moving forward. I'm excited to share that @​chimame has joined the team and is prepping our first valibot integration release in #876. We'll be sharing more details about the other changes as well. Thanks for your patience and stay tuned!

Custom coercion

v1.3.0 adds the ability to disable the default auto coercion behavior by setting the disableAutoCoercion option to true in parseWithZod in #871.

function Example() {
  const [form, fields] = useForm({
    onValidate({ formData }) {
      return parseWithZod(formData, {
        schema,
        disableAutoCoercion: true,
      });
    },
  });
// ...
}

You can then manage how the form value is parsed yourself, or use the new unstable_coerceFormValue helper to coerce form value:

import { parseWithZod, unstable_coerceFormValue as coerceFormValue } from '@conform-to/zod';
import { z } from 'zod';
// Coerce the form value with default behaviour
const schema = coerceFormValue(
z.object({
// ...
})
);
// Coerce the form value with default coercion overrided
const schema = coerceFormValue(
z.object({
ref: z.number()
date: z.date(),
amount: z.number(),
confirm: z.boolean(),
}),
{
// Trim the value for all string-based fields
// e.g. z.string(), z.number() or z.boolean()
string: (value) => {
if (typeof value !== 'string') {
return value;
}
</tr></table>

... (truncated)

Commits
  • 077215b release: bump packages version (#869)
  • 6197f1a feat(conform-zod): add disableAutoCoercion option with coerceFormValue he...
  • 9157707 fix(conform-zod): type coercion for branded types (#864)
  • See full diff in compare view

Updates @nextui-org/react from 2.6.10 to 2.6.11

Changelog

Sourced from @​nextui-org/react's changelog.

2.6.11

Patch Changes

... (truncated)

Commits

Updates @t3-oss/env-nextjs from 0.11.1 to 0.12.0

Changelog

Sourced from @​t3-oss/env-nextjs's changelog.

0.12.0

Minor Changes

  • #299 b13d46b Thanks @​EskiMojo14! - feat!: support standard schema

    Validators can now be any validator that supports Standard Schema, for example Zod & Valibot.

    This feature comes with some breaking changes:

    • If using Zod, the minimum required version is now 3.24.
    • onValidationError now gets StandardSchemaV1.Issue[] instead of ZodError
  • #310 eb37304 Thanks @​EskiMojo14! - feat!: add valibot presets

    Presets using Valibot are now available using the /presets-valibot entrypoint.

    This feature comes with some breaking changes:

    • Zod presets have now been moved to /presets-zod.

Patch Changes

Commits

Updates @tabler/icons-react from 3.26.0 to 3.31.0

Release notes

Sourced from @​tabler/icons-react's releases.

Release 3.31.0

18 new icons:

  • outline/cash-banknote-edit
  • outline/cash-banknote-heart
  • outline/cash-banknote-minus
  • outline/cash-banknote-move-back
  • outline/cash-banknote-move
  • outline/cash-banknote-plus
  • outline/cash-edit
  • outline/cash-heart
  • outline/cash-minus
  • outline/cash-move-back
  • outline/cash-move
  • outline/cash-plus
  • outline/moneybag-edit
  • outline/moneybag-heart
  • outline/moneybag-minus
  • outline/moneybag-move-back
  • outline/moneybag-move
  • outline/moneybag-plus

Fixed icons: outline/cash-banknote, outline/cash, outline/moneybag

Improvements:

  • Remove unused ligatures from @tabler/icons-webfont #1312

Release 3.30.0

18 new icons:

  • filled/drop-circle
  • filled/dual-screen
  • filled/dumpling
  • filled/egg-fried
  • filled/escalator-down
  • filled/escalator-up
  • filled/escalator
  • filled/exchange
  • filled/explicit
  • filled/file-check
  • filled/file-code-2
  • filled/file-cv
  • filled/file-delta
  • filled/file-download
  • filled/file-lambda

... (truncated)

Commits

Updates drizzle-orm from 0.38.3 to 0.41.0

Release notes

Sourced from drizzle-orm's releases.

0.41.0

  • bigint, number modes for SQLite, MySQL, PostgreSQL, SingleStore decimal & numeric column types
  • Changed behavior of sql-js query preparation to query prebuild instead of db-side prepare due to need to manually free prepared queries, removed .free() method
  • Fixed MySQL, SingleStore varchar allowing not specifying length in config
  • Fixed MySQL, SingleStore binary, varbinary data\type mismatches
  • Fixed numeric\decimal data\type mismatches: #1290, #1453
  • Fixed drizzle-studio + AWS Data Api connection issue: #3224
  • Fixed isConfig utility function checking types of wrong fields
  • Enabled supportBigNumbers in auto-created mysql2 driver instances
  • Fixed custom schema tables querying in RQBv1: #4060
  • Removed in-driver mapping for postgres types 1231 (numeric[]), 1115 (timestamp[]), 1185 (timestamp_with_timezone[]), 1187 (interval[]), 1182 (date[]), preventing precision loss and data\type mismatches
  • Fixed SQLite buffer-mode blob sometimes returning number[]

0.40.1

Updates to neon-http for @neondatabase/serverless@1.0.0 - thanks @​jawj

Starting from this version, drizzle-orm will be compatible with both @neondatabase/serverless 1.0

0.40.0

New Features

Added Gel dialect support and gel-js client support

Drizzle is getting a new Gel dialect with its own types and Gel-specific logic. In this first iteration, almost all query-building features have been copied from the PostgreSQL dialect since Gel is fully PostgreSQL-compatible. The only change in this iteration is the data types. The Gel dialect has a different set of available data types, and all mappings for these types have been designed to avoid any extra conversions on Drizzle's side. This means you will insert and select exactly the same data as supported by the Gel protocol.

Drizzle + Gel integration will work only through drizzle-kit pull. Drizzle won't support generate, migrate, or push features in this case. Instead, drizzle-kit is used solely to pull the Drizzle schema from the Gel database, which can then be used in your drizzle-orm queries.

The Gel + Drizzle workflow:

  1. Use the gel CLI to manage your schema.
  2. Use the gel CLI to generate and apply migrations to the database.
  3. Use drizzle-kit to pull the Gel database schema into a Drizzle schema.
  4. Use drizzle-orm with gel-js to query the Gel database.

Here is a small example of how to connect to Gel using Drizzle:

// Make sure to install the 'gel' package 
import { drizzle } from "drizzle-orm/gel";
import { createClient } from "gel";
const gelClient = createClient();
const db = drizzle({ client: gelClient });
const result = await db.execute('select 1');

and drizzle-gel schema definition

import { gelTable, uniqueIndex, uuid, smallint, text } from "drizzle-orm/gel-core"
</tr></table> 

... (truncated)

Commits

Updates drizzle-zod from 0.6.1 to 0.7.1

Commits

Updates next from 15.1.3 to 15.2.4

Release notes

Sourced from next's releases.

v15.2.4

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • Match subrequest handling for edge and node (#77474)
  • exclude images and static media from dev origin check (#77417)
  • ensure /__next middleware URLs are included in the origin check (#77416)
  • remove direct ip/port bypass in dev origin check (#77414)
  • switch development origin verification to be opt-in rather than opt-out (#77395)

Credits

Huge thanks to @​ijjk and @​ztanner for helping!

v15.2.3

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary. This release contains a security patch for CVE-2025-29927.

Core Changes

  • Update default allowed origins list (#77212)
  • unify allowed origin detection handling (#77053)
  • Add dev warning for cross-origin and stabilize allowedDevOrigins (#77044)
  • Ensure deploymentId is used for CSS preloads (#77210)
  • Update middleware request header (#77201)
  • [metadata] remove the default segement check for metadata rendering (#77119)
  • [ts-hint] fix vscode type hint plugin enabling (#77099)
  • [metadata] re-insert icons to head for streamed metadata (#76915)

Credits

Huge thanks to @​ijjk, @​ztanner, and @​huozhi for helping!

v15.2.2

Core Changes

  • [dev-overlay] fix styling on overflow error messages, add button hover state: #76771
  • Fix: respond 405 status code on OPTIONS request to SSG page: #76767
  • [dev-overlay] Always show relative paths: #76742
  • [metadata] remove the duplicate metadata in the error boundary: #76791
  • Upgrade React from d55cc79b-20250228 to 443b7ff2-20250303: #76804
  • [dev-overlay] Ignore animations on page load: #76834
  • fix: remove useless set-cookie in action-handler: #76839
  • Turbopack: handle task cancelation: #76831
  • Upgrade React from 443b7ff2-20250303 to e03ac20f-20250305: #76842

... (truncated)

Commits

Updates next-themes from 0.4.4 to 0.4.6

Release notes

Sourced from next-themes's releases.

v0.4.6

What's Changed

New Contributors

Full Changelog: pacocoursey/next-themes@v0.4.5...v0.4.6

v0.4.5

What's Changed

New Contributors

Full Changelog: pacocoursey/next-themes@v0.4.4...v0.4.5

Commits
  • 3a43743 v0.4.6
  • f5be1b2 fix: add null check for value in updateDOM function to prevent runtime errors...
  • c178917 v0.4.5
  • d12996b chore: Fix corepack errors in CI (#342)
  • b77db23 Bump the npm_and_yarn group across 1 directory with 7 updates (#341)
  • d3fa4ee Bump next from 14.2.10 to 14.2.15 in the npm_and_yarn group across 1 director...
  • ad83567 Reduce number of renders by pre-setting resolvedTheme (#338)
  • 1b51044 fix: map theme to class using ValueObject in injected script (#330)
  • See full diff in compare view

Updates zod from 3.24.1 to 3.24.2

Release notes

Sourced from zod's releases.

v3.24.2

Notes

Support asynchronous checks in z.custom() .

const customSchema = z.custom<number>(async (x) => {
  return typeof x === "number";
});

Commits:

  • cdcf9d4263cc544c7cb49855b31612d4305da72c Bump rollup from 2.79.1 to 2.79.2 (#3895)
  • a2ad37099e8f7117d231cc2c72d0e471893643b2 Bump find-my-way from 8.2.0 to 8.2.2 (#3897)
  • 0e02d66d1bcaad9c0f92609431e1726e088a8112 Bump nanoid from 3.3.7 to 3.3.8 (#3896)
  • 96be65f0d71b0bf8e8f330dc0541cc895edd6459 Bump cross-spawn from 7.0.3 to 7.0.6 (#3882)
  • f7ad26147ba291cb3fb257545972a8e00e767470 Bump micromatch from 4.0.7 to 4.0.8 (#3748)
  • d724620c341e1801db9513f681f731afb3df452a Add zod-struct to utilities for Zod (#3921)
  • 6b96cfd4307649df6a451d74e06c47ac88c01dfe Update README.md (#3949)
  • e376cda8e14d3caa09bc2148ffc668748118db6b Add Courier to README (#3961)
  • 8a099deaef71b3d8bd65986a745b88f08cb28ba5 Add CodeRabbit to sponsors (#3975)
  • 587d160badbe96d1adec1e8ff9d93bbcb3f91c4f WIP (#3976)
  • 9d3af2ee5263971bc0dd7e4927cd07ee854fe4db Add CodeRabbit at Platinum (#3981)
  • eedeb4b69f9f4bb58401d9cb27c8038a042f2c7f docs(X to Zod): Update url for runtyping (#3971)
  • 706f49f9fb852cdde667b65ccb9b765444a86de7 fix: redirect url to correct url (#3939)
  • 7365b7d5564793c42ee02815880463b8bee30028 docs: translate README to Korean (#3934)
  • b7e173de06e223a7a6510903a4110634e2fb5d92 Format
  • 1dd44a0d6f8073f7c417e09ec96580b9ae9bda23 Support async z.custom
  • e30870369d5b8f31ff4d0130d4439fd997deb523 v3.24.2
Commits

Updates @trivago/prettier-plugin-sort-imports from 5.2.0 to 5.2.2

Release notes

Sourced from @​trivago/prettier-plugin-sort-imports's releases.

v5.2.2

Full Changelog: trivago/prettier-plugin-sort-imports@v5.2.1...v5.2.2

v5.2.1

What's Changed

New Contributors

Full Changelog: trivago/prettier-plugin-sort-imports@v5.2.0...v5.2.1

Changelog

Sourced from @​trivago/prettier-plugin-sort-imports's changelog.

5.2.2

5.2.1

Commits

Updates @types/node from 22.10.2 to 22.13.14

Commits

Updates drizzle-kit from 0.30.1 to 0.30.6

Release notes

Sourced from drizzle-kit's releases.

drizzle-kit@0.30.6

Bug fixes

drizzle-kit@0.30.5

New Features

Added Gel dialect support and gel-js client support

Drizzle is getting a new Gel dialect with its own types and Gel-specific logic. In this first iteration, almost all query-building features have been copied from the PostgreSQL dialect since Gel is fully PostgreSQL-compatible. The only change in this iteration is the data types. The Gel dialect has a different set of available data types, and all mappings for these types have been designed to avoid any extra conversions on Drizzle's side. This means you will insert and select exactly the same data as supported by the Gel protocol.

Drizzle + Gel integration will work only through drizzle-kit pull. Drizzle won't support generate, migrate, or push features in this case. Instead, drizzle-kit is used solely to pull the Drizzle schema from the Gel database, which can then be used in your drizzle-orm queries.

The Gel + Drizzle workflow:

  1. Use the gel CLI to manage your schema.
  2. Use the gel CLI to generate and apply migrations to the database.
  3. Use drizzle-kit to pull the Gel database schema into a Drizzle schema.
  4. Use drizzle-orm with gel-js to query the Gel database.

On the drizzle-kit side you can now use dialect: "gel"

// drizzle.config.ts
import { defineConfig } from 'drizzle-kit';
export default defineConfig({
dialect: 'gel',
});

For a complete Get Started tutorial you can use our new guides:

drizzle-kit@0.30.4

  • Fix bug that generates incorrect syntax when introspect in mysql
  • Fix a bug that caused incorrect syntax output when introspect in unsigned columns

drizzle-kit@0.30.3

SingleStore push and generate improvements

As SingleStore did not support certain DDL statements before this release, you might encounter an error indicating that some schema changes cannot be applied due to a database issue. Starting from this version, drizzle-kit will detect such cases and initiate table recreation with data transfer between the tables

Bug fixes

... (truncated)

Commits

Updates eslint from 9.17.0 to 9.23.0

Release notes

Sourced from eslint's releases.

v9.23.0

Features

  • 557a0d2 feat: support TypeScript syntax in no-useless-constructor (#19535) (Josh Goldberg ✨)
  • 8320241 feat: support TypeScript syntax in default-param-last (#19431) (Josh Goldberg ✨)
  • 833c4a3 feat: defineConfig() supports "flat/" config prefix (#19533) (Nicholas C. Zakas)
  • 4a0df16 feat: circular autofix/conflicting rules detection (#19514) (Milos Djermanovic)
  • be56a68 feat: support TypeScript syntax in class-methods-use-this (#19498) (Josh Goldberg ✨)

Bug Fixes

  • 0e20aa7 fix: move deprecated RuleContext methods to subtype (#19531) (Francesco Trotta)
  • cc3bd00 fix: reporting variable used in catch block in no-useless-assignment (#19423) (Tanuj Kanti)
  • d46ff83 fix: no-dupe-keys false positive with proto setter (#19508) (Milos Djermanovic)
  • e732773 fix: navigation of search results on pressing Enter (#19502) (Tanuj Kanti)
  • f4e9c5f fix: allow RuleTester to test files inside node_modules/ (#19499) (fisker Cheung)

Documentation

  • 5405939 docs: show red underlines in TypeScript examples in rules docs (#19547) (Milos Djermanovic)
  • 48b53d6 docs: replace var with const in examples (#19539) (Nitin Kumar)
  • c39d7db docs: Update README (GitHub Actions Bot)
  • a4f8760 docs: revert accidental changes (#19542) (Francesco Trotta)
  • 280128f docs: add copy button (#19512) (xbinaryx)
  • cd83eaa docs: replace var with const in examples (#19530) (Nitin Kumar)
  • 7ff0cde docs: Update README (GitHub Actions Bot)
  • 996cfb9 docs: migrate sass to module system (#19518) (xbinaryx)
  • 17cb958 docs: replace var with let and const in rule examples (#19515) (Tanuj Kanti)
  • 83e24f5 docs: Replace var with let or const (#19511) (Jenna Toff)
  • a59d0c0 docs: Update docs for defineConfig (#19505) (Nicholas C. Zakas)
  • fe92927 docs: require-unicode-regexp add note for i flag and \w (#19510) (Chaemin-Lim)

Build Related

  • 2357edd build: exclude autogenerated files from Prettier formatting (#19548) (Francesco Trotta)

Chores

  • 0ac8ea4 chore: update dependencies for v9.23.0 release (

Bumps the updates group with 21 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@auth/drizzle-adapter](https://github.com/nextauthjs/next-auth) | `1.7.4` | `1.8.0` |
| [@conform-to/react](https://github.com/edmundhung/conform/tree/HEAD/packages/conform-react) | `1.2.2` | `1.3.0` |
| [@conform-to/zod](https://github.com/edmundhung/conform/tree/HEAD/packages/conform-zod) | `1.2.2` | `1.3.0` |
| [@nextui-org/react](https://github.com/nextui-org/nextui/tree/HEAD/packages/core/react) | `2.6.10` | `2.6.11` |
| [@t3-oss/env-nextjs](https://github.com/t3-oss/t3-env/tree/HEAD/packages/nextjs) | `0.11.1` | `0.12.0` |
| [@tabler/icons-react](https://github.com/tabler/tabler-icons/tree/HEAD/packages/icons-react) | `3.26.0` | `3.31.0` |
| [drizzle-orm](https://github.com/drizzle-team/drizzle-orm) | `0.38.3` | `0.41.0` |
| [drizzle-zod](https://github.com/drizzle-team/drizzle-orm) | `0.6.1` | `0.7.1` |
| [next](https://github.com/vercel/next.js) | `15.1.3` | `15.2.4` |
| [next-themes](https://github.com/pacocoursey/next-themes) | `0.4.4` | `0.4.6` |
| [zod](https://github.com/colinhacks/zod) | `3.24.1` | `3.24.2` |
| [@trivago/prettier-plugin-sort-imports](https://github.com/trivago/prettier-plugin-sort-imports) | `5.2.0` | `5.2.2` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.10.2` | `22.13.14` |
| [drizzle-kit](https://github.com/drizzle-team/drizzle-orm) | `0.30.1` | `0.30.6` |
| [eslint](https://github.com/eslint/eslint) | `9.17.0` | `9.23.0` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `15.1.3` | `15.2.4` |
| [eslint-plugin-n](https://github.com/eslint-community/eslint-plugin-n) | `17.15.1` | `17.17.0` |
| [postcss](https://github.com/postcss/postcss) | `8.4.49` | `8.5.3` |
| [prettier](https://github.com/prettier/prettier) | `3.4.2` | `3.5.3` |
| [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss) | `0.6.9` | `0.6.11` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.7.2` | `5.8.2` |



Updates `@auth/drizzle-adapter` from 1.7.4 to 1.8.0
- [Release notes](https://github.com/nextauthjs/next-auth/releases)
- [Commits](https://github.com/nextauthjs/next-auth/compare/@auth/drizzle-adapter@1.7.4...@auth/drizzle-adapter@1.8.0)

Updates `@conform-to/react` from 1.2.2 to 1.3.0
- [Release notes](https://github.com/edmundhung/conform/releases)
- [Commits](https://github.com/edmundhung/conform/commits/v1.3.0/packages/conform-react)

Updates `@conform-to/zod` from 1.2.2 to 1.3.0
- [Release notes](https://github.com/edmundhung/conform/releases)
- [Commits](https://github.com/edmundhung/conform/commits/v1.3.0/packages/conform-zod)

Updates `@nextui-org/react` from 2.6.10 to 2.6.11
- [Release notes](https://github.com/nextui-org/nextui/releases)
- [Changelog](https://github.com/heroui-inc/heroui/blob/canary/packages/core/react/CHANGELOG.md)
- [Commits](https://github.com/nextui-org/nextui/commits/@nextui-org/react@2.6.11/packages/core/react)

Updates `@t3-oss/env-nextjs` from 0.11.1 to 0.12.0
- [Release notes](https://github.com/t3-oss/t3-env/releases)
- [Changelog](https://github.com/t3-oss/t3-env/blob/main/packages/nextjs/CHANGELOG.md)
- [Commits](https://github.com/t3-oss/t3-env/commits/@t3-oss/env-nextjs@0.12.0/packages/nextjs)

Updates `@tabler/icons-react` from 3.26.0 to 3.31.0
- [Release notes](https://github.com/tabler/tabler-icons/releases)
- [Commits](https://github.com/tabler/tabler-icons/commits/v3.31.0/packages/icons-react)

Updates `drizzle-orm` from 0.38.3 to 0.41.0
- [Release notes](https://github.com/drizzle-team/drizzle-orm/releases)
- [Commits](drizzle-team/drizzle-orm@0.38.3...0.41.0)

Updates `drizzle-zod` from 0.6.1 to 0.7.1
- [Release notes](https://github.com/drizzle-team/drizzle-orm/releases)
- [Commits](https://github.com/drizzle-team/drizzle-orm/commits)

Updates `next` from 15.1.3 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.3...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 `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 `@trivago/prettier-plugin-sort-imports` from 5.2.0 to 5.2.2
- [Release notes](https://github.com/trivago/prettier-plugin-sort-imports/releases)
- [Changelog](https://github.com/trivago/prettier-plugin-sort-imports/blob/main/CHANGELOG.md)
- [Commits](trivago/prettier-plugin-sort-imports@v5.2.0...v5.2.2)

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

Updates `drizzle-kit` from 0.30.1 to 0.30.6
- [Release notes](https://github.com/drizzle-team/drizzle-orm/releases)
- [Commits](https://github.com/drizzle-team/drizzle-orm/compare/drizzle-kit@0.30.1...drizzle-kit@0.30.6)

Updates `eslint` from 9.17.0 to 9.23.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v9.17.0...v9.23.0)

Updates `eslint-config-next` from 15.1.3 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](https://github.com/vercel/next.js/commits/v15.2.4/packages/eslint-config-next)

Updates `eslint-plugin-n` from 17.15.1 to 17.17.0
- [Release notes](https://github.com/eslint-community/eslint-plugin-n/releases)
- [Changelog](https://github.com/eslint-community/eslint-plugin-n/blob/master/CHANGELOG.md)
- [Commits](eslint-community/eslint-plugin-n@v17.15.1...v17.17.0)

Updates `postcss` from 8.4.49 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.49...8.5.3)

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

Updates `prettier-plugin-tailwindcss` from 0.6.9 to 0.6.11
- [Release notes](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/blob/main/CHANGELOG.md)
- [Commits](tailwindlabs/prettier-plugin-tailwindcss@v0.6.9...v0.6.11)

Updates `typescript` from 5.7.2 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.7.2...v5.8.2)

---
updated-dependencies:
- dependency-name: "@auth/drizzle-adapter"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: "@conform-to/react"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: "@conform-to/zod"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: "@nextui-org/react"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: updates
- dependency-name: "@t3-oss/env-nextjs"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: "@tabler/icons-react"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: drizzle-orm
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: drizzle-zod
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: next
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: next-themes
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: updates
- dependency-name: zod
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: updates
- dependency-name: "@trivago/prettier-plugin-sort-imports"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: updates
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: drizzle-kit
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: updates
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: eslint-config-next
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: eslint-plugin-n
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: postcss
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: prettier-plugin-tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: updates
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Mar 31, 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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants