react-native-nitro-auth 0.6.1 → 0.6.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.
- package/CHANGELOG.md +15 -0
- package/README.md +124 -436
- package/android/src/main/java/com/auth/AuthAdapter.kt +58 -7
- package/ios/AuthAdapter.swift +52 -6
- package/lib/commonjs/Auth.web.js +37 -6
- package/lib/commonjs/Auth.web.js.map +1 -1
- package/lib/commonjs/ui/social-button.js +39 -31
- package/lib/commonjs/ui/social-button.js.map +1 -1
- package/lib/module/Auth.web.js +37 -6
- package/lib/module/Auth.web.js.map +1 -1
- package/lib/module/ui/social-button.js +40 -31
- package/lib/module/ui/social-button.js.map +1 -1
- package/lib/typescript/commonjs/Auth.web.d.ts +2 -0
- package/lib/typescript/commonjs/Auth.web.d.ts.map +1 -1
- package/lib/typescript/commonjs/ui/social-button.d.ts +1 -1
- package/lib/typescript/commonjs/ui/social-button.d.ts.map +1 -1
- package/lib/typescript/module/Auth.web.d.ts +2 -0
- package/lib/typescript/module/Auth.web.d.ts.map +1 -1
- package/lib/typescript/module/ui/social-button.d.ts +1 -1
- package/lib/typescript/module/ui/social-button.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/Auth.web.ts +69 -6
- package/src/ui/social-button.tsx +46 -38
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.6.3 - 2026-06-10
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- Hardened Microsoft authority URL construction to reject absolute tenant URLs and invalid B2C domains while building valid B2C tenant/policy authority paths.
|
|
8
|
+
- Kept the Expo example iOS build on source-built Expo modules until precompiled module linking is supported by the current native dependency set.
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Updated the Expo example SDK 56 patch dependencies so Expo Doctor passes cleanly.
|
|
13
|
+
- Polished the Expo example app UI for more consistent provider cards, controls, smoke-test status, and action states.
|
|
14
|
+
- Reduced unnecessary example-app React work by memoizing repeated demo rows, smoke-test UI, social buttons, and stable action handlers.
|
|
15
|
+
- Updated README setup, provider examples, option tables, badge links, error codes, and typed API documentation to match the current package surface.
|
|
16
|
+
- Added stronger compile-time coverage for provider-specific login options used by `AuthService.login()` and `useAuth().login()`.
|
|
17
|
+
|
|
3
18
|
## 0.6.1 - 2026-05-21
|
|
4
19
|
|
|
5
20
|
### Changed
|