@quonfig/react-native 0.0.3 → 0.0.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 +10 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.0.4 - 2026-05-21
|
|
4
|
+
|
|
5
|
+
- Reworked the `@quonfig/react` `devDependency` from `portal:../sdk-react` to a published npm range
|
|
6
|
+
so Dependabot's isolated, single-repo npm updater can resolve the dependency tree (qfg-zu8o,
|
|
7
|
+
option A). Removed the now-obsolete "Replace local file/portal dep with npm version for CI" step
|
|
8
|
+
from `test.yml` and `release.yaml`, added a `CONTRIBUTING.md` documenting `yarn link` as the
|
|
9
|
+
local-dev path for testing against an unpublished `../sdk-react`.
|
|
10
|
+
- Bumped the `@quonfig/react` `peerDependency` floor `>=0.0.13` → `>=0.0.14` and set the
|
|
11
|
+
`devDependency` to the same `>=0.0.14` range so dev and peer stay consistent.
|
|
12
|
+
|
|
3
13
|
## 0.0.3 - 2026-05-14
|
|
4
14
|
|
|
5
15
|
- CI / tooling only — no functional or public API changes. Made the release workflow's test gate
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"packageManager": "yarn@4.11.0",
|
|
3
3
|
"name": "@quonfig/react-native",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.4",
|
|
5
5
|
"description": "React Native bindings for Quonfig — a thin polyfill wrapper around @quonfig/react",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
7
7
|
"module": "dist/index.mjs",
|
|
@@ -53,12 +53,12 @@
|
|
|
53
53
|
"react-native-get-random-values": "^1.11.0"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
|
-
"@quonfig/react": ">=0.0.
|
|
56
|
+
"@quonfig/react": ">=0.0.14",
|
|
57
57
|
"react": "^18 || ^19",
|
|
58
58
|
"react-native": ">=0.70"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@quonfig/react": ">=0.0.
|
|
61
|
+
"@quonfig/react": ">=0.0.14",
|
|
62
62
|
"@types/base-64": "^1.0.2",
|
|
63
63
|
"@types/node": "^18.6.5",
|
|
64
64
|
"prettier": "^3.0.0",
|