supertokens-website
Advanced tools
Comparing version 16.0.8 to 16.0.9
@@ -10,2 +10,12 @@ # Changelog | ||
## [16.0.9] - 2023-05-05 | ||
### Changes | ||
- Updated tests/test server to match new backend version supporting v3 access tokens | ||
### Fixes | ||
- Fixes fetch interceptor calling clone on URL instances | ||
## [16.0.8] - 2023-04-25 | ||
@@ -12,0 +22,0 @@ - Passes windowHandler's localstorage to browser-tabs-lock as well. |
@@ -172,3 +172,3 @@ "use strict"; | ||
return input.originalFetch( | ||
typeof url === "string" ? url : url.clone(), | ||
typeof url === "object" && "clone" in url ? url.clone() : url, | ||
__assign({}, config) | ||
@@ -175,0 +175,0 @@ ); |
@@ -1,2 +0,2 @@ | ||
export declare const package_version = "16.0.8"; | ||
export declare const package_version = "16.0.9"; | ||
export declare const supported_fdi: string[]; |
@@ -18,3 +18,3 @@ "use strict"; | ||
*/ | ||
exports.package_version = "16.0.8"; | ||
exports.package_version = "16.0.9"; | ||
exports.supported_fdi = ["1.16"]; |
{ | ||
"name": "supertokens-website", | ||
"version": "16.0.8", | ||
"version": "16.0.9", | ||
"description": "frontend sdk for website to be used for auth solution.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
375171
7415