@okta/okta-auth-js
Advanced tools
Comparing version 2.0.0 to 2.0.1
# Changelog | ||
## 2.0.1 | ||
Bug Fixes | ||
* Fixed an problem, introduced in 2.0.0, that was causing tokens to be refreshed every time `authClient.tokenManager.get('accessToken')` was called. | ||
## 2.0.0 | ||
@@ -4,0 +10,0 @@ |
@@ -12,3 +12,3 @@ module.exports = { | ||
"CACHE_STORAGE_NAME": "okta-cache-storage", | ||
"SDK_VERSION": "2.0.0" | ||
"SDK_VERSION": "2.0.1" | ||
}; |
@@ -106,3 +106,3 @@ /*! | ||
if (!token || (token.expiresAt * 1000 - clockSkew) > Date.now()) { | ||
resolve(token); | ||
return resolve(token); | ||
} | ||
@@ -114,3 +114,3 @@ | ||
resolve(tokenPromise); | ||
return resolve(tokenPromise); | ||
}); | ||
@@ -117,0 +117,0 @@ } |
{ | ||
"name": "@okta/okta-auth-js", | ||
"description": "The Okta Auth SDK", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"homepage": "https://github.com/okta/okta-auth-js", | ||
@@ -67,5 +67,5 @@ "license": "Apache-2.0", | ||
"okta": { | ||
"commitSha": "ff1dec7d5b4d3c35778ae438bbd1fce0462ede95", | ||
"fullVersion": "2.0.0-20180814231838-ff1dec7" | ||
"commitSha": "f3efeb731d1e0de3e9b28cf2d5ea5bec9b9edd0e", | ||
"fullVersion": "2.0.1-20180828171753-f3efeb7" | ||
} | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
710014