@prisma/orm-mongo 8.0.0-rc.8-dev.2 → 8.0.0-rc.8-dev.3

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.2",
3
+ "version": "8.0.0-rc.8-dev.3",
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.2",
14
- "@prisma/orm-framework": "8.0.0-rc.8-dev.2",
15
- "@prisma/orm-target-mongo": "8.0.0-rc.8-dev.2",
16
- "@prisma/orm-toolchain": "8.0.0-rc.8-dev.2",
13
+ "@prisma/orm-family-mongo": "8.0.0-rc.8-dev.3",
14
+ "@prisma/orm-framework": "8.0.0-rc.8-dev.3",
15
+ "@prisma/orm-target-mongo": "8.0.0-rc.8-dev.3",
16
+ "@prisma/orm-toolchain": "8.0.0-rc.8-dev.3",
17
17
  "pathe": "^2.0.3"
18
18
  },
19
19
  "devDependencies": {
20
- "@internal/mongo": "8.0.0-rc.8-dev.2",
21
- "@repo/tsconfig": "8.0.0-rc.8-dev.2",
22
- "@repo/tsdown": "8.0.0-rc.8-dev.2",
20
+ "@internal/mongo": "8.0.0-rc.8-dev.3",
21
+ "@repo/tsconfig": "8.0.0-rc.8-dev.3",
22
+ "@repo/tsdown": "8.0.0-rc.8-dev.3",
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.2'
20
+ library_version: '8.0.0-rc.8-dev.3'
21
21
  ---
22
22
 
23
23
  # Prisma Next (Prisma 8)
@@ -0,0 +1,29 @@
1
+ ---
2
+ from: "8.0.0-rc.8"
3
+ to: "8.0.0-rc.9"
4
+ changes:
5
+ - id: mongo-index-projections-use-native-lists
6
+ summary: |
7
+ MongoDB wildcard index `include` and `exclude` projections in Prisma schema files must use native PSL lists instead of encoded list strings.
8
+ detection:
9
+ glob: "**/*.prisma"
10
+ matches:
11
+ - '\b(?:include|exclude)\s*:\s*"\[[^"\r\n]*\]"'
12
+ - id: mongo-text-index-weights-use-native-records
13
+ summary: |
14
+ MongoDB text-index `weights` in Prisma schema files must use native PSL records instead of encoded JSON strings.
15
+ detection:
16
+ glob: "**/*.prisma"
17
+ matches:
18
+ - '\bweights\s*:\s*"\{\s*(?:\\.|[^"\\])*\}"'
19
+ ---
20
+
21
+ # 8.0.0-rc.8 → 8.0.0-rc.9 — User upgrade instructions
22
+
23
+ ## `mongo-index-projections-use-native-lists`
24
+
25
+ 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`.
26
+
27
+ ## `mongo-text-index-weights-use-native-records`
28
+
29
+ For every Prisma schema matched by `detection`, replace the encoded JSON string passed to `weights` with a native PSL record. For example, change `weights: "{\"title\": 10}"` to `weights: { title: 10 }`, preserving every field name and numeric weight.