Skip to content

Commit 410adc7

Browse files
Release v5.0.0 (#1328)
1 parent 3182402 commit 410adc7

File tree

5 files changed

+42
-9
lines changed

5 files changed

+42
-9
lines changed

β€Ž.versionβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v5.0.0-beta.6
1+
v5.0.0

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,44 @@
11
# Change Log
22

3+
## [v5.0.0](https://github.com/auth0/react-native-auth0/tree/v5.0.0) (2025-10-01)
4+
5+
[Full Changelog](https://github.com/auth0/react-native-auth0/compare/v4.6.0...v5.0.0)
6+
7+
**πŸ’‘ Major Refactor**: Version 5.0 features a complete architectural overhaul for improved performance, maintainability, and multi-platform extensibility. Check the [Migration Guide](https://github.com/auth0/react-native-auth0/blob/master/MIGRATION_GUIDE.md) for detailed upgrade instructions.
8+
9+
**⚠️ BREAKING CHANGES**
10+
11+
- feat: architectural refactor and react-native-web support [\#1233](https://github.com/auth0/react-native-auth0/pull/1233) ([subhankarmaiti](https://github.com/subhankarmaiti))
12+
13+
**Added**
14+
15+
- feat: add organization parameter support to resetPassword API [\#1286](https://github.com/auth0/react-native-auth0/pull/1286) ([subhankarmaiti](https://github.com/subhankarmaiti))
16+
- feat(auth): add `saveCredentials` method to `useAuth0` hook [\#1285](https://github.com/auth0/react-native-auth0/pull/1285) ([subhankarmaiti](https://github.com/subhankarmaiti))
17+
- feat: unify and improve error handling across platforms [\#1261](https://github.com/auth0/react-native-auth0/pull/1261) ([subhankarmaiti](https://github.com/subhankarmaiti))
18+
- Add `screen_hint` usage for login/signup in FAQ and fix usage in EXAMPLES.md [\#1253](https://github.com/auth0/react-native-auth0/pull/1253) ([subhankarmaiti](https://github.com/subhankarmaiti))
19+
20+
**Changed**
21+
22+
- refactor(android): Migrate native module from Java to Kotlin [\#1239](https://github.com/auth0/react-native-auth0/pull/1239) ([subhankarmaiti](https://github.com/subhankarmaiti))
23+
24+
**Fixed**
25+
26+
- modify getCredential signature and get the user after redirect handle for web [\#1327](https://github.com/auth0/react-native-auth0/pull/1327) ([subhankarmaiti](https://github.com/subhankarmaiti))
27+
- fix: reload and added default redirect url after login for web [\#1326](https://github.com/auth0/react-native-auth0/pull/1326) ([subhankarmaiti](https://github.com/subhankarmaiti))
28+
- Fix clearSession operation order to prevent premature user state clearing [\#1309](https://github.com/auth0/react-native-auth0/pull/1309) ([subhankarmaiti](https://github.com/subhankarmaiti))
29+
- fix: concurrent credential storage errors by preventing unnecessary state updates [\#1302](https://github.com/auth0/react-native-auth0/pull/1302) ([subhankarmaiti](https://github.com/subhankarmaiti))
30+
- fix(android): add pathPrefix to Android manifest for proper App Links functionality [\#1288](https://github.com/auth0/react-native-auth0/pull/1288) ([subhankarmaiti](https://github.com/subhankarmaiti))
31+
32+
**Security**
33+
34+
- chore(deps): update fetch-mock and node-fetch to latest versions [\#1243](https://github.com/auth0/react-native-auth0/pull/1243) ([subhankarmaiti](https://github.com/subhankarmaiti))
35+
336
## [v5.0.0-beta.6](https://github.com/auth0/react-native-auth0/tree/v5.0.0-beta.6) (2025-09-16)
37+
438
[Full Changelog](https://github.com/auth0/react-native-auth0/compare/v5.0.0-beta.5...v5.0.0-beta.6)
539

640
**Fixed**
41+
742
- fix: concurrent credential storage errors by preventing unnecessary state updates [\#1302](https://github.com/auth0/react-native-auth0/pull/1302) ([subhankarmaiti](https://github.com/subhankarmaiti))
843

944
## [v5.0.0-beta.5](https://github.com/auth0/react-native-auth0/tree/v5.0.0-beta.5) (2025-09-03)

β€ŽMIGRATION_GUIDE.mdβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Before updating the library, ensure your project meets the new minimum requireme
2828
```
2929
2. **Update this Library:**
3030
```bash
31-
npm install react-native-auth0@beta
31+
npm install react-native-auth0
3232
```
3333
3. **Update iOS Target:** In your `ios/Podfile`, set the platform version:
3434
```ruby
@@ -47,7 +47,7 @@ Before updating the library, ensure your project meets the new minimum requireme
4747
```
4848
2. **Update this Library:**
4949
```bash
50-
npm install react-native-auth0@beta
50+
npm install react-native-auth0
5151
```
5252
3. **Rebuild Native Code:**
5353
```bash

β€ŽREADME.mdβ€Ž

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,11 @@
99

1010
πŸ“š [Documentation](#documentation) β€’ πŸš€ [Getting Started](#getting-started) β€’ ⏭️ [Next Steps](#next-steps) β€’ ❓ [FAQs](https://github.com/auth0/react-native-auth0/blob/master/FAQ.md) β€’ ❓ [Feedback](#feedback)
1111

12-
### ⚠️ Important Migration Notice: v4.0.0 and v5.0.0beta
12+
### ⚠️ Important Migration Notice: v4.0.0 and v5.0.0
1313

14-
We're excited to announce the release of react-native-auth0 `v4.0.0` and the beta release of `v5.0.0`!
14+
We're excited to announce the release of react-native-auth0 `v5.0.0`!
1515

16-
**For v4.0.0 users:** Please note that this update includes breaking changes that require your attention. To ensure a smooth transition, please review our πŸ‘‰ [Migration Guide](https://github.com/auth0/react-native-auth0/blob/master/MIGRATION_GUIDE.md) πŸ‘ˆ for detailed instructions on updating your integration.
17-
18-
**For v5.0.0beta users:** This beta version requires React 19 and React Native 0.78.0 or higher. If you're using Expo, this version requires Expo 53 or higher. See the πŸ‘‰ [Migration Guide](https://github.com/auth0/react-native-auth0/blob/beta/MIGRATION_GUIDE.md) πŸ‘ˆ for compatibility requirements and upgrade instructions.
16+
**For v5.0.0 users:** This version requires React 19 and React Native 0.78.0 or higher. If you're using Expo, this version requires Expo 53 or higher. See the πŸ‘‰ [Migration Guide](https://github.com/auth0/react-native-auth0/blob/master/MIGRATION_GUIDE.md) πŸ‘ˆ for compatibility requirements and upgrade instructions.
1917

2018
## Documentation
2119

β€Žpackage.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-native-auth0",
33
"title": "React Native Auth0",
4-
"version": "5.0.0-beta.6",
4+
"version": "5.0.0",
55
"description": "React Native toolkit for Auth0 API",
66
"main": "lib/commonjs/index.js",
77
"module": "lib/module/index.js",

0 commit comments

Comments
Β (0)