Skip to content

chore(deps): bump the drizzle group across 1 directory with 2 updates#2235

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/drizzle-a13161979a
Open

chore(deps): bump the drizzle group across 1 directory with 2 updates#2235
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/drizzle-a13161979a

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 9, 2026

Bumps the drizzle group with 2 updates in the / directory: drizzle-orm and drizzle-kit.

Updates drizzle-orm from 1.0.0-beta.1 to 1.0.0-rc.2

Release notes

Sourced from drizzle-orm's releases.

v1.0.0-rc.2

Updates

  • Disabled default codec type selectors for custom columns (fixes #5711)
  • Сallback type overload for codec selector in custom pg columns (codec: (config) => config?.withTimeZone ? 'timestamptz' : 'timestamp')
  • Extended list of postgis types for codecs (improvement for #5711)
  • Updated codecs: geometry -> geometry(point), geometry:tuple -> geometry(point):tuple
  • Switched PG transactions from class properties back to class methods (fixes #5709)
  • Updated AWS Data Api codecs, removed query typings, improved input param mapping
  • Removed prepared query typings field from all builders
  • Added column argument to CastParam,CastArrayParam codecs

Migration updates in SQLite

  • Added migration conflict detection for SQLite. When migration history has multiple open branches, drizzle-kit generate now checks whether those branches can be merged safely before creating the next migration. This helps catch cases where two migrations were created from the same parent and then changed the same SQLite object in incompatible ways, for example two branches changing the same table, index, or view.
npx drizzle-kit generate
  • If the conflict is expected and you want to continue anyway, pass --ignore-conflicts to skip the conflict check for that command.
npx drizzle-kit generate --ignore-conflicts
npx drizzle-kit check --ignore-conflicts
  • Added proper SQLite migration tree merging. New snapshots now collect all open leaf snapshot IDs and write them as parents, instead of keeping only one latest parent. This means a new migration generated after branching can merge all open leaves and use the combined SQLite state for the next snapshot diff.
{
  "prevIds": ["first-open-leaf-id", "second-open-leaf-id"]
}
  • Fixed DrizzleQueryError and TransactionRollbackError constructors to properly set the error name for better instanceof checks
  • Fixed error handling in aws-data-api to properly show database error messages

v1.0.0-rc.1

⚠️ This release introduced a breaking change into our casing API(see below) and removes RQB v1 ._query for postgres

JIT mappers

Drizzle ORM now has an opt-in API for JIT(just in time compilated) mappers which make most expensive part of the db request pipeline(row mapping) as fast as humanly possible.

const db = drizzle({ ..., jit: true })
const query = db.select().from(users).prepare();
// ^ here drizzle generates a jit mapper which will then be reused during each invocation
server.get('users', (c) => {
const users = await query.execute(); // as fast as using raw driver
</tr></table>

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for drizzle-orm since your current version.


Updates drizzle-kit from 1.0.0-beta.1 to 1.0.0-rc.2

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for drizzle-kit since your current version.


@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels May 9, 2026
@dependabot dependabot Bot changed the title chore(deps): bump the drizzle group with 2 updates chore(deps): bump the drizzle group across 1 directory with 2 updates May 10, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/drizzle-a13161979a branch 3 times, most recently from 8a3d3c2 to 14adb1e Compare May 15, 2026 21:33
Bumps the drizzle group with 2 updates in the / directory: [drizzle-orm](https://github.com/drizzle-team/drizzle-orm) and [drizzle-kit](https://github.com/drizzle-team/drizzle-orm).


Updates `drizzle-orm` from 1.0.0-beta.1 to 1.0.0-rc.2
- [Release notes](https://github.com/drizzle-team/drizzle-orm/releases)
- [Commits](https://github.com/drizzle-team/drizzle-orm/commits/v1.0.0-rc.2)

Updates `drizzle-kit` from 1.0.0-beta.1 to 1.0.0-rc.2
- [Release notes](https://github.com/drizzle-team/drizzle-orm/releases)
- [Commits](https://github.com/drizzle-team/drizzle-orm/commits/v1.0.0-rc.2)

---
updated-dependencies:
- dependency-name: drizzle-kit
  dependency-version: 1.0.0-rc.2-203eab8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: drizzle
- dependency-name: drizzle-orm
  dependency-version: 1.0.0-rc.2-203eab8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: drizzle
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/drizzle-a13161979a branch from 14adb1e to dfac79a Compare May 15, 2026 21:37
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