@prisma/orm-mongo 8.0.0-rc.7-dev.5 → 8.0.0-rc.8-dev.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prisma/orm-mongo",
3
- "version": "8.0.0-rc.7-dev.5",
3
+ "version": "8.0.0-rc.8-dev.1",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -10,16 +10,16 @@
10
10
  "skills"
11
11
  ],
12
12
  "dependencies": {
13
- "@prisma/orm-family-mongo": "8.0.0-rc.7-dev.5",
14
- "@prisma/orm-framework": "8.0.0-rc.7-dev.5",
15
- "@prisma/orm-target-mongo": "8.0.0-rc.7-dev.5",
16
- "@prisma/orm-toolchain": "8.0.0-rc.7-dev.5",
13
+ "@prisma/orm-family-mongo": "8.0.0-rc.8-dev.1",
14
+ "@prisma/orm-framework": "8.0.0-rc.8-dev.1",
15
+ "@prisma/orm-target-mongo": "8.0.0-rc.8-dev.1",
16
+ "@prisma/orm-toolchain": "8.0.0-rc.8-dev.1",
17
17
  "pathe": "^2.0.3"
18
18
  },
19
19
  "devDependencies": {
20
- "@internal/mongo": "8.0.0-rc.7-dev.5",
21
- "@repo/tsconfig": "8.0.0-rc.7-dev.5",
22
- "@repo/tsdown": "8.0.0-rc.7-dev.5",
20
+ "@internal/mongo": "8.0.0-rc.8-dev.1",
21
+ "@repo/tsconfig": "8.0.0-rc.8-dev.1",
22
+ "@repo/tsdown": "8.0.0-rc.8-dev.1",
23
23
  "tsdown": "0.22.14",
24
24
  "typescript": "5.9.3"
25
25
  },
@@ -17,7 +17,7 @@ description: >-
17
17
  (schema.prisma + @prisma/client projects).
18
18
  metadata:
19
19
  library: '@prisma/orm-mongo'
20
- library_version: '8.0.0-rc.7-dev.5'
20
+ library_version: '8.0.0-rc.8-dev.1'
21
21
  ---
22
22
 
23
23
  # Prisma Next (Prisma 8)
@@ -0,0 +1,36 @@
1
+ ---
2
+ from: "8.0.0-rc.7"
3
+ to: "8.0.0-rc.8"
4
+ changes:
5
+ - id: engine-pin-moves-to-0-3-0
6
+ summary: |
7
+ The toolchain now peers `@prisma/cli-engine@0.3.0` (up from 0.2.3). Projects assembled
8
+ by the unified `prisma` CLI resolve the engine automatically. A project that pins
9
+ `@prisma/cli-engine` itself must move the pin to `0.3.0`. The engine now declares
10
+ `@prisma/management-api-sdk` as a peer dependency (`^1.55.0`) instead of a regular
11
+ dependency; the `prisma` CLI shell supplies it at runtime, so only a project that runs
12
+ the engine outside the CLI shell needs to install the SDK itself.
13
+ detection:
14
+ glob: "**/package.json"
15
+ contains:
16
+ - '"@prisma/cli-engine": "0.2.3"'
17
+ - id: contract-artifacts-restamp
18
+ summary: |
19
+ The emitted `contract.json` / `contract.d.ts` embed the toolchain version, which moves
20
+ to 8.0.0-rc.8. Run `contract emit` once after upgrading so the emitted artifacts match
21
+ the installed toolchain.
22
+ detection:
23
+ glob: "**/contract.json"
24
+ contains:
25
+ - '"version": "8.0.0-rc.7"'
26
+ ---
27
+
28
+ # 8.0.0-rc.7 → 8.0.0-rc.8 — User upgrade instructions
29
+
30
+ ## `engine-pin-moves-to-0-3-0`
31
+
32
+ For every `package.json` matched by `detection`, change the `@prisma/cli-engine` version from `0.2.3` to `0.3.0` and reinstall. If the project runs the engine outside the unified `prisma` CLI shell (rare), also install `@prisma/management-api-sdk` at a version satisfying `^1.55.0` — the engine now declares it as a peer dependency and no longer bundles it.
33
+
34
+ ## `contract-artifacts-restamp`
35
+
36
+ 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 is the embedded `version` moving to `8.0.0-rc.8`.
@@ -0,0 +1,35 @@
1
+ ---
2
+ from: "8.0.0-rc.7"
3
+ to: "8.0.0-rc.8"
4
+ changes:
5
+ - id: engine-pin-moves-to-0-3-0
6
+ summary: |
7
+ The toolchain now peers `@prisma/cli-engine@0.3.0` (up from 0.2.3). An extension that
8
+ pins `@prisma/cli-engine` in its own manifests must move the pin to `0.3.0`. The engine
9
+ now declares `@prisma/management-api-sdk` as a peer dependency (`^1.55.0`) instead of a
10
+ regular dependency; the `prisma` CLI shell supplies it at runtime, so only tooling that
11
+ runs the engine outside the CLI shell needs to install the SDK itself.
12
+ detection:
13
+ glob: "**/package.json"
14
+ contains:
15
+ - '"@prisma/cli-engine": "0.2.3"'
16
+ - id: contract-space-restamp
17
+ summary: |
18
+ The emitted `contract.json` / `contract.d.ts` embed the toolchain version, which moves
19
+ to 8.0.0-rc.8. Rebuild the extension's contract space (the package's `build:contract-space`
20
+ script) once after upgrading so the emitted artifacts match the installed toolchain.
21
+ detection:
22
+ glob: "**/contract.json"
23
+ contains:
24
+ - '"version": "8.0.0-rc.7"'
25
+ ---
26
+
27
+ # 8.0.0-rc.7 → 8.0.0-rc.8 — Extension author upgrade instructions
28
+
29
+ ## `engine-pin-moves-to-0-3-0`
30
+
31
+ For every `package.json` matched by `detection`, change the `@prisma/cli-engine` version from `0.2.3` to `0.3.0` and reinstall. If the extension's tooling runs the engine outside the unified `prisma` CLI shell (rare), also install `@prisma/management-api-sdk` at a version satisfying `^1.55.0` — the engine now declares it as a peer dependency and no longer bundles it.
32
+
33
+ ## `contract-space-restamp`
34
+
35
+ For every `contract.json` matched by `detection`, run the extension package's `build:contract-space` script (or its emit command) once after upgrading. The only expected diff is the embedded `version` moving to `8.0.0-rc.8`.