Closed renovate[bot] closed 8 months ago
The latest updates on your projects. Learn more about Vercel for Git βοΈ
Name | Status | Preview | Comments | Updated (UTC) |
---|---|---|---|---|
builderai | β Ready (Inspect) | Visit Preview | π¬ Add feedback | Feb 29, 2024 8:44pm |
This PR contains the following updates:
^0.29.3
->^0.29.4
Release Notes
drizzle-team/drizzle-orm (drizzle-orm)
### [`v0.29.4`](https://togithub.com/drizzle-team/drizzle-orm/releases/tag/0.29.4) [Compare Source](https://togithub.com/drizzle-team/drizzle-orm/compare/0.29.3...0.29.4) ##### New Features ##### π **Neon HTTP Batch** For more info you can check [Neon docs](https://neon.tech/docs/serverless/serverless-driver#issue-multiple-queries-with-the-transaction-function) **Example** ```ts const batchResponse: BatchType = await db.batch([ db.insert(usersTable).values({ id: 1, name: 'John' }).returning({ id: usersTable.id, }), db.insert(usersTable).values({ id: 2, name: 'Dan' }), db.query.usersTable.findMany({}), db.query.usersTable.findFirst({}), ]); ``` ```ts type BatchType = [ { id: number; }[], NeonHttpQueryResultConfiguration
π Schedule: Branch creation - At any time (no schedule defined), 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.
This PR has been generated by Mend Renovate. View repository job log here.