Skip to content
Merged
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "prisma-cli",
"version": "8.0.0-rc.10",
"version": "8.0.0-rc.11",
"private": true,
"engines": {
"node": ">=24"
Expand Down
4 changes: 2 additions & 2 deletions packages/cli-conformance/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@repo/cli-conformance",
"private": true,
"version": "8.0.0-rc.10",
"version": "8.0.0-rc.11",
"description": "Reusable conformance checks for the engine's consumers: import purity over built output, config-section validators that never throw, and verification of the tarballs a registry would receive. Depends on no package it checks.",
"type": "module",
"exports": {
Expand All @@ -24,7 +24,7 @@
"test": "pnpm run typecheck && vitest run"
},
"devDependencies": {
"@repo/tsconfig": "workspace:8.0.0-rc.10",
"@repo/tsconfig": "workspace:8.0.0-rc.11",
"@types/node": "^22.19.19",
"es-module-lexer": "^2.1.0",
"tsx": "^4.22.4",
Expand Down
4 changes: 2 additions & 2 deletions packages/cli-engine/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@
},
"devDependencies": {
"@prisma/management-api-sdk": "1.69.0",
"@repo/cli-conformance": "workspace:8.0.0-rc.10",
"@repo/tsconfig": "workspace:8.0.0-rc.10",
"@repo/cli-conformance": "workspace:8.0.0-rc.11",
"@repo/tsconfig": "workspace:8.0.0-rc.11",
"@types/node": "^22.19.19",
"ci-info": "^4.3.1",
"tsdown": "^0.21.10",
Expand Down
4 changes: 2 additions & 2 deletions packages/cli-telemetry/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@repo/cli-telemetry",
"private": true,
"version": "8.0.0-rc.10",
"version": "8.0.0-rc.11",
"description": "CLI telemetry child sender: the detached subprocess the engine hands a composed payload to, its system probes, and the POST",
"type": "module",
"sideEffects": [
Expand Down Expand Up @@ -35,7 +35,7 @@
"@vercel/detect-agent": "^1.2.3"
},
"devDependencies": {
"@repo/tsconfig": "workspace:8.0.0-rc.10",
"@repo/tsconfig": "workspace:8.0.0-rc.11",
"@types/node": "^22.19.19",
"tsdown": "^0.21.10",
"typescript": "^6.0.3",
Expand Down
12 changes: 6 additions & 6 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prisma/cli",
"version": "8.0.0-rc.10",
"version": "8.0.0-rc.11",
"description": "Command-line interface for the Prisma Developer Platform.",
"type": "module",
"bin": {
Expand Down Expand Up @@ -50,10 +50,10 @@
"dependencies": {
"@manypkg/tools": "^2.1.2",
"@prisma/cli-engine": "workspace:0.3.0",
"@prisma/composer-cli": "0.14.0",
"@prisma/composer-cli": "0.15.0",
"@prisma/compute-sdk": "0.42.0",
"@prisma/management-api-sdk": "1.69.0",
"@prisma/orm-toolchain": "8.0.0-rc.7",
"@prisma/orm-toolchain": "8.0.0-rc.8",
"@vercel/detect-agent": "^1.2.3",
"better-result": "^2.9.2",
"dotenv": "^17.4.2",
Expand All @@ -63,9 +63,9 @@
"devDependencies": {
"@prisma/composer": "0.14.0",
"@prisma/credentials-store": "^7.8.0",
"@repo/cli-conformance": "workspace:8.0.0-rc.10",
"@repo/cli-telemetry": "workspace:8.0.0-rc.10",
"@repo/tsconfig": "workspace:8.0.0-rc.10",
"@repo/cli-conformance": "workspace:8.0.0-rc.11",
"@repo/cli-telemetry": "workspace:8.0.0-rc.11",
"@repo/tsconfig": "workspace:8.0.0-rc.11",
"@types/node": "^22.19.19",
"tsdown": "^0.21.10",
"tsx": "^4.22.4",
Expand Down
25 changes: 1 addition & 24 deletions packages/cli/scripts/conformance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,30 +109,7 @@ async function tarball(): Promise<readonly Finding[]> {
shellPackage: "@prisma/cli",
enginePackage: "@prisma/cli-engine",
familyPackages: ["@prisma/composer-cli", "@prisma/orm-toolchain"],
// An engine version transition is in flight: the engine must
// publish 0.3.0 before either family can peer it, so both still
// declare 0.2.3. The release PR that pins the families' new
// versions removes these entries and restores the empty list.
exceptions: [
{
familyPackage: "@prisma/composer-cli",
familyPin: "0.2.3",
shellPin: "0.3.0",
reason:
"@prisma/cli-engine 0.3.0 moves @prisma/management-api-sdk to a peer dependency so one copy of the SDK's client type serves the engine and the shell. Breaking for the engine's consumers, so both families must republish against it.",
removeWhen:
"@prisma/composer-cli publishes a version peering @prisma/cli-engine 0.3.0 and this repo pins it.",
},
{
familyPackage: "@prisma/orm-toolchain",
familyPin: "0.2.3",
shellPin: "0.3.0",
reason:
"@prisma/cli-engine 0.3.0 moves @prisma/management-api-sdk to a peer dependency so one copy of the SDK's client type serves the engine and the shell. Breaking for the engine's consumers, so both families must republish against it.",
removeWhen:
"@prisma/orm-toolchain publishes a version peering @prisma/cli-engine 0.3.0 and this repo pins it.",
},
],
exceptions: [],
channel: CHANNEL,
sandboxDir: join(WORK_DIR, "sandbox"),
},
Expand Down
2 changes: 1 addition & 1 deletion packages/compute/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"test": "vitest run"
},
"devDependencies": {
"@repo/tsconfig": "workspace:8.0.0-rc.10",
"@repo/tsconfig": "workspace:8.0.0-rc.11",
"@types/node": "^22.19.19",
"tsdown": "^0.21.10",
"typescript": "^6.0.3",
Expand Down
12 changes: 6 additions & 6 deletions packages/prisma/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "prisma",
"version": "8.0.0-rc.10",
"version": "8.0.0-rc.11",
"description": "The Prisma CLI: one binary for the ORM, Composer, and the Prisma Developer Platform.",
"type": "module",
"bin": {
Expand Down Expand Up @@ -50,21 +50,21 @@
"dependencies": {
"@manypkg/tools": "^2.1.2",
"@prisma/cli-engine": "workspace:0.3.0",
"@prisma/composer-cli": "0.14.0",
"@prisma/composer-cli": "0.15.0",
"@prisma/compute-sdk": "0.42.0",
"@prisma/management-api-sdk": "1.69.0",
"@prisma/orm-toolchain": "8.0.0-rc.7",
"@prisma/orm-toolchain": "8.0.0-rc.8",
"@vercel/detect-agent": "^1.2.3",
"better-result": "^2.9.2",
"dotenv": "^17.4.2",
"execa": "^9.6.1",
"open": "^11.0.0"
},
"devDependencies": {
"@prisma/cli": "workspace:8.0.0-rc.10",
"@prisma/cli": "workspace:8.0.0-rc.11",
"@prisma/credentials-store": "^7.8.0",
"@repo/cli-telemetry": "workspace:8.0.0-rc.10",
"@repo/tsconfig": "workspace:8.0.0-rc.10",
"@repo/cli-telemetry": "workspace:8.0.0-rc.11",
"@repo/tsconfig": "workspace:8.0.0-rc.11",
"@types/node": "^22.19.19",
"tsdown": "^0.21.10",
"typescript": "^6.0.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/tsconfig/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@repo/tsconfig",
"private": true,
"version": "8.0.0-rc.10",
"version": "8.0.0-rc.11",
"description": "Base tsconfig providing package for the monorepo",
"license": "Apache-2.0",
"files": [
Expand Down
Loading
Loading