@quonfig/react-native 0.0.2 → 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 +18 -0
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
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
|
+
|
|
13
|
+
## 0.0.3 - 2026-05-14
|
|
14
|
+
|
|
15
|
+
- CI / tooling only — no functional or public API changes. Made the release workflow's test gate
|
|
16
|
+
real by adding a polyfill smoke test (`test/polyfill.test.cjs`) and switching the `test` script to
|
|
17
|
+
an explicit file path for Node 20 compatibility. Bumped GitHub Actions dependencies:
|
|
18
|
+
`actions/checkout` 3.6.0 → 6.0.2, `actions/cache` 4.3.0 → 5.0.5, `actions/setup-node` 4.4.0 →
|
|
19
|
+
6.4.0.
|
|
20
|
+
|
|
3
21
|
## 0.0.2 - 2026-05-13
|
|
4
22
|
|
|
5
23
|
- First version published to npm. No functional changes from `0.0.1`. Version bumped solely to
|
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",
|
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
"prettier": "prettier . -l",
|
|
39
39
|
"prettier:fix": "prettier --write .",
|
|
40
40
|
"prettier:check": "prettier . -l",
|
|
41
|
+
"test": "node --test test/polyfill.test.cjs",
|
|
41
42
|
"version": "prettier --write CHANGELOG.md README.md && git add CHANGELOG.md README.md"
|
|
42
43
|
},
|
|
43
44
|
"author": "Jeffrey Chupp",
|
|
@@ -52,12 +53,12 @@
|
|
|
52
53
|
"react-native-get-random-values": "^1.11.0"
|
|
53
54
|
},
|
|
54
55
|
"peerDependencies": {
|
|
55
|
-
"@quonfig/react": ">=0.0.
|
|
56
|
+
"@quonfig/react": ">=0.0.14",
|
|
56
57
|
"react": "^18 || ^19",
|
|
57
58
|
"react-native": ">=0.70"
|
|
58
59
|
},
|
|
59
60
|
"devDependencies": {
|
|
60
|
-
"@quonfig/react": ">=0.0.
|
|
61
|
+
"@quonfig/react": ">=0.0.14",
|
|
61
62
|
"@types/base-64": "^1.0.2",
|
|
62
63
|
"@types/node": "^18.6.5",
|
|
63
64
|
"prettier": "^3.0.0",
|