@prisma/orm-mongo 8.0.0-rc.11-dev.11 → 8.0.0-rc.11-dev.13

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.11-dev.11",
3
+ "version": "8.0.0-rc.11-dev.13",
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.11-dev.11",
14
- "@prisma/orm-framework": "8.0.0-rc.11-dev.11",
15
- "@prisma/orm-target-mongo": "8.0.0-rc.11-dev.11",
16
- "@prisma/orm-toolchain": "8.0.0-rc.11-dev.11",
13
+ "@prisma/orm-family-mongo": "8.0.0-rc.11-dev.13",
14
+ "@prisma/orm-framework": "8.0.0-rc.11-dev.13",
15
+ "@prisma/orm-target-mongo": "8.0.0-rc.11-dev.13",
16
+ "@prisma/orm-toolchain": "8.0.0-rc.11-dev.13",
17
17
  "pathe": "^2.0.3"
18
18
  },
19
19
  "devDependencies": {
20
- "@internal/mongo": "8.0.0-rc.11-dev.11",
21
- "@repo/tsconfig": "8.0.0-rc.11-dev.11",
22
- "@repo/tsdown": "8.0.0-rc.11-dev.11",
20
+ "@internal/mongo": "8.0.0-rc.11-dev.13",
21
+ "@repo/tsconfig": "8.0.0-rc.11-dev.13",
22
+ "@repo/tsdown": "8.0.0-rc.11-dev.13",
23
23
  "tsdown": "0.22.14",
24
24
  "typescript": "5.9.3"
25
25
  },
@@ -15,7 +15,7 @@ description: >-
15
15
  ORM 7 or earlier (schema.prisma + @prisma/client).
16
16
  metadata:
17
17
  library: '@prisma/orm-mongo'
18
- library_version: '8.0.0-rc.11-dev.11'
18
+ library_version: '8.0.0-rc.11-dev.13'
19
19
  version: '2026-09-12'
20
20
  ---
21
21
 
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  from: 8.0.0-rc.11
3
3
  to: 8.0.0-rc.12
4
+ # contract.d.ts now orders every collection the way contract.json does; a re-emit reorders, nothing else.
4
5
  changes:
5
6
  - id: params-only-sql-facade-prepare
6
7
  summary: Replace injected SQL-builder preparation callbacks with params-only callbacks and lexical facade SQL access.
@@ -1,6 +1,8 @@
1
1
  ---
2
2
  from: 8.0.0-rc.11
3
3
  to: 8.0.0-rc.12
4
+ # contract.d.ts now orders every collection the way contract.json does; a re-emit reorders, nothing else.
5
+ # Prepared include decoder specialization adds no consumer migration; retain existing entries below.
4
6
  changes:
5
7
  - id: expression-codec-on-return-type
6
8
  summary: Move custom expression wrapper codec metadata to returnType.codec and remove the separate ExpressionImpl codec argument.