diff --git a/CHANGELOG.md b/CHANGELOG.md index a6284175..5a858f03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## [v9.12.1](https://github.com/auth0/auth0.js/tree/v9.12.1) (2019-12-17) + +[Full Changelog](https://github.com/auth0/auth0.js/compare/v9.12.0...v9.12.1) + +**Fixed** + +- Set the default token validation leeway to 60 sec [\#1062](https://github.com/auth0/auth0.js/pull/1062) ([stevehobbsdev](https://github.com/stevehobbsdev)) + ## [v9.12.0](https://github.com/auth0/auth0.js/tree/v9.12.0) (2019-12-11) [Full Changelog](https://github.com/auth0/auth0.js/compare/v9.11.3...v9.12.0) diff --git a/README.md b/README.md index 535811b7..15be0b49 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ From CDN: ```html - + ``` From [npm](https://npmjs.org): diff --git a/docs/Authentication.html b/docs/Authentication.html index b75e4931..9c779e78 100644 --- a/docs/Authentication.html +++ b/docs/Authentication.html @@ -494,7 +494,7 @@
Parameters:
diff --git a/docs/Management.html b/docs/Management.html index e8b59845..c60d819b 100644 --- a/docs/Management.html +++ b/docs/Management.html @@ -368,7 +368,7 @@
Parameters:
diff --git a/docs/WebAuth.html b/docs/WebAuth.html index d313942d..7510f55c 100644 --- a/docs/WebAuth.html +++ b/docs/WebAuth.html @@ -531,7 +531,7 @@
Parameters:
diff --git a/docs/authentication_db-connection.js.html b/docs/authentication_db-connection.js.html index 21b8a892..81793f0c 100644 --- a/docs/authentication_db-connection.js.html +++ b/docs/authentication_db-connection.js.html @@ -384,7 +384,7 @@

authentication/db-connection.js

diff --git a/docs/authentication_index.js.html b/docs/authentication_index.js.html index 753b22c2..1f4a5049 100644 --- a/docs/authentication_index.js.html +++ b/docs/authentication_index.js.html @@ -903,7 +903,7 @@

authentication/index.js

diff --git a/docs/global.html b/docs/global.html index df9eb5e0..0b9cf55f 100644 --- a/docs/global.html +++ b/docs/global.html @@ -7490,7 +7490,7 @@
Parameters:
diff --git a/docs/index.html b/docs/index.html index 7d372d3c..d0c55542 100644 --- a/docs/index.html +++ b/docs/index.html @@ -312,7 +312,7 @@

Install

<!-- Latest patch release -->
-<script src="https://cdn.auth0.com/js/auth0/9.12.0/auth0.min.js"></script>
+<script src="https://cdn.auth0.com/js/auth0/9.12.1/auth0.min.js"></script>
 

From npm:

npm install auth0-js
@@ -381,6 +381,14 @@ 

Initialize

Indicates if deprecation warnings should be output to the browser console, defaults to false. +
  • + maxAge {OPTIONAL, number}: Used during token + validation. Specifies the maximum elapsed time in seconds since + the last time the user was actively authenticated by the + authorization server. If the elapsed time is greater than this + value, the token is considered invalid and the user must be + re-authenticated. +
  • API