Skip to content
This repository was archived by the owner on Nov 9, 2025. It is now read-only.

chore(deps): update dependency drizzle-kit to ^0.31.0#121

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/drizzle-kit-0.x
Open

chore(deps): update dependency drizzle-kit to ^0.31.0#121
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/drizzle-kit-0.x

Conversation

@renovate

@renovate renovate Bot commented Apr 19, 2025

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
drizzle-kit (source) ^0.30.0 -> ^0.31.0 age confidence

Release Notes

drizzle-team/drizzle-orm (drizzle-kit)

v0.31.6

Compare Source

Bug fixes

v0.31.5

Compare Source

  • Add casing support to studio configuration and related functions

v0.31.4

Compare Source

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

v0.31.3

Compare Source

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

v0.31.2

Compare Source

Bug fixes
  • Fixed relations extraction to not interfere with Drizzle Studio.

v0.31.1

Compare Source

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!

v0.31.0

Compare Source

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:

  • Change the column data types from the enum to text
  • Set the default using the ::text expression
  • Drop the old enum
  • Add the new enum
  • Change the column data types back to the new enum
  • Set the default using the ::<new_enum> expression
esbuild version upgrade

For drizzle-kit we upgraded the version to latest (0.25.2), thanks @​paulmarsicloud

Bug fixes


Configuration

📅 Schedule: Branch creation - "before 4am on saturday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot force-pushed the renovate/drizzle-kit-0.x branch 2 times, most recently from d413549 to 2d6b749 Compare August 13, 2025 14:11
@renovate renovate Bot force-pushed the renovate/drizzle-kit-0.x branch 2 times, most recently from ec40408 to e925a93 Compare September 26, 2025 18:44
@renovate renovate Bot force-pushed the renovate/drizzle-kit-0.x branch from e925a93 to 223ab5b Compare October 21, 2025 11:11
@renovate renovate Bot force-pushed the renovate/drizzle-kit-0.x branch from 223ab5b to 7900e41 Compare October 28, 2025 13:09
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants