Skip to content

Commit

Permalink
Merge pull request #547 from auth0/prepare-10.1.0
Browse files Browse the repository at this point in the history
Release: 10.1.0
  • Loading branch information
gnandretta committed Aug 9, 2016
2 parents 860b0e4 + f5dcb0e commit 303cd2b
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 108 deletions.
109 changes: 6 additions & 103 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [10.1.0] - 2016-08-09

### Added

- Add `de` translation (#546)

## [10.0.2] - 2016-08-05

### Fixed
Expand Down Expand Up @@ -138,106 +144,3 @@
## [10.0.0-beta.1] - 2016-03-23

First preview release, see [https://auth0.com/docs/libraries/lock/v10](https://auth0.com/docs/libraries/lock/v10) for details.

## [2.2.1] - 2016-01-18

### Changed

- Some font alternatives are provided instead of defaulting to sans-serif immediately on systems without Avenir.

### Fixed

- Pass `authParams` option in a social login.

## [2.2.0] - 2016-01-14

### Changed

- Make it easy to bundle the module with [browserify](https://browserify.org) or [webpack](https://webpack.github.io/). Custom transforms or loaders are no longer needed. **Please review your bundling process when upgrading to this version**.

## [2.1.1] - 2016-01-07

### Fixed

- Namespace style normalization rules inside .auth0-lock.

## [2.1.0] - 2016-01-06

### Changed

- Allow spaces and hyphens in phone numbers.
- Upgrade to React v0.14.5.
- Upgrade to Auth0.js v6.8.0.

### Added

- Add a back button when selecting a country code.

### Fixed

- Force all characters to lower-case when creating the Gravatar's md5 hash.
- Fix resend magic link button in applications using [page.js](https://github.com/visionmedia/page.js).

## [2.0.1] - 2015-12-04

### Fixed

- Ensure Facebook page looks fine in the popup.

## [2.0.0] - 2015-12-03

### Changed

- The Lock can now be reopened after it is closed.
- When a `defaultLocation` option is not provided the country code will be derived from the user's geo-location. If it can't be obtained before the Lock is shown, it will default to _+1 (US)_.
- Some dictionary keys, used for confirmation screens have been renamed:
- `emailcode.confirmation` was changed to `emailcode.signedIn`.
- `magiclink.confirmation` was changed to `magiclink.emailSent`.
- `sms.confirmation` was changed to `sms.signedIn`.
- Upgraded to React v0.14.3. Thanks @joelburget.
- Upgraded to Auth0.js 6.7.7.

### Added

- A warning will be shown when a `scope="openid profile"` is used. Can be avoided with the `disableWarnings` option.
- Now the Lock allows to authenticate with social providers by calling the `social` method. The behavior can be controlled with the new `connections` and `socialBigButtons` options.
- It is possible to mix social authentication with all the previously provided passwordless alternatives by calling `socialOrMagiclink`, `socialOrEmailcode` or `socialOrSms`.
- A `destroy` method has been added since calling `close` no longer frees the Lock's resources.

### Fixed

- Some styling tweaks in the Lock's header.
- Footer text was displayed incorrectly in small screens.

## [1.0.2] - 2015-09-30

### Changed

- Make phone number and verification code inputs bring up a numeric keyboard on mobile devices.

### Fixed

- Debounce Gravatar requests.
- Use always the same height for the header icon.
- Ensure the title always shows up always in the same place.
- Fix close and back buttons on some old IE versions, they weren't responding to the click event.
- Ensure the Lock is displayed correctly in pages with z-ordered elements (as long as their values are less than 10.000.00).
- Use colors taken from the Gravatar for the header background.

## [1.0.1] - 2015-09-30

### Added

- Specific error message for invalid phone numbers.

### Fixed

- Playground styling.

## [1.0.0] - 2015-09-30

- First public release.

## [0.9.0] - 2015-09-30

- First public pre-release.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ From CDN

```html
<!-- Latest patch release (recommended for production) -->
<script src="http://cdn.auth0.com/js/lock/10.0.2/lock.min.js"></script>
<script src="http://cdn.auth0.com/js/lock/10.1.0/lock.min.js"></script>
```

From [bower](http://bower.io)
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "auth0-lock",
"version": "10.0.2",
"version": "10.1.0",
"main": "build/lock.js",
"ignore": [
"lib-cov",
Expand Down
2 changes: 1 addition & 1 deletion examples/bundling/browserify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
]
},
"dependencies": {
"auth0-lock": "^10.0.0"
"auth0-lock": "^10.1.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.3.13",
Expand Down
2 changes: 1 addition & 1 deletion examples/bundling/webpack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"author": "",
"license": "MIT",
"dependencies": {
"auth0-lock": "^10.0.0"
"auth0-lock": "^10.1.0"
},
"devDependencies": {
"babel-core": "^6.4.0",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "auth0-lock",
"version": "10.0.2",
"version": "10.1.0",
"description": "Auth0 Lock",
"author": "Auth0 <[email protected]> (http://auth0.com)",
"license": "MIT",
Expand Down

0 comments on commit 303cd2b

Please sign in to comment.