Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v5.1.0
v5.2.0
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Change Log

## [v5.2.0](https://github.com/auth0/react-native-auth0/tree/v5.2.0) (2025-12-02)

[Full Changelog](https://github.com/auth0/react-native-auth0/compare/v5.1.0...v5.2.0)

**Added**

- feat: add Multi-Resource Refresh Token (MRRT) support [\#1258](https://github.com/auth0/react-native-auth0/pull/1258) ([subhankarmaiti](https://github.com/subhankarmaiti))

**Fixed**

- fix: fixed spelling for localAuthenticationOptions is incorrect in Au… [\#1373](https://github.com/auth0/react-native-auth0/pull/1373) ([1aishwaryasharma](https://github.com/1aishwaryasharma))
- fix: handle 401 response parsing correctly in userInfo endpoint [\#1393](https://github.com/auth0/react-native-auth0/pull/1393) ([subhankarmaiti](https://github.com/subhankarmaiti))
- fix: enforce nonnull type for useDPoP parameter in initializeAuth0WithConfiguration method [\#1388](https://github.com/auth0/react-native-auth0/pull/1388) ([subhankarmaiti](https://github.com/subhankarmaiti))

## [v5.1.0](https://github.com/auth0/react-native-auth0/tree/v5.1.0) (2025-10-31)

[Full Changelog](https://github.com/auth0/react-native-auth0/compare/v5.0.1...v5.1.0)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-native-auth0",
"title": "React Native Auth0",
"version": "5.1.0",
"version": "5.2.0",
"description": "React Native toolkit for Auth0 API",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/core/utils/telemetry.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export const telemetry = {
name: 'react-native-auth0',
version: '5.1.0',
version: '5.2.0',
};

export type Telemetry = {
Expand Down
Loading