@confect/react 7.0.0 → 8.0.0
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 +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @confect/react
|
|
2
2
|
|
|
3
|
+
## 8.0.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 4bb2722: Bump Effect ecosystem to latest. `@effect/platform` is now `^0.96.1` and `@effect/platform-node` is now `^0.106.0` in `@confect/server`'s peer dependencies; `effect` peer is now `^3.21.2` across packages. Consumers must upgrade `@effect/platform`, `@effect/platform-node`, and `effect` in lockstep when bumping `@confect/server`.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 40c1cff: Switch sibling `@confect/*` peer-dependency specifiers from `workspace:*` to `workspace:^`. Published peer ranges are now caret-based (e.g. `^7.0.0`) instead of exact-pinned, so non-major upgrades of one `@confect/*` package no longer fall out of range for its peer dependents.
|
|
12
|
+
|
|
13
|
+
Paired with the Changesets `onlyUpdatePeerDependentsWhenOutOfRange` flag, this prevents the entire `@confect/*` family from being promoted to a major bump on every release when only minor/patch changes are present.
|
|
14
|
+
|
|
15
|
+
`@confect/cli` additionally moves `@effect/platform` from `peerDependencies` to `dependencies`, since the CLI consumes it as an internal implementation detail (for `FileSystem`/`Path`) rather than exposing it in its public API. Consumers no longer need to install `@effect/platform` themselves to use the CLI.
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [4bb2722]
|
|
18
|
+
- Updated dependencies [40c1cff]
|
|
19
|
+
- @confect/core@8.0.0
|
|
20
|
+
|
|
3
21
|
## 7.0.0
|
|
4
22
|
|
|
5
23
|
### Major Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@confect/react",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.0.0",
|
|
4
4
|
"description": "Client-side bindings for React apps",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -39,11 +39,11 @@
|
|
|
39
39
|
"author": "RJ Dellecese",
|
|
40
40
|
"license": "ISC",
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@effect/vitest": "0.
|
|
42
|
+
"@effect/vitest": "0.29.0",
|
|
43
43
|
"@eslint/js": "10.0.1",
|
|
44
44
|
"@types/node": "25.3.3",
|
|
45
45
|
"convex": "1.33.1",
|
|
46
|
-
"effect": "3.
|
|
46
|
+
"effect": "3.21.2",
|
|
47
47
|
"eslint": "10.0.2",
|
|
48
48
|
"prettier": "3.8.1",
|
|
49
49
|
"tsdown": "0.20.3",
|
|
@@ -54,9 +54,9 @@
|
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
56
|
"convex": "^1.30.0",
|
|
57
|
-
"effect": "^3.
|
|
57
|
+
"effect": "^3.21.2",
|
|
58
58
|
"react": "^18.0.0 || ^19.0.0",
|
|
59
|
-
"@confect/core": "
|
|
59
|
+
"@confect/core": "^8.0.0"
|
|
60
60
|
},
|
|
61
61
|
"engines": {
|
|
62
62
|
"node": ">=22",
|