prisma-sql 1.63.0 → 1.65.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prisma-sql",
3
- "version": "1.63.0",
3
+ "version": "1.65.0",
4
4
  "description": "Convert Prisma queries to optimized SQL with type safety. 2-7x faster than Prisma Client.",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.js",
package/readme.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  <img width="250" height="170" alt="image" src="https://github.com/user-attachments/assets/3f9233f2-5d5c-41e3-b1cd-ced7ce0b54c2" />
4
4
 
5
- Speed up Prisma reads **2-7x** by executing queries via postgres.js or better-sqlite3 instead of Prisma's query engine.
5
+ Prerender Prisma SQL and run via postgres.js or better-sqlite3.
6
6
 
7
7
  **Same API. Same types. Just faster.**
8
8
 
@@ -1155,7 +1155,7 @@ Compare with Prisma's query log:
1155
1155
  new PrismaClient({ log: ['query'] })
1156
1156
  ```
1157
1157
 
1158
- File an issue if results differ: https://github.com/multipliedtwice/prisma-sql/issues
1158
+ File an issue if results differ: https://github.com/multipliedtwice/prisma-to-sql/issues
1159
1159
 
1160
1160
  ### "Connection pool exhausted"
1161
1161
 
@@ -1235,7 +1235,7 @@ A: Not yet. `$batch` is currently PostgreSQL only. SQLite support coming soon.
1235
1235
  To run examples locally:
1236
1236
 
1237
1237
  ```bash
1238
- git clone https://github.com/multipliedtwice/prisma-sql
1238
+ git clone https://github.com/multipliedtwice/prisma-to-sql
1239
1239
  cd prisma-sql
1240
1240
  npm install
1241
1241
  npm test