diff --git a/CHANGELOG.md b/CHANGELOG.md
index 52afd29f..7ca83f66 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,13 @@
+
+## [v9.13.3](https://github.com/auth0/auth0.js/tree/v9.13.3) (2020-06-26)
+[Full Changelog](https://github.com/auth0/auth0.js/compare/v9.13.2...v9.13.3)
+
+**Changed**
+- Bump idtoken-verifier to 2.0.3 [\#1113](https://github.com/auth0/auth0.js/pull/1113) ([stevehobbsdev](https://github.com/stevehobbsdev))
+
+**Fixed**
+- Fix IE default redirect url [\#1108](https://github.com/auth0/auth0.js/pull/1108) ([vincentdesmares](https://github.com/vincentdesmares))
+- Document that checkSession requires a callback [\#1103](https://github.com/auth0/auth0.js/pull/1103) ([civility-bot](https://github.com/civility-bot))
## [v9.13.2](https://github.com/auth0/auth0.js/tree/v9.13.2) (2020-04-09)
[Full Changelog](https://github.com/auth0/auth0.js/compare/v9.13.1...v9.13.2)
diff --git a/README.md b/README.md
index f8ded6c7..40a70ddb 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 54a06fd6..ef0c55a0 100644
--- a/docs/Authentication.html
+++ b/docs/Authentication.html
@@ -499,7 +499,7 @@
Parameters:
diff --git a/docs/Management.html b/docs/Management.html
index ec472597..84d66d01 100644
--- a/docs/Management.html
+++ b/docs/Management.html
@@ -294,7 +294,7 @@ Parameters:
diff --git a/docs/WebAuth.html b/docs/WebAuth.html
index 8b50979a..45f7bbbf 100644
--- a/docs/WebAuth.html
+++ b/docs/WebAuth.html
@@ -643,7 +643,7 @@ Parameters:
diff --git a/docs/authentication_db-connection.js.html b/docs/authentication_db-connection.js.html
index e43f6875..8693e6b6 100644
--- a/docs/authentication_db-connection.js.html
+++ b/docs/authentication_db-connection.js.html
@@ -167,7 +167,7 @@ authentication/db-connection.js
diff --git a/docs/authentication_index.js.html b/docs/authentication_index.js.html
index 3c13ab3b..d17861df 100644
--- a/docs/authentication_index.js.html
+++ b/docs/authentication_index.js.html
@@ -686,7 +686,7 @@ authentication/index.js
diff --git a/docs/global.html b/docs/global.html
index d21f41c1..88b8d5d7 100644
--- a/docs/global.html
+++ b/docs/global.html
@@ -12092,7 +12092,7 @@ updat
Source:
@@ -15051,7 +15051,7 @@ Parameters:
diff --git a/docs/helper_object.js.html b/docs/helper_object.js.html
index 10979fb6..1970d4d0 100644
--- a/docs/helper_object.js.html
+++ b/docs/helper_object.js.html
@@ -186,6 +186,9 @@ helper/object.js
return undefined;
}
var parsed = getLocationFromUrl(url);
+ if (!parsed) {
+ return null;
+ }
var origin = parsed.protocol + '//' + parsed.hostname;
if (parsed.port) {
origin += ':' + parsed.port;
@@ -256,7 +259,7 @@ helper/object.js
diff --git a/docs/index.html b/docs/index.html
index def80a5c..0685e35a 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -73,7 +73,7 @@ Index
Install
From CDN:
<!-- Latest patch release -->
-<script src="https://cdn.auth0.com/js/auth0/9.13.2/auth0.min.js"></script>
+<script src="https://cdn.auth0.com/js/auth0/9.13.3/auth0.min.js"></script>
From npm:
npm install auth0-js
@@ -241,7 +241,7 @@ License
diff --git a/docs/management_index.js.html b/docs/management_index.js.html
index 5a273f55..0564115c 100644
--- a/docs/management_index.js.html
+++ b/docs/management_index.js.html
@@ -221,7 +221,7 @@ management/index.js
diff --git a/docs/web-auth_cross-origin-authentication.js.html b/docs/web-auth_cross-origin-authentication.js.html
index 85a66a76..35000989 100644
--- a/docs/web-auth_cross-origin-authentication.js.html
+++ b/docs/web-auth_cross-origin-authentication.js.html
@@ -209,7 +209,7 @@ web-auth/cross-origin-authentication.js
diff --git a/docs/web-auth_hosted-pages.js.html b/docs/web-auth_hosted-pages.js.html
index 6f026856..421a8b4f 100644
--- a/docs/web-auth_hosted-pages.js.html
+++ b/docs/web-auth_hosted-pages.js.html
@@ -193,7 +193,7 @@ web-auth/hosted-pages.js
diff --git a/docs/web-auth_index.js.html b/docs/web-auth_index.js.html
index 104b29dc..3f896d19 100644
--- a/docs/web-auth_index.js.html
+++ b/docs/web-auth_index.js.html
@@ -983,7 +983,7 @@ web-auth/index.js
diff --git a/docs/web-auth_popup.js.html b/docs/web-auth_popup.js.html
index d3b1e519..b92f4ba5 100644
--- a/docs/web-auth_popup.js.html
+++ b/docs/web-auth_popup.js.html
@@ -361,7 +361,7 @@ web-auth/popup.js
diff --git a/docs/web-auth_redirect.js.html b/docs/web-auth_redirect.js.html
index b41dbf5d..df7beafd 100644
--- a/docs/web-auth_redirect.js.html
+++ b/docs/web-auth_redirect.js.html
@@ -110,7 +110,7 @@ web-auth/redirect.js
diff --git a/package.json b/package.json
index fdf9a702..e8fd21c2 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "auth0-js",
- "version": "9.13.2",
+ "version": "9.13.3",
"description": "Auth0 headless browser sdk",
"author": "Auth0",
"license": "MIT",
diff --git a/src/version.js b/src/version.js
index 12330674..e9e43227 100644
--- a/src/version.js
+++ b/src/version.js
@@ -1 +1 @@
-module.exports = { raw: '9.13.2' };
+module.exports = { raw: '9.13.3' };