@prisma/orm-mongo 8.0.0-rc.8-dev.20 → 8.0.0-rc.9

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.8-dev.20",
3
+ "version": "8.0.0-rc.9",
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.8-dev.20",
14
- "@prisma/orm-framework": "8.0.0-rc.8-dev.20",
15
- "@prisma/orm-target-mongo": "8.0.0-rc.8-dev.20",
16
- "@prisma/orm-toolchain": "8.0.0-rc.8-dev.20",
13
+ "@prisma/orm-family-mongo": "8.0.0-rc.9",
14
+ "@prisma/orm-framework": "8.0.0-rc.9",
15
+ "@prisma/orm-target-mongo": "8.0.0-rc.9",
16
+ "@prisma/orm-toolchain": "8.0.0-rc.9",
17
17
  "pathe": "^2.0.3"
18
18
  },
19
19
  "devDependencies": {
20
- "@internal/mongo": "8.0.0-rc.8-dev.20",
21
- "@repo/tsconfig": "8.0.0-rc.8-dev.20",
22
- "@repo/tsdown": "8.0.0-rc.8-dev.20",
20
+ "@internal/mongo": "8.0.0-rc.9",
21
+ "@repo/tsconfig": "8.0.0-rc.9",
22
+ "@repo/tsdown": "8.0.0-rc.9",
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.8-dev.20'
20
+ library_version: '8.0.0-rc.9'
21
21
  ---
22
22
 
23
23
  # Prisma Next (Prisma 8)
@@ -2,6 +2,9 @@
2
2
  from: "8.0.0-rc.8"
3
3
  to: "8.0.0-rc.9"
4
4
  changes:
5
+ - id: reemit-supabase-extension-version
6
+ summary: |
7
+ Re-emit contracts using the Supabase extension so their extension version metadata matches the installed rc.9 package.
5
8
  - id: mongo-index-projections-use-native-lists
6
9
  summary: |
7
10
  MongoDB wildcard index `include` and `exclude` projections in Prisma schema files must use native PSL lists instead of encoded list strings.
@@ -33,6 +36,10 @@ changes:
33
36
 
34
37
  # 8.0.0-rc.8 → 8.0.0-rc.9 — User upgrade instructions
35
38
 
39
+ ## `reemit-supabase-extension-version`
40
+
41
+ After updating the Supabase extension to rc.9, run `prisma contract emit` for each contract that uses it and commit the regenerated `contract.json` and `contract.d.ts`. Verify that the Supabase extension's version metadata is `8.0.0-rc.9` in both artifacts; do not edit generated contracts by hand.
42
+
36
43
  ## `mongo-index-projections-use-native-lists`
37
44
 
38
45
  For every Prisma schema matched by `detection`, replace encoded projection strings with native PSL lists. For example, change `include: "[a, b]"` to `include: ["a", "b"]` and `exclude: "[a]"` to `exclude: ["a"]`. Decode each string's fields in their existing order and preserve whether the argument is `include` or `exclude`.