Skip to content

Commit

Permalink
Update release 0.31.3
Browse files Browse the repository at this point in the history
  • Loading branch information
AndriiSherman committed Jul 8, 2024
1 parent b59b8f5 commit a90773c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions changelogs/drizzle-orm/0.31.3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
### Bug fixed

- 🛠️ Fixed RQB behavior for tables with same names in different schemas
- 🛠️ Fixed [BUG]: Mismatched type hints when using RDS Data API - #2097

### New Prisma-Drizzle extension

```ts
import { PrismaClient } from '@prisma/client';
import { drizzle } from 'drizzle-orm/prisma/pg';
import { User } from './drizzle';

const prisma = new PrismaClient().$extends(drizzle());
const users = await prisma.$drizzle.select().from(User);
```

For more info, check docs: https://orm.drizzle.team/docs/prisma
2 changes: 1 addition & 1 deletion drizzle-orm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "drizzle-orm",
"version": "0.31.2",
"version": "0.31.3",
"description": "Drizzle ORM package for SQL databases",
"type": "module",
"scripts": {
Expand Down

0 comments on commit a90773c

Please sign in to comment.