Socket
Socket
Sign inDemoInstall

auth0-js

Package Overview
Dependencies
Maintainers
42
Versions
263
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

auth0-js - npm Package Compare versions

Comparing version 9.14.0 to 9.14.1

6

CHANGELOG.md
## [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)

@@ -3,0 +9,0 @@ [Full Changelog](https://github.com/auth0/auth0.js/compare/v9.13.4...v9.14.0)

4

package.json
{
"name": "auth0-js",
"version": "9.14.0",
"version": "9.14.1",
"description": "Auth0 headless browser sdk",

@@ -71,3 +71,3 @@ "author": "Auth0",

"cross-env": "^5.2.0",
"es-check": "^5.0.0",
"es-check": "^5.2.0",
"eslint": "^6.0.1",

@@ -74,0 +74,0 @@ "eslint-config-auth0-base": "^13.1.0",

@@ -35,3 +35,3 @@ ![](https://cdn.auth0.com/resources/oss-source-large-2x.png)

<!-- 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>
```

@@ -205,17 +205,17 @@

Run `yarn install` to set up the environment.
Run `npm install` to set up the environment.
Run `yarn start` to point your browser to [`https://localhost:3000/`](https://localhost:3000/) to verify the example page works.
Run `npm start` to point your browser to [`https://localhost:3000/`](https://localhost:3000/) to verify the example page works.
Run `yarn test` to run the test suite.
Run `npm test` to run the test suite.
Run `yarn ci:test` to run the tests that ci runs.
Run `npm run ci:test` to run the tests that ci runs.
Run `yarn test:watch` to run the test suite while you work.
Run `npm run test:watch` to run the test suite while you work.
Run `yarn test:coverage` to run the test suite with coverage report.
Run `npm run test:coverage` to run the test suite with coverage report.
Run `yarn lint` to run the linter and check code styles.
Run `npm run 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 && npm run build && npm run test:es-check:es5 && npm run test:es-check:es2015:module` to check for JS incompatibility.

@@ -252,3 +252,2 @@ See [.circleci/config.yml](.circleci/config.yml) for additional checks that might be run as part of

[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fauth0%2Fauth0.js.svg?type=large)](https://app.fossa.com/projects/git%2Bgithub.com%2Fauth0%2Fauth0.js?ref=badge_large)

@@ -81,3 +81,3 @@ import urljoin from 'url-join';

message: '_telemetryInfo option is not valid'
}
},
}

@@ -92,5 +92,7 @@ );

: 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);

@@ -97,0 +99,0 @@

@@ -1,1 +0,1 @@

module.exports = { raw: '9.14.0' };
module.exports = { raw: '9.14.1' };

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc