We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 800a456 commit 5be9353Copy full SHA for 5be9353
4 files changed
src/ui/components/landing/benchmark/components/RuntimeSelector/RuntimeSelector.tsx
@@ -26,11 +26,11 @@ const RuntimeSelector: FC<Props> = ({ disabled }) => {
26
{ value: "bun-1.3.4", name: "Bun v1.3.4" },
27
{ value: "node-24", name: "Node 24.6.0" },
28
]
29
- : selectedItems.orm === "prisma-v7.1.0-20260430-jit"
+ : selectedItems.orm === "prisma-v7.8.0-20260430-jit"
30
? [
31
{
32
value: "bun-1.3.13-bun-sql",
33
- name: "Bun v1.3.13 / Bun SQL",
+ name: "Bun v1.3.13 / node-postgres",
34
},
35
36
: selectedItems.orm === "go-20260430-jit" ||
src/ui/components/landing/benchmark/configurationData.ts
@@ -14,18 +14,19 @@ const configurationData = {
14
drizzle_version: "v1.0.0-rc.1",
15
compare_version: "v1.25.5",
16
17
+ "prisma-v7.8.0-20260430-jit": {
18
+ value: "Drizzle v1.0.0-rc.1 JIT vs Prisma v7.8.0",
19
+ config_info: "Drizzle v1.0.0-rc.1 JIT vs Prisma v7.8.0",
20
+ drizzle_version: "v1.0.0-rc.1 JIT",
21
+ compare_version: "v7.8.0",
22
+ },
23
"prisma-v7.1.0": {
24
value: "Drizzle v1.0.0-beta.2 vs Prisma v7.1.0",
25
config_info: "Drizzle v1.0.0-beta.2 vs Prisma v7.1.0",
drizzle_version: "v1.0.0-beta.2",
compare_version: "v7.1.0",
- "prisma-v7.1.0-20260430-jit": {
- value: "Drizzle v1.0.0-rc.1 JIT vs Prisma v7.1.0",
- config_info: "Drizzle v1.0.0-rc.1 JIT vs Prisma v7.1.0",
- drizzle_version: "v1.0.0-rc.1 JIT",
- compare_version: "v7.1.0",
- },
+
"prisma-v5.18.0": {
value: "Drizzle v0.33.0 vs Prisma v5.18.0",
config_info: "Drizzle v0.33.0 vs Prisma v5.18.0",
src/ui/components/landing/benchmark/types.ts
@@ -45,7 +45,7 @@ export interface IJSONData {
45
export interface IParams {
46
orm:
47
| "prisma-v7.1.0"
48
- | "prisma-v7.1.0-20260430-jit"
+ | "prisma-v7.8.0-20260430-jit"
49
| "prisma-v5.18.0"
50
| "go"
51
| "go-20260430-jit"
src/ui/components/landing/benchmark/utils/getBenchmarkData.ts
@@ -44,7 +44,7 @@ const variants = [
44
compareData: data["30042026:go"],
- orm: "prisma-v7.1.0-20260430-jit",
+ orm: "prisma-v7.8.0-20260430-jit",
dbSize: "micro",
projectType: "ecommerce",
database: "postgres",
0 commit comments