This repository has been archived by the owner on Dec 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Release 0.4.4 * Update auth0-js to 9.16.4
- Loading branch information
Steve Hobbs
authored
Aug 27, 2021
1 parent
c10a44a
commit 133a815
Showing
10 changed files
with
29 additions
and
37,704 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
# Change Log | ||
|
||
## [v0.4.4](https://github.com/auth0/auth0-cordova/tree/v0.4.4) (2021-08-27) | ||
|
||
**Dependencies** | ||
|
||
Various dependency updates. Also Webpack@4 to fix a build issue with `asn1.js` and `[email protected]` to bring in `crypto-js@4` and fix a vulnerability there. [\#177](https://github.com/auth0/auth0-cordova/pull/177) ([stevehobbsdev](https://github.com/stevehobbsdev)) | ||
|
||
## [v0.4.3](https://github.com/auth0/auth0-cordova/tree/v0.4.3) (2020-01-21) | ||
|
||
**Dependencies** | ||
|
@@ -119,14 +125,14 @@ document.addEventListener('deviceready', main); | |
const auth0 = new Auth0Cordova({ | ||
domain: '{YOUR_AUTH0_DOMAIN}', | ||
clientId: '{YOUR_AUTH0_CLIENT_ID}', | ||
packageIdentifier: '{WIDGET_ID_IN_CONFIG_XML}' | ||
packageIdentifier: '{WIDGET_ID_IN_CONFIG_XML}', | ||
}); | ||
|
||
const options = { | ||
scope: 'openid profile' | ||
scope: 'openid profile', | ||
}; | ||
|
||
client.authorize(options, function(err, result) { | ||
client.authorize(options, function (err, result) { | ||
if (err) { | ||
// failure | ||
} | ||
|
Oops, something went wrong.