Skip to content

build(deps): bump drizzle-orm from 1.0.0-beta.19-d95b7a4 to 1.0.0-beta.19#324

Merged
github-actions[bot] merged 1 commit intomainfrom
dependabot/npm_and_yarn/drizzle-orm-1.0.0-beta.19
Mar 27, 2026
Merged

build(deps): bump drizzle-orm from 1.0.0-beta.19-d95b7a4 to 1.0.0-beta.19#324
github-actions[bot] merged 1 commit intomainfrom
dependabot/npm_and_yarn/drizzle-orm-1.0.0-beta.19

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Mar 27, 2026

Bumps drizzle-orm from 1.0.0-beta.19-d95b7a4 to 1.0.0-beta.19.

Release notes

Sourced from drizzle-orm's releases.

v1.0.0-beta.19

New Features

sqlcommenter support for PostgreSQL and MySQL

You can now add custom tags to the query. These tags will be appended to the end of each query, helping the database add metadata/tags to it. This will be especially useful with PlanetScale’s new Database Traffic Control feature

// raw string support
db.select().from().comment("key='val'");
db.select().from().comment("my_first_tag");
// developer friendly dedicated to tags
db.select().from().comment({ key: 'val' });

Example:

db.select().from(comments).comment({ priority: 'high', category: "analytics" });
select "id", "name" from "comments" /*priority='high',category='analytics'*/

The only limitation is that you can't use comments with a prepared statement:

// can't be used
const p = db.select().from().prepare();
// ❌
p.comment({ key: 'val' }).execute();

Bug fixes

Updates

  • Updated migrate() function for mysql dialect to correctly manage multiple databases

... (truncated)

Commits

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Mar 27, 2026
@github-actions github-actions bot enabled auto-merge (squash) March 27, 2026 07:12
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/drizzle-orm-1.0.0-beta.19 branch from 44c05c8 to 6c8b2ee Compare March 27, 2026 07:14
Bumps [drizzle-orm](https://github.com/drizzle-team/drizzle-orm) from 1.0.0-beta.19-d95b7a4 to 1.0.0-beta.19.
- [Release notes](https://github.com/drizzle-team/drizzle-orm/releases)
- [Commits](https://github.com/drizzle-team/drizzle-orm/commits/v1.0.0-beta.19)

---
updated-dependencies:
- dependency-name: drizzle-orm
  dependency-version: 1.0.0-beta.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/drizzle-orm-1.0.0-beta.19 branch from 6c8b2ee to f9061f9 Compare March 27, 2026 07:17
@github-actions github-actions bot merged commit 2d84d75 into main Mar 27, 2026
2 checks passed
@github-actions github-actions bot deleted the dependabot/npm_and_yarn/drizzle-orm-1.0.0-beta.19 branch March 27, 2026 07:19
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