Skip to content

Bump drizzle-orm from 0.31.2 to 0.39.3#6

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/drizzle-orm-0.39.3
Closed

Bump drizzle-orm from 0.31.2 to 0.39.3#6
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/drizzle-orm-0.39.3

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Feb 10, 2025

Copy link
Copy Markdown

Bumps drizzle-orm from 0.31.2 to 0.39.3.

Release notes

Sourced from drizzle-orm's releases.

0.39.3

  • Remove react from peerDependencies

0.39.2

  • To be compatible with latest Neon Auth feature we renamed the pre-defined schema internally, from neon_identity to neon_auth - thanks @​pffigueiredo

0.39.1

  • Fixed SQLite onConflict clauses being overwritten instead of stacked - #2276
  • Added view support to aliasedTable()
  • Fixed sql builder prefixing aliased views and tables with their schema

0.39.0

New features

Bun SQL driver support

You can now use the new Bun SQL driver released in Bun v1.2.0 with Drizzle

In version 1.2.0, Bun has issues with executing concurrent statements, which may lead to errors if you try to run several queries simultaneously. We've created a github issue that you can track. Once it's fixed, you should no longer encounter any such errors on Bun's SQL side

import { drizzle } from 'drizzle-orm/bun-sql';
const db = drizzle(process.env.PG_DB_URL!);
const result = await db.select().from(...);

or you can use Bun SQL instance

import { drizzle } from 'drizzle-orm/bun-sql';
import { SQL } from 'bun';
const client = new SQL(process.env.PG_DB_URL!);
const db = drizzle({ client });
const result = await db.select().from(...);

Current Limitations:

  • json and jsonb inserts and selects currently perform an additional JSON.stringify on the Bun SQL side. Once this is removed, they should work properly. You can always use custom types and redefine the mappers to and from the database.
  • datetime, date, and timestamp will not work properly when using mode: string in Drizzle. This is due to Bun's API limitations, which prevent custom parsers for queries. As a result, Drizzle cannot control the response sent from Bun SQL to Drizzle. Once this feature is added to Bun SQL, it should work as expected.
  • array types currently have issues in Bun SQL.

You can check more in Bun docs

You can check more getting started examples in Drizzle docs

... (truncated)

Commits
  • e5c63db Remove react from peer deps
  • 555e4ff Merge pull request #4064 from pffigueiredo/4063-fix-neon-auth-schema-name
  • 9331ad1 Bump version
  • 675df3f Rename Neon Auth schema
  • 4d72640 Merge pull request #4037 from drizzle-team/beta
  • 5ffd0bd Bump versions
  • 991e8b4 Merge pull request #4023 from Karibash/bugfix/unsigned-column
  • cdbf1e9 Merge branch 'beta' into bugfix/unsigned-column
  • d9f609a Merge pull request #4020 from Karibash/bugfix/index-name
  • c32d6a7 Merge branch 'beta' into bugfix/index-name
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Feb 10, 2025
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/drizzle-orm-0.39.3 branch from 23cbc89 to 85a36de Compare February 13, 2025 20:30
Bumps [drizzle-orm](https://github.com/drizzle-team/drizzle-orm) from 0.31.2 to 0.39.3.
- [Release notes](https://github.com/drizzle-team/drizzle-orm/releases)
- [Commits](drizzle-team/drizzle-orm@0.31.2...0.39.3)

---
updated-dependencies:
- dependency-name: drizzle-orm
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/drizzle-orm-0.39.3 branch from 85a36de to ac6e202 Compare February 15, 2025 23:44
@dependabot @github

dependabot Bot commented on behalf of github Mar 3, 2025

Copy link
Copy Markdown
Author

Superseded by #14.

@dependabot dependabot Bot closed this Mar 3, 2025
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/drizzle-orm-0.39.3 branch March 3, 2025 18:46
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants