@quonfig/react-native 0.0.3 → 1.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.0 - 2026-06-06
4
+
5
+ - **Stable 1.0.0 release.** The Quonfig React Native SDK is now declared stable and tracks
6
+ `@quonfig/react` >= 1.0.0. No API or behavior changes from 0.0.4 — this is a coordinated 1.0.0
7
+ version stamp across the entire Quonfig SDK family.
8
+
9
+ ## 0.0.4 - 2026-05-21
10
+
11
+ - Reworked the `@quonfig/react` `devDependency` from `portal:../sdk-react` to a published npm range
12
+ so Dependabot's isolated, single-repo npm updater can resolve the dependency tree (qfg-zu8o,
13
+ option A). Removed the now-obsolete "Replace local file/portal dep with npm version for CI" step
14
+ from `test.yml` and `release.yaml`, added a `CONTRIBUTING.md` documenting `yarn link` as the
15
+ local-dev path for testing against an unpublished `../sdk-react`.
16
+ - Bumped the `@quonfig/react` `peerDependency` floor `>=0.0.13` → `>=0.0.14` and set the
17
+ `devDependency` to the same `>=0.0.14` range so dev and peer stay consistent.
18
+
3
19
  ## 0.0.3 - 2026-05-14
4
20
 
5
21
  - 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.3",
4
+ "version": "1.0.0",
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.13",
56
+ "@quonfig/react": ">=1.0.0",
57
57
  "react": "^18 || ^19",
58
58
  "react-native": ">=0.70"
59
59
  },
60
60
  "devDependencies": {
61
- "@quonfig/react": ">=0.0.13",
61
+ "@quonfig/react": ">=1.0.0",
62
62
  "@types/base-64": "^1.0.2",
63
63
  "@types/node": "^18.6.5",
64
64
  "prettier": "^3.0.0",