@shivaedev/effect-trpc 0.3.0 → 0.3.2
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 +14 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 0.3.2 - 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
|
+
|
|
12
|
+
## 0.3.1 - 2026-08-12
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
|
|
16
|
+
- Require Effect 4.0.0-beta.107, so applications can depend on packages such as
|
|
17
|
+
`@effect/platform-node` that are only published against the current beta line.
|
|
18
|
+
|
|
5
19
|
## 0.3.0 - 2026-08-03
|
|
6
20
|
|
|
7
21
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shivaedev/effect-trpc",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Effect-native procedures and testing for tRPC",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
"provenance": true
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
|
-
"@effect/vitest": "4.0.0-
|
|
46
|
+
"@effect/vitest": "4.0.0-rc.108",
|
|
47
47
|
"@trpc/server": "11.18.0",
|
|
48
|
-
"effect": "4.0.0-
|
|
48
|
+
"effect": "4.0.0-rc.108"
|
|
49
49
|
},
|
|
50
50
|
"peerDependenciesMeta": {
|
|
51
51
|
"@effect/vitest": {
|
|
@@ -53,11 +53,11 @@
|
|
|
53
53
|
}
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@effect/vitest": "4.0.0-
|
|
56
|
+
"@effect/vitest": "4.0.0-rc.108",
|
|
57
57
|
"@trpc/server": "11.18.0",
|
|
58
58
|
"@types/node": "24.10.1",
|
|
59
59
|
"@typescript/native": "npm:typescript@7.0.2",
|
|
60
|
-
"effect": "4.0.0-
|
|
60
|
+
"effect": "4.0.0-rc.108",
|
|
61
61
|
"typescript": "npm:@typescript/typescript6@6.0.2",
|
|
62
62
|
"vitest": "4.1.9"
|
|
63
63
|
},
|