Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,14 @@
"@nestjs/jwt": "^11.0.1",
"@nestjs/platform-express": "^11.0.1",
"@nestjs/schedule": "^6.0.1",
"@prisma/client": "^6.17.0",
"@prisma/adapter-pg": "^7.3.0",
"@prisma/client": "^7.3.0",
Copy link

Copilot AI Jan 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Prisma Client is being upgraded to version 7.3.0, but the Prisma CLI (devDependency) remains at version 6.17.0. This version mismatch can cause serious compatibility issues because the Prisma CLI generates the Prisma Client code during the build process.

Prisma Client 7.x requires Prisma CLI 7.x for proper schema generation and database migrations. The versions should be kept in sync to avoid:

  • Schema generation failures
  • Type definition mismatches
  • Migration incompatibilities
  • Runtime errors

The Prisma CLI dependency in package.json should also be upgraded to ^7.3.0 to match the client version.

Copilot uses AI. Check for mistakes.
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot open a new pull request to apply changes based on this feedback

"@prisma/extension-accelerate": "^2.0.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.2",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"pg": "^8.17.2",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1"
},
Expand All @@ -45,6 +47,7 @@
"@types/express": "^5.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^22.10.7",
"@types/pg": "^8.16.0",
"@types/serve-static": "^1.15.9",
"@types/superagent": "^8.1.9",
"@types/supertest": "^6.0.2",
Expand All @@ -54,7 +57,7 @@
"globals": "^16.0.0",
"jest": "^30.0.0",
"prettier": "^3.4.2",
"prisma": "^6.17.0",
"prisma": "^7.3.0",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
Expand Down
Loading