kaafil-react-uikit 0.11.3 → 0.11.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 +11 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,17 @@ The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
|
6
6
|
and this package uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
While on `0.x` a minor bump may carry a breaking change; the entry will say so.
|
|
8
8
|
|
|
9
|
+
## [0.11.4] — 2026-09-15
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- Peer floor moves to `kaafil-js@^0.7.0`, which coalesces identical in-flight
|
|
14
|
+
GETs at the transport. 0.11.3 fixed the duplicate capability read in this
|
|
15
|
+
package; the SDK change covers the same shape across every read hook, which
|
|
16
|
+
is where it belongs — `execute()` is one funnel, this package has thirty-odd
|
|
17
|
+
hooks. `core/internal/coalesceRead.ts` stays as the in-package seam for reads
|
|
18
|
+
that do not go through a resource method.
|
|
19
|
+
|
|
9
20
|
## [0.11.3] — 2026-09-15
|
|
10
21
|
|
|
11
22
|
### Fixed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kaafil-react-uikit",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.4",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"tag": "latest",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"peerDependencies": {
|
|
64
64
|
"react": ">=18.2.0 <20.0.0",
|
|
65
65
|
"react-dom": ">=18.2.0 <20.0.0",
|
|
66
|
-
"kaafil-js": "^0.
|
|
66
|
+
"kaafil-js": "^0.7.0"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
69
|
"react": "^19.0.0",
|