diff --git a/CHANGELOG.md b/CHANGELOG.md index 096cddf66..d66473e02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,42 @@ # Change Log +## [v10.3.0](https://github.com/auth0/lock/tree/v10.3.0) (2016-09-19) +[Full Changelog](https://github.com/auth0/lock/compare/v10.2.2...v10.3.0) + +**Closed issues:** +- v10: KerberosScreen failing on internal Network [\#590](https://github.com/auth0/lock/issues/590) +- Languages not available on cdn.eu.auth0.com [\#576](https://github.com/auth0/lock/issues/576) +- The lock v10 with ionic2 page can not scroll. [\#532](https://github.com/auth0/lock/issues/532) +- Signup terms checkbox overlays password field on small devices. [\#525](https://github.com/auth0/lock/issues/525) +- Lock + Meteor breaks when trying to require & use blueimp-md5 [\#466](https://github.com/auth0/lock/issues/466) +- White space on bottom when running/simulating on mobile device [\#376](https://github.com/auth0/lock/issues/376) + +**Fixed:** +- Bump blueimp-md5@2.3.1 [\#613](https://github.com/auth0/lock/pull/613) ([cristiandouce](https://github.com/cristiandouce)) +- Handle uncaught unrecoverable_error [\#609](https://github.com/auth0/lock/pull/609) ([eddiezane](https://github.com/eddiezane)) +- fixed loading unaligned with label submit [\#606](https://github.com/auth0/lock/pull/606) ([beneliflo](https://github.com/beneliflo)) +- Fix EscKeyDownHandler bug in Container when `closable` is false [\#604](https://github.com/auth0/lock/pull/604) ([kevinzwh](https://github.com/kevinzwh)) +- Fix checkbox terms [\#597](https://github.com/auth0/lock/pull/597) ([beneliflo](https://github.com/beneliflo)) +- Fixes corporate network connection usage [\#594](https://github.com/auth0/lock/pull/594) ([CriGoT](https://github.com/CriGoT)) +- fixed ionic page scroll [\#591](https://github.com/auth0/lock/pull/591) ([beneliflo](https://github.com/beneliflo)) + +**Added:** +- Add min/max username validation from client info settings [\#611](https://github.com/auth0/lock/pull/611) ([cristiandouce](https://github.com/cristiandouce)) +- Introduce clientBaseUrl and languageBaseUrl options to deprecate assetsUrl [\#601](https://github.com/auth0/lock/pull/601) ([cristiandouce](https://github.com/cristiandouce)) +- Added Hungarian translations [\#599](https://github.com/auth0/lock/pull/599) ([nagyv](https://github.com/nagyv)) +- Add french translation [\#596](https://github.com/auth0/lock/pull/596) ([RomainFallet](https://github.com/RomainFallet)) +- Added Swedish (sv) translation. [\#593](https://github.com/auth0/lock/pull/593) ([kuljaninemir](https://github.com/kuljaninemir)) + +**Changed:** +- use ReactCSSTransitionGroup for global messages [\#595](https://github.com/auth0/lock/pull/595) ([robbiewxyz](https://github.com/robbiewxyz)) + +**Deprecation notice:** + +This version introduces `languageBaseUrl` and `cliengBaseUrl` in replacement of `assetsUrl`. + +- The client will be fetched from `${clientBaseUrl}/${clientID}.js` and will default to the CDN url including the region (e.g. `https://cdn.eu.auth0.com/client`). The region is inferred from the `domain`. +- The language will be fetched from `${languageBaseUrl}/${lang}.js` and will default to the CDN without the region (e.g. `https://cdn.auth0.com/js/lock/${lockVersion}/`). +- The new options have priority over `assetsUrl`. +- If `assetsUrl` is provided, keep the current behavior: fetch client from `${assetsUrl}/client/${clientID}.js` and languages from `{assetsUrl}/js/lock/${lockVersion}/${language}.js`. ## [v10.2.2](https://github.com/auth0/lock/tree/v10.2.2) (2016-08-31) [Full Changelog](https://github.com/auth0/lock/compare/v10.2.1...v10.2.2) diff --git a/README.md b/README.md index 6baa22571..28072ee91 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ From CDN ```html - + ``` From [bower](http://bower.io) diff --git a/bower.json b/bower.json index 1b4326b71..bf12dbea6 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "auth0-lock", - "version": "10.2.2", + "version": "10.3.0", "main": "build/lock.js", "ignore": [ "lib-cov", diff --git a/examples/bundling/browserify/package.json b/examples/bundling/browserify/package.json index eba54ae2e..ecd2eff17 100644 --- a/examples/bundling/browserify/package.json +++ b/examples/bundling/browserify/package.json @@ -15,7 +15,7 @@ ] }, "dependencies": { - "auth0-lock": "^10.2.2" + "auth0-lock": "^10.3.0" }, "devDependencies": { "babel-preset-es2015": "^6.3.13", diff --git a/examples/bundling/webpack/package.json b/examples/bundling/webpack/package.json index 3ff280ea9..73eaa0ac7 100644 --- a/examples/bundling/webpack/package.json +++ b/examples/bundling/webpack/package.json @@ -10,7 +10,7 @@ "author": "", "license": "MIT", "dependencies": { - "auth0-lock": "^10.2.2" + "auth0-lock": "^10.3.0" }, "devDependencies": { "babel-core": "^6.4.0", diff --git a/package.json b/package.json index 5cf84773c..c90ef5bd7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "auth0-lock", - "version": "10.2.2", + "version": "10.3.0", "description": "Auth0 Lock", "author": "Auth0 (http://auth0.com)", "license": "MIT",