@shivaedev/platform 0.3.2 → 0.3.4
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/CHANGELOG.md +18 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,24 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 0.3.4 - 2026-08-12
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- Require Effect 4.0.0-rc.108. The 4.0 release candidate starts the stable line,
|
|
10
|
+
so consumers pick up the compatibility promise the betas did not carry.
|
|
11
|
+
- Require Effect Prisma 0.5.3 and Effect tRPC 0.3.2, which move to the same
|
|
12
|
+
Effect release.
|
|
13
|
+
|
|
14
|
+
## 0.3.3 - 2026-08-12
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- Require Effect 4.0.0-beta.107, so applications can depend on packages such as
|
|
19
|
+
`@effect/platform-node` that are only published against the current beta line.
|
|
20
|
+
- Require Effect Prisma 0.5.2 and Effect tRPC 0.3.1, which move to the same
|
|
21
|
+
Effect release.
|
|
22
|
+
|
|
5
23
|
## 0.3.2 - 2026-08-12
|
|
6
24
|
|
|
7
25
|
### Changed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shivaedev/platform",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.4",
|
|
4
4
|
"description": "Opinionated Effect application infrastructure for ShivaeDev services",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -55,12 +55,12 @@
|
|
|
55
55
|
"provenance": true
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
|
-
"@effect/vitest": "4.0.0-
|
|
59
|
-
"@shivaedev/effect-prisma": "0.5.
|
|
60
|
-
"@shivaedev/effect-trpc": "0.3.
|
|
58
|
+
"@effect/vitest": "4.0.0-rc.108",
|
|
59
|
+
"@shivaedev/effect-prisma": "0.5.3",
|
|
60
|
+
"@shivaedev/effect-trpc": "0.3.2",
|
|
61
61
|
"@trpc/server": "11.18.0",
|
|
62
62
|
"better-auth": "1.6.25",
|
|
63
|
-
"effect": "4.0.0-
|
|
63
|
+
"effect": "4.0.0-rc.108"
|
|
64
64
|
},
|
|
65
65
|
"peerDependenciesMeta": {
|
|
66
66
|
"better-auth": {
|
|
@@ -68,19 +68,19 @@
|
|
|
68
68
|
}
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
|
-
"@effect/vitest": "4.0.0-
|
|
71
|
+
"@effect/vitest": "4.0.0-rc.108",
|
|
72
72
|
"@prisma-next/adapter-postgres": "0.15.0",
|
|
73
73
|
"@prisma-next/contract": "0.15.0",
|
|
74
74
|
"@prisma-next/postgres": "0.15.0",
|
|
75
75
|
"@prisma-next/sql-contract": "0.15.0",
|
|
76
76
|
"@prisma-next/target-postgres": "0.15.0",
|
|
77
|
-
"@shivaedev/effect-prisma": "0.5.
|
|
78
|
-
"@shivaedev/effect-trpc": "0.3.
|
|
77
|
+
"@shivaedev/effect-prisma": "0.5.3",
|
|
78
|
+
"@shivaedev/effect-trpc": "0.3.2",
|
|
79
79
|
"@trpc/server": "11.18.0",
|
|
80
80
|
"@types/node": "24.10.1",
|
|
81
81
|
"@typescript/native": "npm:typescript@7.0.2",
|
|
82
82
|
"better-auth": "1.6.25",
|
|
83
|
-
"effect": "4.0.0-
|
|
83
|
+
"effect": "4.0.0-rc.108",
|
|
84
84
|
"typescript": "npm:@typescript/typescript6@6.0.2",
|
|
85
85
|
"vitest": "4.1.9"
|
|
86
86
|
},
|