Skip to content
This repository has been archived by the owner on Dec 15, 2023. It is now read-only.

Commit

Permalink
Release 0.4.4 (#178)
Browse files Browse the repository at this point in the history
* 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
Show file tree
Hide file tree
Showing 10 changed files with 29 additions and 37,704 deletions.
12 changes: 9 additions & 3 deletions CHANGELOG.md
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**
Expand Down Expand Up @@ -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
}
Expand Down
Loading

0 comments on commit 133a815

Please sign in to comment.