From 85315a48380a8f13fa787bd74392f1445e2a90e0 Mon Sep 17 00:00:00 2001 From: Steve Hobbs Date: Thu, 14 Jan 2021 12:53:09 +0000 Subject: [PATCH] Release v9.14.1 (#1147) * Release v9.14.1 * Run npm audit fix --- CHANGELOG.md | 6 ++++ README.md | 2 +- docs/Authentication.html | 2 +- docs/Management.html | 2 +- docs/WebAuth.html | 2 +- docs/authentication_db-connection.js.html | 2 +- docs/authentication_index.js.html | 12 ++++---- docs/global.html | 28 +++++++++---------- docs/helper_object.js.html | 2 +- docs/index.html | 20 ++++++------- docs/management_index.js.html | 2 +- docs/web-auth_captcha.js.html | 2 +- ...b-auth_cross-origin-authentication.js.html | 2 +- docs/web-auth_hosted-pages.js.html | 2 +- docs/web-auth_index.js.html | 2 +- docs/web-auth_popup.js.html | 2 +- docs/web-auth_redirect.js.html | 2 +- package-lock.json | 26 ++++++----------- package.json | 4 +-- src/version.js | 2 +- 20 files changed, 62 insertions(+), 62 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f174874d..4168f890 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,10 @@ +## [v9.14.1](https://github.com/auth0/auth0.js/tree/v9.14.1) (2021-01-14) +[Full Changelog](https://github.com/auth0/auth0.js/compare/v9.14.0...v9.14.1) + +**Changed** +- Allow domain to contain http scheme [\#1144](https://github.com/auth0/auth0.js/pull/1144) ([danmastrowcoles](https://github.com/danmastrowcoles)) + ## [v9.14.0](https://github.com/auth0/auth0.js/tree/v9.14.0) (2020-09-11) [Full Changelog](https://github.com/auth0/auth0.js/compare/v9.13.4...v9.14.0) diff --git a/README.md b/README.md index a22e832c..9da57b28 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ From CDN: ```html - + ``` From [npm](https://npmjs.org): diff --git a/docs/Authentication.html b/docs/Authentication.html index a596e941..4175aafc 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 367cd656..758eb544 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 6d0e5d14..2772c256 100644 --- a/docs/WebAuth.html +++ b/docs/WebAuth.html @@ -1073,7 +1073,7 @@
Parameters:

diff --git a/docs/authentication_db-connection.js.html b/docs/authentication_db-connection.js.html index 37ce83c7..aaba82d7 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 fbeec831..3c738451 100644 --- a/docs/authentication_index.js.html +++ b/docs/authentication_index.js.html @@ -119,7 +119,7 @@

authentication/index.js

optional: true, type: 'object', message: '_telemetryInfo option is not valid' - } + }, } ); /* eslint-enable */ @@ -129,9 +129,11 @@

authentication/index.js

this.baseOptions._sendTelemetry === false ? this.baseOptions._sendTelemetry : true; - - this.baseOptions.rootUrl = 'https://' + this.baseOptions.domain; - + + this.baseOptions.rootUrl = (this.baseOptions.domain && this.baseOptions.domain.toLowerCase().indexOf('http') === 0) + ? this.baseOptions.domain + : 'https://' + this.baseOptions.domain; + this.request = new RequestBuilder(this.baseOptions); this.passwordless = new PasswordlessAuthentication( @@ -686,7 +688,7 @@

authentication/index.js


diff --git a/docs/global.html b/docs/global.html index 8a216e65..949704d8 100644 --- a/docs/global.html +++ b/docs/global.html @@ -1177,7 +1177,7 @@

buil
Source:
@@ -1637,7 +1637,7 @@

buildLo
Source:
@@ -3397,7 +3397,7 @@

delegation<
Source:
@@ -3845,7 +3845,7 @@

getChalle
Source:
@@ -3980,7 +3980,7 @@

getSSOData<
Source:
@@ -4503,7 +4503,7 @@

loginSource:
@@ -6550,7 +6550,7 @@

Source:
@@ -6888,7 +6888,7 @@

Source:
@@ -12741,7 +12741,7 @@

userInfoSource:
@@ -13237,7 +13237,7 @@

auth
Source:
@@ -14221,7 +14221,7 @@

del
Source:
@@ -14656,7 +14656,7 @@

tokenCal
Source:
@@ -15181,7 +15181,7 @@

userI
Source:
@@ -15510,7 +15510,7 @@

Parameters:

- Generated by JSDoc 3.6.3 on Fri Sep 11 2020 16:36:29 GMT+0100 (British Summer Time) using the Minami theme. + Generated by JSDoc 3.6.3 on Thu Jan 14 2021 11:57:05 GMT+0000 (Greenwich Mean Time) using the Minami theme.
diff --git a/docs/helper_object.js.html b/docs/helper_object.js.html index a83797ba..dae3d44f 100644 --- a/docs/helper_object.js.html +++ b/docs/helper_object.js.html @@ -259,7 +259,7 @@

helper/object.js


- Generated by JSDoc 3.6.3 on Fri Sep 11 2020 16:36:29 GMT+0100 (British Summer Time) using the Minami theme. + Generated by JSDoc 3.6.3 on Thu Jan 14 2021 11:57:05 GMT+0000 (Greenwich Mean Time) using the Minami theme.
diff --git a/docs/index.html b/docs/index.html index 55a4727f..be3743de 100644 --- a/docs/index.html +++ b/docs/index.html @@ -74,7 +74,7 @@

Index

Install

From CDN:

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

From npm:

npm install auth0-js
@@ -212,14 +212,14 @@ 

Migration

If you need help migrating to v9, please refer to the v9 Migration Guide.

If you need help migrating to v8, please refer to the v8 Migration Guide.

Develop

-

Run yarn install to set up the environment.

-

Run yarn start to point your browser to https://localhost:3000/ to verify the example page works.

-

Run yarn test to run the test suite.

-

Run yarn ci:test to run the tests that ci runs.

-

Run yarn test:watch to run the test suite while you work.

-

Run yarn test:coverage to run the test suite with coverage report.

-

Run yarn lint to run the linter and check code styles.

-

Run yarn install && yarn build && yarn test:es-check:es5 && yarn test:es-check:es2015:module to check for JS incompatibility.

+

Run npm install to set up the environment.

+

Run npm start to point your browser to https://localhost:3000/ to verify the example page works.

+

Run npm test to run the test suite.

+

Run npm run ci:test to run the tests that ci runs.

+

Run npm run test:watch to run the test suite while you work.

+

Run npm run test:coverage to run the test suite with coverage report.

+

Run npm run lint to run the linter and check code styles.

+

Run npm install && npm run build && npm run test:es-check:es5 && npm run test:es-check:es2015:module to check for JS incompatibility.

See .circleci/config.yml for additional checks that might be run as part of circleci integration tests.

Issue Reporting

@@ -243,7 +243,7 @@

License


- Generated by JSDoc 3.6.3 on Fri Sep 11 2020 16:36:29 GMT+0100 (British Summer Time) using the Minami theme. + Generated by JSDoc 3.6.3 on Thu Jan 14 2021 11:57:05 GMT+0000 (Greenwich Mean Time) using the Minami theme.
diff --git a/docs/management_index.js.html b/docs/management_index.js.html index c5f4f579..ad6e13b1 100644 --- a/docs/management_index.js.html +++ b/docs/management_index.js.html @@ -221,7 +221,7 @@

management/index.js


- Generated by JSDoc 3.6.3 on Fri Sep 11 2020 16:36:29 GMT+0100 (British Summer Time) using the Minami theme. + Generated by JSDoc 3.6.3 on Thu Jan 14 2021 11:57:05 GMT+0000 (Greenwich Mean Time) using the Minami theme.
diff --git a/docs/web-auth_captcha.js.html b/docs/web-auth_captcha.js.html index 5c54e2cb..59ba6c0a 100644 --- a/docs/web-auth_captcha.js.html +++ b/docs/web-auth_captcha.js.html @@ -186,7 +186,7 @@

web-auth/captcha.js


- Generated by JSDoc 3.6.3 on Fri Sep 11 2020 16:36:29 GMT+0100 (British Summer Time) using the Minami theme. + Generated by JSDoc 3.6.3 on Thu Jan 14 2021 11:57:05 GMT+0000 (Greenwich Mean Time) using the Minami theme.
diff --git a/docs/web-auth_cross-origin-authentication.js.html b/docs/web-auth_cross-origin-authentication.js.html index 96678d10..585399e9 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


- Generated by JSDoc 3.6.3 on Fri Sep 11 2020 16:36:29 GMT+0100 (British Summer Time) using the Minami theme. + Generated by JSDoc 3.6.3 on Thu Jan 14 2021 11:57:05 GMT+0000 (Greenwich Mean Time) using the Minami theme.
diff --git a/docs/web-auth_hosted-pages.js.html b/docs/web-auth_hosted-pages.js.html index 270e796b..449c5c26 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


- Generated by JSDoc 3.6.3 on Fri Sep 11 2020 16:36:29 GMT+0100 (British Summer Time) using the Minami theme. + Generated by JSDoc 3.6.3 on Thu Jan 14 2021 11:57:05 GMT+0000 (Greenwich Mean Time) using the Minami theme.
diff --git a/docs/web-auth_index.js.html b/docs/web-auth_index.js.html index fde29acf..3e2e4455 100644 --- a/docs/web-auth_index.js.html +++ b/docs/web-auth_index.js.html @@ -1001,7 +1001,7 @@

web-auth/index.js


- Generated by JSDoc 3.6.3 on Fri Sep 11 2020 16:36:29 GMT+0100 (British Summer Time) using the Minami theme. + Generated by JSDoc 3.6.3 on Thu Jan 14 2021 11:57:05 GMT+0000 (Greenwich Mean Time) using the Minami theme.
diff --git a/docs/web-auth_popup.js.html b/docs/web-auth_popup.js.html index 43a9456e..69083d26 100644 --- a/docs/web-auth_popup.js.html +++ b/docs/web-auth_popup.js.html @@ -361,7 +361,7 @@

web-auth/popup.js


- Generated by JSDoc 3.6.3 on Fri Sep 11 2020 16:36:29 GMT+0100 (British Summer Time) using the Minami theme. + Generated by JSDoc 3.6.3 on Thu Jan 14 2021 11:57:05 GMT+0000 (Greenwich Mean Time) using the Minami theme.
diff --git a/docs/web-auth_redirect.js.html b/docs/web-auth_redirect.js.html index fd17b021..f16af491 100644 --- a/docs/web-auth_redirect.js.html +++ b/docs/web-auth_redirect.js.html @@ -110,7 +110,7 @@

web-auth/redirect.js


- Generated by JSDoc 3.6.3 on Fri Sep 11 2020 16:36:29 GMT+0100 (British Summer Time) using the Minami theme. + Generated by JSDoc 3.6.3 on Thu Jan 14 2021 11:57:05 GMT+0000 (Greenwich Mean Time) using the Minami theme.
diff --git a/package-lock.json b/package-lock.json index a79cca7c..b3b5de49 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "auth0-js", - "version": "9.13.4", + "version": "9.14.1", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -1864,9 +1864,9 @@ "dev": true }, "caporal": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/caporal/-/caporal-1.3.0.tgz", - "integrity": "sha512-4bj21UXbEu5cF+1gVjhwwRqMhY3lR7CUTlBr6YX3uzftL4l/sbu8EoHfOLZWHr+HeiosW9fTWkQCS2UZMAk5lw==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/caporal/-/caporal-1.4.0.tgz", + "integrity": "sha512-3pWfIwKVdIbB/gWmpLloO6iGAXTRi9mcTinPOwvHfzH3BYjOhLgq2XRG3hKtp+F6vBcBXxMgCobUzBAx1d8T4A==", "dev": true, "requires": { "bluebird": "^3.4.7", @@ -2773,22 +2773,14 @@ } }, "es-check": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/es-check/-/es-check-5.1.0.tgz", - "integrity": "sha512-QlRhlUmEpdnleBFYWRFROm8u9cNPOWdE1iXQPWiQXnwmlJZ0hSxWpLOXwpFLyRrwnTmt5xqYM/5OR8Ao0MYa8w==", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/es-check/-/es-check-5.2.0.tgz", + "integrity": "sha512-9vF1x3LXhANiXgauW+kSFNvEy4XymUddCV2a32Af/ruVmyfLHQPKkVz4bhafJsZhWxXbdiySX+cF7p4/w0ABBQ==", "dev": true, "requires": { - "acorn": "6.1.1", - "caporal": "1.3.0", + "acorn": "^6.4.1", + "caporal": "1.4.0", "glob": "^7.1.2" - }, - "dependencies": { - "acorn": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.1.1.tgz", - "integrity": "sha512-jPTiwtOxaHNaAPg/dmrJ/beuzLRnXtB0kQPQ8JpotKJgTB6rX6c8mlf315941pyjBSaPg8NHXS9fhP4u17DpGA==", - "dev": true - } } }, "es-to-primitive": { diff --git a/package.json b/package.json index c4537733..c7007c6f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "auth0-js", - "version": "9.14.0", + "version": "9.14.1", "description": "Auth0 headless browser sdk", "author": "Auth0", "license": "MIT", @@ -68,7 +68,7 @@ "babel-plugin-istanbul": "^5.1.4", "codecov": "^3.7.0", "cross-env": "^5.2.0", - "es-check": "^5.0.0", + "es-check": "^5.2.0", "eslint": "^6.0.1", "eslint-config-auth0-base": "^13.1.0", "eslint-config-prettier": "^6.0.0", diff --git a/src/version.js b/src/version.js index 3be205ca..340fbf6d 100644 --- a/src/version.js +++ b/src/version.js @@ -1 +1 @@ -module.exports = { raw: '9.14.0' }; +module.exports = { raw: '9.14.1' };