diff --git a/CHANGELOG.md b/CHANGELOG.md index 34151273..7990f229 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## [v2.8.2](https://github.com/auth0/react-native-auth0/tree/v2.8.2) (2021-04-29) + +[Full Changelog](https://github.com/auth0/react-native-auth0/compare/v2.8.1...v2.8.2) + +**Fixed** + +- Fix for Xcode 12.5 [SDK-2545][\#369](https://github.com/auth0/react-native-auth0/pull/369) ([Widcket](https://github.com/Widcket)) + ## [v2.8.1](https://github.com/auth0/react-native-auth0/tree/v2.8.1) (2021-04-19) [Full Changelog](https://github.com/auth0/react-native-auth0/compare/v2.8.0...v2.8.1) diff --git a/docs/Auth.html b/docs/Auth.html index 45e0d7d4..d69c4dd6 100644 --- a/docs/Auth.html +++ b/docs/Auth.html @@ -2067,8 +2067,8 @@
Returns:

diff --git a/docs/Auth0.html b/docs/Auth0.html index 0564a060..330df3aa 100644 --- a/docs/Auth0.html +++ b/docs/Auth0.html @@ -229,8 +229,8 @@

Classes


diff --git a/docs/Auth0.module.exports.html b/docs/Auth0.module.exports.html index 12eaa39f..971e757a 100644 --- a/docs/Auth0.module.exports.html +++ b/docs/Auth0.module.exports.html @@ -294,8 +294,8 @@
Parameters:

diff --git a/docs/Users.html b/docs/Users.html index 17b92b3c..1dd5e2d4 100644 --- a/docs/Users.html +++ b/docs/Users.html @@ -462,8 +462,8 @@
Returns:

diff --git a/docs/WebAuth.html b/docs/WebAuth.html index e1c88561..3b29911e 100644 --- a/docs/WebAuth.html +++ b/docs/WebAuth.html @@ -690,8 +690,8 @@
Returns:

diff --git a/docs/global.html b/docs/global.html index 0fc87bac..a1aa5bc6 100644 --- a/docs/global.html +++ b/docs/global.html @@ -268,8 +268,8 @@
Returns:

diff --git a/docs/index.html b/docs/index.html index 25c88052..be2b46cd 100644 --- a/docs/index.html +++ b/docs/index.html @@ -604,6 +604,14 @@

Logout

class="prettyprint source lang-js" >auth0.webAuth.clearSession().catch(error => console.log(error)); +

+ If you're using the ephemeralSession parameter, you do + not need to call clearSession() to perform logout on + iOS, as there will be no cookies to remove. Just deleting the + credentials will suffice. You will still need to call + clearSession() on Android, though, as + ephemeralSession is iOS-only. +

Authentication API

Important: Database Connection Authentication

@@ -977,8 +985,8 @@

License


diff --git a/docs/index.js.html b/docs/index.js.html index 08b3a500..1a93185e 100644 --- a/docs/index.js.html +++ b/docs/index.js.html @@ -229,8 +229,8 @@

index.js


diff --git a/docs/src_auth_index.js.html b/docs/src_auth_index.js.html index 69caddc5..11875619 100644 --- a/docs/src_auth_index.js.html +++ b/docs/src_auth_index.js.html @@ -697,8 +697,8 @@

src/auth/index.js


diff --git a/docs/src_management_users.js.html b/docs/src_management_users.js.html index fe1a1080..43d00065 100644 --- a/docs/src_management_users.js.html +++ b/docs/src_management_users.js.html @@ -297,8 +297,8 @@

src/management/users.js


diff --git a/docs/src_webauth_index.js.html b/docs/src_webauth_index.js.html index af50bc37..9924e34f 100644 --- a/docs/src_webauth_index.js.html +++ b/docs/src_webauth_index.js.html @@ -356,8 +356,8 @@

src/webauth/index.js


diff --git a/package.json b/package.json index ceb57734..8df7a474 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "react-native-auth0", "title": "React Native Auth0", - "version": "2.8.1", + "version": "2.8.2", "description": "React Native toolkit for Auth0 API", "main": "index.js", "scripts": { diff --git a/src/networking/telemetry.js b/src/networking/telemetry.js index f04fbcdd..68376736 100644 --- a/src/networking/telemetry.js +++ b/src/networking/telemetry.js @@ -1 +1 @@ -module.exports = {name: 'react-native-auth0', version: '2.8.1'}; +module.exports = {name: 'react-native-auth0', version: '2.8.2'};