upgrading/app/upgrades/8.0.0-rc.6-to-8.0.0-rc.7/instructions.md
upgrading/app/upgrades/8.0.0-rc.6-to-8.0.0-rc.7/instructions.mdBrowse 76 files
460 tokens
1,794 bytes
Token encoding: o200k_base
Snapshot fac8604
← Back to SKILL.md
from: "8.0.0-rc.6" to: "8.0.0-rc.7" changes:
- id: rename-orm-pagination-methods
summary: |
Rename ORM collection pagination calls from
.take(n)to.limit(n)and from.skip(n)to.offset(n). This applies to SQL and Mongo ORM collections, including relation refinements and grouped SQL collections. Do not rename Mongo query-builder.skip(n)calls: that lower-level API continues to mirror the$skippipeline stage. - id: contract-artifacts-restamp
summary: |
The emitted
contract.json/contract.d.tsembed the toolchain version, which moves to 8.0.0-rc.7. Runcontract emitonce after upgrading so the emitted artifacts match the installed toolchain. The toolchain also re-released against@prisma/cli-engine@0.2.3(a CLI-side change with no ORM-facing surface). detection: glob: "**/contract.json" contains: - '"version": "8.0.0-rc.6"'
8.0.0-rc.6 → 8.0.0-rc.7 — User upgrade instructions
rename-orm-pagination-methods
Find calls on Prisma 8 ORM collections and apply these translations:
.take(n)→.limit(n).skip(n)→.offset(n)
Apply the same translation inside include(...) refinement callbacks, combine(...) branches, and after SQL ORM groupBy(...). Leave Mongo query-builder chains that start from db.query.from(...) unchanged: their .limit(...) and .skip(...) methods name Mongo aggregation pipeline stages rather than the ORM collection API.
contract-artifacts-restamp
For every contract.json matched by detection, run the project's emit command (prisma contract emit, or the project's contract:emit script) once after upgrading. The only expected diff beyond the pagination rename is the embedded version moving to 8.0.0-rc.7.