@quonfig/react-native 0.0.1 → 0.0.3

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 +22 -5
  2. package/package.json +3 -2
package/CHANGELOG.md CHANGED
@@ -1,8 +1,25 @@
1
1
  # Changelog
2
2
 
3
- ## 0.0.1
3
+ ## 0.0.3 - 2026-05-14
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
+ - CI / tooling only no functional or public API changes. Made the release workflow's test gate
6
+ real by adding a polyfill smoke test (`test/polyfill.test.cjs`) and switching the `test` script to
7
+ an explicit file path for Node 20 compatibility. Bumped GitHub Actions dependencies:
8
+ `actions/checkout` 3.6.0 6.0.2, `actions/cache` 4.3.0 5.0.5, `actions/setup-node` 4.4.0 →
9
+ 6.4.0.
10
+
11
+ ## 0.0.2 - 2026-05-13
12
+
13
+ - First version published to npm. No functional changes from `0.0.1`. Version bumped solely to
14
+ exercise the GitHub Actions release workflow + npm OIDC trusted-publishing path after the npm-side
15
+ trusted-publisher configuration was added for `@quonfig/react-native`.
16
+
17
+ ## 0.0.1 - 2026-05-12
18
+
19
+ - Internal-only initial commit; never published to npm. The release workflow attempted the publish
20
+ but the OIDC token exchange failed (npm trusted publisher not yet configured for this brand-new
21
+ package). Functionally identical to `0.0.2`. The package is a thin polyfill wrapper around
22
+ `@quonfig/react` for React Native: installs `react-native-get-random-values` (needed by the `uuid`
23
+ dependency inside `@quonfig/javascript`) and the `base-64` `btoa` / `atob` shims (needed by the
24
+ SDK's base64 helper which assumes `window.btoa` when `typeof window !== "undefined"`, including
25
+ 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.3",
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",
@@ -57,7 +58,7 @@
57
58
  "react-native": ">=0.70"
58
59
  },
59
60
  "devDependencies": {
60
- "@quonfig/react": "portal:../sdk-react",
61
+ "@quonfig/react": ">=0.0.13",
61
62
  "@types/base-64": "^1.0.2",
62
63
  "@types/node": "^18.6.5",
63
64
  "prettier": "^3.0.0",