diff --git a/.changeset/olive-terms-check.md b/.changeset/olive-terms-check.md deleted file mode 100644 index 1814cdf0..00000000 --- a/.changeset/olive-terms-check.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'react-native-app-auth': major ---- - -Breaking change (iOS, Mac Catalyst): The boolean values `useNonce`, `usePCKE`, and `prefersEphemeralSession` are now handled correctly. Previously, they were all being interpreted as `false` regardless of their actual values, but now the intended (`true` or `false`) value is correctly marshalled from JavaScript to native. To preserve behaviour from before this breaking change, explicitly set them all to `false`. diff --git a/.changeset/polite-pants-swim.md b/.changeset/polite-pants-swim.md deleted file mode 100644 index 3dfebe71..00000000 --- a/.changeset/polite-pants-swim.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'rnaa-demo': patch ---- - -demo app with new auth0 diff --git a/.changeset/short-lies-behave.md b/.changeset/short-lies-behave.md deleted file mode 100644 index 48d6790e..00000000 --- a/.changeset/short-lies-behave.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'react-native-app-auth': patch ---- - -fix hard crash if config object was incorrect diff --git a/examples/demo/CHANGELOG.md b/examples/demo/CHANGELOG.md new file mode 100644 index 00000000..518940f8 --- /dev/null +++ b/examples/demo/CHANGELOG.md @@ -0,0 +1,10 @@ +# rnaa-demo + +## 1.0.1 + +### Patch Changes + +- demo app with new auth0 ([#1007](https://github.com/FormidableLabs/react-native-app-auth/pull/1007)) + +- Updated dependencies [[`31f903f`](https://github.com/FormidableLabs/react-native-app-auth/commit/31f903fe508d4007447b3e8f5c164a5027f3b6ae), [`438d512`](https://github.com/FormidableLabs/react-native-app-auth/commit/438d5121ec48d16f210b57691381f937979ee448)]: + - react-native-app-auth@8.0.0 diff --git a/examples/demo/package.json b/examples/demo/package.json index 5e2e23a3..24a912c0 100644 --- a/examples/demo/package.json +++ b/examples/demo/package.json @@ -1,6 +1,6 @@ { "name": "rnaa-demo", - "version": "1.0.0", + "version": "1.0.1", "private": true, "scripts": { "android": "react-native run-android", diff --git a/packages/react-native-app-auth/CHANGELOG.md b/packages/react-native-app-auth/CHANGELOG.md index 3b863bf1..bcf31b68 100644 --- a/packages/react-native-app-auth/CHANGELOG.md +++ b/packages/react-native-app-auth/CHANGELOG.md @@ -1,5 +1,15 @@ # react-native-app-auth +## 8.0.0 + +### Major Changes + +- Breaking change (iOS, Mac Catalyst): The boolean values `useNonce`, `usePCKE`, and `prefersEphemeralSession` are now handled correctly. Previously, they were all being interpreted as `false` regardless of their actual values, but now the intended (`true` or `false`) value is correctly marshalled from JavaScript to native. To preserve behaviour from before this breaking change, explicitly set them all to `false`. ([#1000](https://github.com/FormidableLabs/react-native-app-auth/pull/1000)) + +### Patch Changes + +- fix hard crash if config object was incorrect ([#1010](https://github.com/FormidableLabs/react-native-app-auth/pull/1010)) + ## 7.2.0 ### Minor Changes diff --git a/packages/react-native-app-auth/package.json b/packages/react-native-app-auth/package.json index 9b1399d9..8d1a7ed9 100644 --- a/packages/react-native-app-auth/package.json +++ b/packages/react-native-app-auth/package.json @@ -1,6 +1,6 @@ { "name": "react-native-app-auth", - "version": "7.2.0", + "version": "8.0.0", "description": "React Native bridge for AppAuth for supporting any OAuth 2 provider", "main": "index.js", "types": "index.d.ts",