Skip to content

Commit

Permalink
chore: support for Prisma 5.13 (#1374)
Browse files Browse the repository at this point in the history
  • Loading branch information
ymc9 authored Apr 25, 2024
1 parent e5dd580 commit 1be5d52
Show file tree
Hide file tree
Showing 7 changed files with 59 additions and 41 deletions.
4 changes: 2 additions & 2 deletions packages/plugins/trpc/tests/projects/t3-trpc-v10/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"start": "next start"
},
"dependencies": {
"@prisma/client": "5.12.0",
"@prisma/client": "^5.13.0",
"@t3-oss/env-nextjs": "^0.7.1",
"@tanstack/react-query": "^4.36.1",
"@trpc/client": "^10.43.6",
Expand All @@ -35,7 +35,7 @@
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.54.0",
"eslint-config-next": "^14.0.4",
"prisma": "5.12.0",
"prisma": "^5.13.0",
"typescript": "^5.1.6"
},
"ct3aMetadata": {
Expand Down
2 changes: 1 addition & 1 deletion packages/runtime/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
"zod-validation-error": "^1.5.0"
},
"peerDependencies": {
"@prisma/client": "5.0.0 - 5.12.x"
"@prisma/client": "5.0.0 - 5.13.x"
},
"author": {
"name": "ZenStack Team"
Expand Down
6 changes: 3 additions & 3 deletions packages/schema/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -122,10 +122,10 @@
"zod-validation-error": "^1.5.0"
},
"peerDependencies": {
"prisma": "5.0.0 - 5.12.x"
"prisma": "5.0.0 - 5.13.x"
},
"devDependencies": {
"@prisma/client": "5.12.0",
"@prisma/client": "^5.13.0",
"@types/async-exit-hook": "^2.0.0",
"@types/pluralize": "^0.0.29",
"@types/semver": "^7.3.13",
Expand All @@ -137,7 +137,7 @@
"@zenstackhq/runtime": "workspace:*",
"dotenv": "^16.0.3",
"esbuild": "^0.15.12",
"prisma": "5.12.0",
"prisma": "^5.13.0",
"renamer": "^4.0.0",
"tmp": "^0.2.1",
"tsc-alias": "^1.7.0",
Expand Down
76 changes: 47 additions & 29 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions tests/integration/test-run/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "5.12.0",
"@prisma/client": "^5.13.0",
"@zenstackhq/runtime": "file:../../../packages/runtime/dist",
"prisma": "5.12.0",
"prisma": "^5.13.0",
"react": "^18.2.0",
"swr": "^1.3.0",
"typescript": "^4.9.3",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"lint": "next lint"
},
"dependencies": {
"@prisma/client": "5.12.0",
"@prisma/client": "^5.13.0",
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
Expand All @@ -22,6 +22,6 @@
"zod": "^3.22.4"
},
"devDependencies": {
"prisma": "5.12.0"
"prisma": "^5.13.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"lint": "next lint"
},
"dependencies": {
"@prisma/client": "5.12.0",
"@prisma/client": "^5.13.0",
"@tanstack/react-query": "^4.22.4",
"@trpc/client": "^10.34.0",
"@trpc/next": "^10.34.0",
Expand All @@ -26,6 +26,6 @@
"zod": "^3.22.4"
},
"devDependencies": {
"prisma": "5.12.0"
"prisma": "^5.13.0"
}
}

0 comments on commit 1be5d52

Please sign in to comment.