@quonfig/react-native 0.0.1 → 0.0.2

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 +14 -5
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,8 +1,17 @@
1
1
  # Changelog
2
2
 
3
- ## 0.0.1
3
+ ## 0.0.2 - 2026-05-13
4
4
 
5
- - Initial release. Thin polyfill wrapper around `@quonfig/react` for React Native. Installs
6
- `react-native-get-random-values` (needed by the `uuid` dependency inside `@quonfig/javascript`)
7
- and the `base-64` `btoa` / `atob` shims (needed by the SDK's base64 helper which assumes
8
- `window.btoa` when `typeof window !== "undefined"`, including under React Native).
5
+ - First version published to npm. No functional changes from `0.0.1`. Version bumped solely to
6
+ exercise the GitHub Actions release workflow + npm OIDC trusted-publishing path after the npm-side
7
+ trusted-publisher configuration was added for `@quonfig/react-native`.
8
+
9
+ ## 0.0.1 - 2026-05-12
10
+
11
+ - Internal-only initial commit; never published to npm. The release workflow attempted the publish
12
+ but the OIDC token exchange failed (npm trusted publisher not yet configured for this brand-new
13
+ package). Functionally identical to `0.0.2`. The package is a thin polyfill wrapper around
14
+ `@quonfig/react` for React Native: installs `react-native-get-random-values` (needed by the `uuid`
15
+ dependency inside `@quonfig/javascript`) and the `base-64` `btoa` / `atob` shims (needed by the
16
+ SDK's base64 helper which assumes `window.btoa` when `typeof window !== "undefined"`, including
17
+ under React Native).
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.1",
4
+ "version": "0.0.2",
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",
@@ -57,7 +57,7 @@
57
57
  "react-native": ">=0.70"
58
58
  },
59
59
  "devDependencies": {
60
- "@quonfig/react": "portal:../sdk-react",
60
+ "@quonfig/react": ">=0.0.13",
61
61
  "@types/base-64": "^1.0.2",
62
62
  "@types/node": "^18.6.5",
63
63
  "prettier": "^3.0.0",