Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 27, 2025

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

Package From To
@auth/drizzle-adapter 1.8.0 1.11.1
@conform-to/react 1.3.0 1.13.1
@conform-to/zod 1.3.0 1.13.1
@t3-oss/env-nextjs 0.12.0 0.13.8
@tabler/icons-react 3.31.0 3.35.0
dotenv-expand 12.0.1 12.0.3
drizzle-orm 0.41.0 0.44.7
drizzle-zod 0.7.1 0.8.3
jiti 2.4.2 2.6.1
postgres 3.4.5 3.4.7
drizzle-kit 0.30.6 0.31.5
eslint 9.23.0 9.38.0
eslint-plugin-n 17.17.0 17.23.1
postcss 8.5.3 8.5.6
prettier 3.5.3 3.6.2
prettier-plugin-tailwindcss 0.6.11 0.7.1
typescript 5.8.2 5.9.3

Updates @auth/drizzle-adapter from 1.8.0 to 1.11.1

Release notes

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

@​auth/drizzle-adapter@​1.11.1

Other

  • @​auth/core: dependency update (8f3b2c7a)

@​auth/drizzle-adapter@​1.11.0

Other

  • @​auth/core: dependency update (745751e9)

@​auth/drizzle-adapter@​1.10.0

Other

  • @​auth/core: dependency update (e16b07b8)
Commits
Maintainer changes

This version was pushed to npm by bekacru, a new releaser for @​auth/drizzle-adapter since your current version.


Updates @conform-to/react from 1.3.0 to 1.13.1

Release notes

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

v1.13.1

What's Changed

  • Fixed a type regression with DefaultValue that prevented setting undefined on required fields when exactOptionalPropertyTypes is enabled. (#1072)

Full Changelog: edmundhung/conform@v1.13.0...v1.13.1

v1.13.0

Breaking changes on future exports

The following metadata will no longer returns undefined to resolves behavior difference on React 18 and 19 with regards to the defaultValue property:

  • metadata.defaultValue now returns an empty string '' instead of undefined when no default value is set or the value cannot be serialized
  • metadata.defaultOptions now returns an empty array [] instead of undefined when no default options are set or the value cannot be serialized
  • metadata.defaultChecked now explicitly returns false instead of undefined when the field value is not 'on'

What's Changed

  • The intent.reset() method now accepts an optional defaultValue parameter to reset forms to a different value (#1065)

    // Clear all fields
    <button type="button" onClick={() => intent.reset({ defaultValue: null })}>
      Clear
    </button>
    // Restore to a specific snapshot
    <button type="button" onClick={() => intent.reset({ defaultValue: savedValue })}>
    Restore
    </button>

    Additionally, intent.update() has been optimized to behave more consistently with intent.reset(), with improved type inference when updating form value by not specifying the name option.

  • Added formRef to useControl hook (#1059)

    The useControl hook now exposes a formRef property that provides access to the form element associated with the registered input. This is particularly useful when using useControl with other form-level hooks like useFormData() and useIntent().

    const control = useControl({ defaultValue: '' });
    // Dispatch intent with useIntent
    const intent = useIntent(control.formRef);
    // The formRef automatically stays in sync even if the form attribute changes
    <input ref={control.register} form="dynamic-form-id" />;

  • Fixed an issue with coerceFormValue widening the schema type to GenericSchema | GenericSchemaAsync. It now preserves the exact schema type with compatibility to the standard schema types. (#1060)

Full Changelog: edmundhung/conform@v1.12.1...v1.13.0

... (truncated)

Commits
  • 507e504 release: bump packages version (#1073)
  • 36c08d0 fix(conform-react/future): default value should accept undefined value (#1072)
  • 6f17000 release: bump packages version (#1064)
  • 5a10699 feat(conform-react/future): support custom default value on reset intent (#1065)
  • 286c807 feat(conform-react/future): expose formRef from useControl (#1059)
  • 38ad218 release: bump packages version (#1061)
  • 1c9af18 fix(conform-react/future): intent type inference (#1063)
  • 794c4be fix(conform-react/future): handle React DevTools inspection of field metadata...
  • 46ab924 release: bump packages version (#1053)
  • 7a4ae68 feat(conform-react): metadata customization (#1047)
  • Additional commits viewable in compare view

Updates @conform-to/zod from 1.3.0 to 1.13.1

Release notes

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

v1.13.1

What's Changed

  • Fixed a type regression with DefaultValue that prevented setting undefined on required fields when exactOptionalPropertyTypes is enabled. (#1072)

Full Changelog: edmundhung/conform@v1.13.0...v1.13.1

v1.13.0

Breaking changes on future exports

The following metadata will no longer returns undefined to resolves behavior difference on React 18 and 19 with regards to the defaultValue property:

  • metadata.defaultValue now returns an empty string '' instead of undefined when no default value is set or the value cannot be serialized
  • metadata.defaultOptions now returns an empty array [] instead of undefined when no default options are set or the value cannot be serialized
  • metadata.defaultChecked now explicitly returns false instead of undefined when the field value is not 'on'

What's Changed

  • The intent.reset() method now accepts an optional defaultValue parameter to reset forms to a different value (#1065)

    // Clear all fields
    <button type="button" onClick={() => intent.reset({ defaultValue: null })}>
      Clear
    </button>
    // Restore to a specific snapshot
    <button type="button" onClick={() => intent.reset({ defaultValue: savedValue })}>
    Restore
    </button>

    Additionally, intent.update() has been optimized to behave more consistently with intent.reset(), with improved type inference when updating form value by not specifying the name option.

  • Added formRef to useControl hook (#1059)

    The useControl hook now exposes a formRef property that provides access to the form element associated with the registered input. This is particularly useful when using useControl with other form-level hooks like useFormData() and useIntent().

    const control = useControl({ defaultValue: '' });
    // Dispatch intent with useIntent
    const intent = useIntent(control.formRef);
    // The formRef automatically stays in sync even if the form attribute changes
    <input ref={control.register} form="dynamic-form-id" />;

  • Fixed an issue with coerceFormValue widening the schema type to GenericSchema | GenericSchemaAsync. It now preserves the exact schema type with compatibility to the standard schema types. (#1060)

Full Changelog: edmundhung/conform@v1.12.1...v1.13.0

... (truncated)

Commits

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

Changelog

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

0.13.8

Patch Changes

0.13.7

Patch Changes

0.13.6

Patch Changes

  • Updated dependencies [aa245ed]:
    • @​t3-oss/env-core@​0.13.6

0.13.5

Patch Changes

  • Updated dependencies [73e90f5]:
    • @​t3-oss/env-core@​0.13.5

0.13.4

Patch Changes

0.13.3

Patch Changes

... (truncated)

Commits

Updates @tabler/icons-react from 3.31.0 to 3.35.0

Release notes

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

Release 3.55.0

18 new icons:

  • filled/device-gamepad
  • filled/file-dollar
  • filled/file-euro
  • filled/file-music
  • filled/file-pencil
  • filled/file-scissors
  • filled/file-settings
  • filled/file-signal
  • filled/file-time
  • filled/file-unknown
  • filled/file-upload
  • filled/file-vector
  • filled/files
  • filled/registered
  • filled/video-minus
  • filled/video-plus
  • filled/writing-sign
  • filled/writing

Release 3.34.1

Improvements

  • Allow support for React 19 for React Native package
  • Add subpath imports to React Native package
  • Fix build script python errors
  • Improve icons loading in Vite development mode

1 new icon:

  • outline/brand-dropbox

Fixed icons: outline/language-off, outline/language

Release 3.34.0

19 new icons:

  • filled/building-bridge-2
  • filled/columns-1
  • filled/columns-2
  • filled/columns-3
  • filled/confetti
  • filled/container
  • filled/layout-board-split

... (truncated)

Commits

Updates dotenv-expand from 12.0.1 to 12.0.3

Changelog

Sourced from dotenv-expand's changelog.

12.0.3 (2025-09-02)

Added

  • 🙏 A big thank you to new sponsor Tuple.app - the premier screen sharing app for developers on macOS and Windows. Go check them out. It's wonderful and generous of them to give back to open source by sponsoring dotenv. Give them some love back.

12.0.2 (2025-05-16)

Added

  • 🎉 Added new sponsor Graphite - the AI developer productivity platform helping teams on GitHub ship higher quality software, faster.

[!TIP] Become a sponsor

The dotenvx-expand README is viewed thousands of times DAILY on GitHub and NPM. Sponsoring dotenv and dotenv-expand is a great way to get in front of developers and give back to the developer community at the same time.

Commits

Updates drizzle-orm from 0.41.0 to 0.44.7

Release notes

Sourced from drizzle-orm's releases.

0.44.7

0.44.6

  • feat: add $replicas reference #4874

0.44.5

  • Fixed invalid usage of .one() in durable-sqlite session
  • Fixed spread operator related crash in sqlite blob columns
  • Better browser support for sqlite blob columns
  • Improved sqlite blob mapping

0.44.4

0.44.3

  • Fixed types of $client for clients created by drizzle function
await db.$client.[...]
  • Added the updated_at column to the neon_auth.users_sync table definition.

0.44.2

  • [BUG]: Fixed type issues with joins with certain variations of tsconfig: #4535, #4457

0.44.1

0.44.0

Error handling

Starting from this version, we’ve introduced a new DrizzleQueryError that wraps all errors from database drivers and provides a set of useful information:

  1. A proper stack trace to identify which exact Drizzle query failed
  2. The generated SQL string and its parameters
  3. The original stack trace from the driver that caused the DrizzleQueryError

Drizzle cache module

Drizzle sends every query straight to your database by default. There are no hidden actions, no automatic caching or invalidation - you’ll always see exactly what runs. If you want caching, you must opt in.

By default, Drizzle uses a explicit caching strategy (i.e. global: false), so nothing is ever cached unless you ask. This prevents surprises or hidden performance traps in your application. Alternatively, you can flip on all caching (global: true) so that every select will look in cache first.

Out first native integration was built together with Upstash team and let you natively use upstash as a cache for your drizzle queries

import { upstashCache } from "drizzle-orm/cache/upstash";
import { drizzle } from "drizzle-orm/...";
</tr></table> 

... (truncated)

Commits

Updates drizzle-zod from 0.7.1 to 0.8.3

Commits

Updates jiti from 2.4.2 to 2.6.1

Release notes

Sourced from jiti's releases.

v2.6.1

compare changes

🩹 Fixes

  • interop: Only passthrough default if it is not a promise (#408)

📦 Build

  • Revert to terser-webpack-plugin (#407)

❤️ Contributors

v2.6.0

compare changes

🌟 What is new?

This release fixes minor issues, migrates to Rspack for dist, and lazily imports the Babel transformer only when needed, which should noticeably improve startup times.

  • Install size reduced from 2.03MB to 1.67MB
  • Loading times improved 150ms => 22ms (full transform: 180ms => 115ms)

🔥 Performance

  • Lazy load transformer (#405)

🩹 Fixes

  • cjs-interop: Handle function default exports (#396)
  • Always use native require/import for node: specifiers (#392)

📦 Build

  • Migrate to rspack (#404)
  • Updated bundled dependencies (diff)

✅ Tests

  • Update deno and bun native test coverage (df844f8)

❤️ Contributors

v2.5.1

... (truncated)

Changelog

Sourced from jiti's changelog.

v2.6.1

compare changes

🩹 Fixes

  • interop: Only passthrough default if it is not a promise (#408)

📦 Build

  • Revert to terser-webpack-plugin (#407)

🏡 Chore

❤️ Contributors

v2.6.0

compare changes

🔥 Performance

  • Lazy load babel transform (#405)

🩹 Fixes

  • cjs-interop: Handle function default exports (#396)
  • Always use native for node: specifiers (#392)

📦 Build

  • Migrate to rspack (#404)

🏡 Chore

✅ Tests

  • Update deno and bun native test ignores (df844f8)
  • New bench script (6404427)

❤️ Contributors

... (truncated)

Commits

Updates postgres from 3.4.5 to 3.4.7

Release notes

Sourced from postgres's releases.

v3.4.7

  • Fix reserved queries failing on connect e34826d

porsager/postgres@v3.4.6...v3.4.7

v3.4.6

  • Fix failures in sql.reserve() connect shadowing real errors e8bb3b8
  • Fix stuck queries on non busy connections 76c13f2
  • Ensure non object errors thrown are handled properly a39dfef
  • Fixed typings for generic error code variants ad0ed44
  • support env.PGAPPNAME and env.PGUSERNAME ef7afdb 9f38ea1

porsager/postgres@v3.4.5...v3.4.6

Commits
  • 9b92b65 3.4.7
  • 0068aa4 Test node 23 and 24 too
  • 657fea0 build
  • e34826d Fix reserved queries failing on connect
  • ca4da7c 3.4.6
  • a92f470 build
  • 36dbe2f --unstable not needed for deno, but use --no-lock to not include deno.lock
  • e8bb3b8 Fix failures in sql.reserve() connect shadowing real errors
  • 76c13f2 Fix stuck queries on non busy connections
  • a39dfef Ensure non object errors thrown are handled properly
  • Additional commits viewable in compare view

Updates drizzle-kit from 0.30.6 to 0.31.5

Release notes

Sourced from drizzle-kit's releases.

[email protected]

  • Add casing support to studio configuration and related functions

[email protected]

  • Fixed halfvec, bit and sparsevec type generation bug in drizzle-kit

[email protected]

  • Internal changes to Studio context. Added databaseName and packageName properties for Studio

[email protected]

Bug fixes

  • Fixed relations extraction to not interfere with Drizzle Studio.

[email protected]

Fixed drizzle-kit pull bugs when using Gel extensions.

Because Gel extensions create schema names containing :: (for example, ext::auth), Drizzle previously handled these names incorrectly. Starting with this release, you can use Gel extensions without any problems. Here’s what you should do:

  1. Enable extensions schemas in drizzle.config.ts
import  { defineConfig } from "drizzle-kit";
export default defineConfig({
dialect: 'gel',
schemaFilter: ['ext::auth', 'public']
});

  1. Run drizzle-kit pull

  2. Done!

[email protected]

Features and improvements

Enum DDL improvements

For situations where you drop an enum value or reorder values in an enum, there is no native way to do this in PostgreSQL. To handle these cases, drizzle-kit used to:

  • Change the column data types from the enum to text
  • Drop the old enum
  • Add the new enum
  • Change the column data types back to the new enum

However, there were a few scenarios that weren’t covered: PostgreSQL wasn’t updating default expressions for columns when their data types changed

Therefore, for cases where you either change a column’s data type from an enum to some other type, drop an enum value, or reorder enum values, we now do the following:

... (truncated)

Commits
  • 8e8a9e9 [Drizzle Kit]: Add casing support to studio configuration and related functio...
  • 37d059f v0.44.5 (#4849)
  • 33f0374 Upgrade drizzle-zod peerDeps
  • 8b8d78e Fix export of DrizzleQueryError (fixes #4618) (#4778)
  • 027921f Fixed types of $client for clients created by drizzle function from crede...
  • e44d9bb Add updated_at column (#4106)
  • ac1dcd9 Fix hakfvec (#4689)
  • 5c6b3af Add databaseName and packageName properties for studio (#4683)
  • 9895842 Studio transactions (#4664)
  • 50a8b16 Fixed type issues with joins with certain variations of tsconfig (fixes #45...
  • Additional commits viewable in compare view

Updates eslint from 9.23.0 to 9.38.0

Release notes

Sourced from eslint's releases.

v9.38.0

Features

  • ce40f74 feat: update complexity rule to only highlight function header (#20048) (Atul Nair)
  • e37e590 feat: correct no-loss-of-precision false positives with e notation (#20187) (Francesco Trotta)

Bug Fixes

  • 50c3dfd fix: improve type support for isolated dependencies in pnpm (#20201) (Francesco Trotta)
  • a1f06a3 fix: correct SourceCode typings (#20114) (Pixel998)

Documentation

  • 462675a docs: improve web accessibility by hiding non-semantic character (#20205) (루밀LuMir)
  • c070e65 docs: correct formatting in no-irregular-whitespace rule documentation (#20203) (루밀LuMir)
  • b39e71a docs: Update README (GitHub Actions Bot)
  • cd39983 docs: move custom-formatters type descriptions to nodejs-api (#20190) (Percy Ma)

Chores

  • d17c795 chore: upgrade @​eslint/js@​9.38.0 (#20221) (Milos Djermanovic)
  • 25d0e33 chore: package.json update for @​eslint/js release (Jenkins)
  • c82b5ef refactor: Use types from @​eslint/core (#20168) (Nicholas C. Zakas)
  • ff31609 ci: add Node.js 25 to ci.yml (#20220) (루밀LuMir)
  • 004577e ci: bump github/codeql-action from 3 to 4 (#20211) (dependabot[bot])
  • eac71fb test: remove use of nodejsScope option of eslint-scope from tests (#20206) (Milos Djermanovic)
  • 4168a18 chore: fix typo in legacy-eslint.js (#20202) (Sweta Tanwar)
  • 205dbd2 chore: fix typos (#20200) (ntnyq)
  • dbb200e chore: use team member's username when name is not available in data (#20194) (Milos Djermanovic)
  • 8962089 chore: mark deprecated rules as available until v11.0.0 (#20184) (Pixel998)

v9.37.0

Features

  • 39f7fb4 feat: preserve-caught-error should recognize all static "cause" keys (#20163) (Pixel998)
  • f81eabc feat: support TS syntax in no-restricted-imports (#19562) (Nitin Kumar)

Bug Fixes

  • a129cce fix: correct no-loss-of-precision false positives for leading zeros (#20164) (Francesco Trotta)
  • 09e04fc fix: add missing AST token types (#20172) (Pixel998)
  • 861c6da fix: correct ESLint typings (#20122) (Pixel998)

Documentation

  • b950359 docs: fix typos across the docs (#20182) (루밀LuMir)
  • 42498a2 docs: improve ToC accessibility by hiding non-semantic character (#20181) (Percy Ma)
  • 29ea092 docs: Update README (GitHub Actions Bot)
  • 5c97a04 docs: show availableUntil in deprecated rule banner (#20170) (Pixel998)
  • 90a71bf docs: update README files to add badge and instructions (#20115) (루밀LuMir)
  • 1603ae1 docs: update references from master to main (#20153) (루밀LuMir)

Chores

  • afe8a13 chore: update @eslint/js dependency to version 9.37.0 (#20183) (Francesco Trotta)
  • abee4ca chore: package.json update for @​eslint/js release (Jenkins)
  • fc9381f chore: fix typos in comments (#20175) (overlookmotel)
  • e1574a2 chore: unpin jiti (#20173) (renovate[bot])

... (truncated)

Commits

Updates eslint-plugin-n from 17.17.0 to 17.23.1

Release notes

Sourced from eslint-plugin-n's releases.

v17.23.1<...

Description has been truncated

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

| Package | From | To |
| --- | --- | --- |
| [@auth/drizzle-adapter](https://github.com/nextauthjs/next-auth) | `1.8.0` | `1.11.1` |
| [@conform-to/react](https://github.com/edmundhung/conform/tree/HEAD/packages/conform-react) | `1.3.0` | `1.13.1` |
| [@conform-to/zod](https://github.com/edmundhung/conform/tree/HEAD/packages/conform-zod) | `1.3.0` | `1.13.1` |
| [@t3-oss/env-nextjs](https://github.com/t3-oss/t3-env/tree/HEAD/packages/nextjs) | `0.12.0` | `0.13.8` |
| [@tabler/icons-react](https://github.com/tabler/tabler-icons/tree/HEAD/packages/icons-react) | `3.31.0` | `3.35.0` |
| [dotenv-expand](https://github.com/motdotla/dotenv-expand) | `12.0.1` | `12.0.3` |
| [drizzle-orm](https://github.com/drizzle-team/drizzle-orm) | `0.41.0` | `0.44.7` |
| [drizzle-zod](https://github.com/drizzle-team/drizzle-orm) | `0.7.1` | `0.8.3` |
| [jiti](https://github.com/unjs/jiti) | `2.4.2` | `2.6.1` |
| [postgres](https://github.com/porsager/postgres) | `3.4.5` | `3.4.7` |
| [drizzle-kit](https://github.com/drizzle-team/drizzle-orm) | `0.30.6` | `0.31.5` |
| [eslint](https://github.com/eslint/eslint) | `9.23.0` | `9.38.0` |
| [eslint-plugin-n](https://github.com/eslint-community/eslint-plugin-n) | `17.17.0` | `17.23.1` |
| [postcss](https://github.com/postcss/postcss) | `8.5.3` | `8.5.6` |
| [prettier](https://github.com/prettier/prettier) | `3.5.3` | `3.6.2` |
| [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss) | `0.6.11` | `0.7.1` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.8.2` | `5.9.3` |



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

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

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

Updates `@t3-oss/env-nextjs` from 0.12.0 to 0.13.8
- [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/[email protected]/packages/nextjs)

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

Updates `dotenv-expand` from 12.0.1 to 12.0.3
- [Changelog](https://github.com/motdotla/dotenv-expand/blob/master/CHANGELOG.md)
- [Commits](motdotla/dotenv-expand@v12.0.1...v12.0.3)

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

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

Updates `jiti` from 2.4.2 to 2.6.1
- [Release notes](https://github.com/unjs/jiti/releases)
- [Changelog](https://github.com/unjs/jiti/blob/main/CHANGELOG.md)
- [Commits](unjs/jiti@v2.4.2...v2.6.1)

Updates `postgres` from 3.4.5 to 3.4.7
- [Release notes](https://github.com/porsager/postgres/releases)
- [Changelog](https://github.com/porsager/postgres/blob/master/CHANGELOG.md)
- [Commits](porsager/postgres@v3.4.5...v3.4.7)

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

Updates `eslint` from 9.23.0 to 9.38.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v9.23.0...v9.38.0)

Updates `eslint-plugin-n` from 17.17.0 to 17.23.1
- [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.17.0...v17.23.1)

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

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

Updates `prettier-plugin-tailwindcss` from 0.6.11 to 0.7.1
- [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.11...v0.7.1)

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

---
updated-dependencies:
- dependency-name: "@auth/drizzle-adapter"
  dependency-version: 1.11.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: "@conform-to/react"
  dependency-version: 1.13.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: "@conform-to/zod"
  dependency-version: 1.13.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: "@t3-oss/env-nextjs"
  dependency-version: 0.13.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: "@tabler/icons-react"
  dependency-version: 3.35.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: dotenv-expand
  dependency-version: 12.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: updates
- dependency-name: drizzle-orm
  dependency-version: 0.44.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: drizzle-zod
  dependency-version: 0.8.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: jiti
  dependency-version: 2.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: postgres
  dependency-version: 3.4.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: updates
- dependency-name: drizzle-kit
  dependency-version: 0.31.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: eslint
  dependency-version: 9.38.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: eslint-plugin-n
  dependency-version: 17.23.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: postcss
  dependency-version: 8.5.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: updates
- dependency-name: prettier
  dependency-version: 3.6.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: prettier-plugin-tailwindcss
  dependency-version: 0.7.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: typescript
  dependency-version: 5.9.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: updates
...

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 Oct 27, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 3, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Nov 3, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/drizzle/updates-8e99760858 branch November 3, 2025 14:32
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.

1 participant