supertokens-website
Advanced tools
Comparing version 16.0.0 to 16.0.1
@@ -14,2 +14,8 @@ # Changelog | ||
## [16.0.1] - 2023-02-02 | ||
### Fixes | ||
- Fixed a rare case where the XHR interceptor didn't handle empty response headers correctly | ||
## [16.0.0] - 2023-02-01 | ||
@@ -16,0 +22,0 @@ |
@@ -1,2 +0,2 @@ | ||
export declare const package_version = "16.0.0"; | ||
export declare const package_version = "16.0.1"; | ||
export declare const supported_fdi: string[]; |
@@ -18,3 +18,3 @@ "use strict"; | ||
*/ | ||
exports.package_version = "16.0.0"; | ||
exports.package_version = "16.0.1"; | ||
exports.supported_fdi = ["1.16"]; |
@@ -850,8 +850,14 @@ "use strict"; | ||
.getAllResponseHeaders() | ||
.trim() | ||
.split("\r\n") | ||
.map(function (line) { | ||
return line.split(": "); | ||
var sep = line.indexOf(": "); | ||
if (sep === -1) { | ||
return ["", ""]; | ||
} | ||
return [line.slice(0, sep), line.slice(sep + 2)]; | ||
}) | ||
.filter(function (e) { | ||
return e[0].length !== 0; | ||
}) | ||
); | ||
} |
{ | ||
"name": "supertokens-website", | ||
"version": "16.0.0", | ||
"version": "16.0.1", | ||
"description": "frontend sdk for website to be used for auth solution.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
369998
7343