UNPKG

47.1 kBMarkdownView Raw
1# Change Log
2
3## [v11.2.2](https://github.com/auth0/lock/tree/v11.2.2) (2018-02-06)
4[Full Changelog](https://github.com/auth0/lock/compare/v11.2.1...v11.2.2)
5
6
7**Fixed**
8- Upgrade a0js to fix popup mode with passwordless [\#1251](https://github.com/auth0/lock/pull/1251) ([luisrudge](https://github.com/luisrudge))
9
10
11## [v11.2.1](https://github.com/auth0/lock/tree/v11.2.1) (2018-02-02)
12[Full Changelog](https://github.com/auth0/lock/compare/v11.2.0...v11.2.1)
13
14
15**Fixed**
16- DIsable HRD check for passwordless connections [\#1248](https://github.com/auth0/lock/pull/1248) ([luisrudge](https://github.com/luisrudge))
17
18
19## [v11.2.0](https://github.com/auth0/lock/tree/v11.2.0) (2018-02-02)
20[Full Changelog](https://github.com/auth0/lock/compare/v11.1.3...v11.2.0)
21
22
23**Changed**
24- call /ssodata when inside the universal login page [\#1245](https://github.com/auth0/lock/pull/1245) ([luisrudge](https://github.com/luisrudge))
25- Handling embedded and universal login in the same client [\#1243](https://github.com/auth0/lock/pull/1243) ([luisrudge](https://github.com/luisrudge))
26
27
28## [v11.1.3](https://github.com/auth0/lock/tree/v11.1.3) (2018-01-29)
29[Full Changelog](https://github.com/auth0/lock/compare/v11.1.2...v11.1.3)
30
31**Changed**
32- Update auth0.js [auth0.js changelog](https://github.com/auth0/auth0.js/blob/master/CHANGELOG.md#v913-2018-01-29)
33
34
35
36## [v11.1.2](https://github.com/auth0/lock/tree/v11.1.2) (2018-01-26)
37[Full Changelog](https://github.com/auth0/lock/compare/v11.1.1...v11.1.2)
38
39**Changed**
40- Update auth0.js [auth0.js changelog](https://github.com/auth0/auth0.js/blob/master/CHANGELOG.md#v912-2018-01-26)
41
42
43## [v11.1.1](https://github.com/auth0/lock/tree/v11.1.1) (2018-01-24)
44[Full Changelog](https://github.com/auth0/lock/compare/v11.1.0...v11.1.1)
45
46**Changed**
47- Update auth0.js [auth0.js changelog](https://github.com/auth0/auth0.js/blob/master/CHANGELOG.md#v911-2018-01-24)
48
49
50## [v11.1.0](https://github.com/auth0/lock/tree/v11.1.0) (2018-01-16)
51[Full Changelog](https://github.com/auth0/lock/compare/v11.0.1...v11.1.0)
52
53
54**Changed**
55- Update auth0.js [\#1225](https://github.com/auth0/lock/pull/1225) ([luisrudge](https://github.com/luisrudge))
56
57
58## [v11.0.0](https://github.com/auth0/lock/tree/v11.0.0) (2017-12-21)
59[Full Changelog](https://github.com/auth0/lock/compare/v10.23.0...v11.0.0)
60
61Lock v11 is designed for embedded login scenarios and **is not supported in centralized login scenarios** (i.e. Hosted Login Pages). You need to keep using Lock v10 in the Hosted Login Page.
62
63We wrote a [Migration Guide](https://auth0.com/docs/libraries/lock/v11/migration-guide) to make upgrading your app easy.
64
65**Breaking change**
66`lock.getProfile` now expects an access\_token as the first parameter. You'll need to update your code to change the parameter sent (v10 expected an id_token).
67
68**Removed**
69The `oidcConformant` flag was used to force Lock v10 to not call legacy endpoints. Lock v11 never uses legacy endpoint so the flag is not needed anymore. If specified, it will be ignored.
70
71**Changed**
72Lock v11 default the `scope` parameter to `openid profile email`. This is to make the 'Last Logged in With' window work.
73
74## [v10.23.1](https://github.com/auth0/lock/tree/v10.23.1) (2017-10-12)
75[Full Changelog](https://github.com/auth0/lock/compare/v10.23.0...v10.23.1)
76
77
78**Fixed**
79- Using correct suffix for animation [\#1146](https://github.com/auth0/lock/pull/1146) ([luisrudge](https://github.com/luisrudge))
80
81
82## [v10.23.0](https://github.com/auth0/lock/tree/v10.23.0) (2017-10-12)
83[Full Changelog](https://github.com/auth0/lock/compare/v10.22.0...v10.23.0)
84
85
86**Changed**
87- Pinning react version 15.6.2 [\#1142](https://github.com/auth0/lock/pull/1142) ([luisrudge](https://github.com/luisrudge))
88- upgrade auth0.js [\#1137](https://github.com/auth0/lock/pull/1137) ([luisrudge](https://github.com/luisrudge))
89- Upgrade react version [\#1135](https://github.com/auth0/lock/pull/1135) ([luisrudge](https://github.com/luisrudge))
90
91**Fixed**
92- Fix defaultUrl sending hash content [\#1132](https://github.com/auth0/lock/pull/1132) ([luisrudge](https://github.com/luisrudge))
93
94
95### ** NOTICE **
96We're trying to figure it out how to help customers that want to upgrade to react@16. The ideal would be to move react and react-dom to peerDependencies, but this would be a breaking change for most of our customers, so we're thinking this through.
97
98In the meantime, react@16 works just fine with this codebase. You'll just have to bundle both versions if you're not using yarn. If you are using yarn, however, you can use the `resolutions` field and pin react@16 to your repo.
99
100```
101{
102 "name": "test-test",
103 "version": "0.1.0",
104 "private": true,
105 "dependencies": {
106 "auth0-lock": "^10.23.0",
107 "react": "^16.0.0",
108 "react-dom": "^16.0.0",
109 "react-scripts": "^1.0.14"
110 },
111 "scripts": {
112 "start": "react-scripts start",
113 "build": "react-scripts build",
114 "test": "react-scripts test --env=jsdom",
115 "eject": "react-scripts eject"
116 },
117 "resolutions": {
118 "react": "16.0.0",
119 "react-dom": "16.0.0"
120 }
121}
122```
123
124
125## [v10.22.0](https://github.com/auth0/lock/tree/v10.22.0) (2017-09-26)
126[Full Changelog](https://github.com/auth0/lock/compare/v10.21.1...v10.22.0)
127
128
129**Added**
130- Adding oidcConformant readme entry [\#1119](https://github.com/auth0/lock/pull/1119) ([luisrudge](https://github.com/luisrudge))
131
132**Changed**
133- Make cross origin authentication the default in OIDC mode [\#1124](https://github.com/auth0/lock/pull/1124) ([luisrudge](https://github.com/luisrudge))
134
135
136## [v10.21.1](https://github.com/auth0/lock/tree/v10.21.1) (2017-09-21)
137[Full Changelog](https://github.com/auth0/lock/compare/v10.21.0...v10.21.1)
138
139
140**Fixed**
141- Fix resolved connection not being a Map object [\#1116](https://github.com/auth0/lock/pull/1116) ([luisrudge](https://github.com/luisrudge))
142
143
144## [v10.21.0](https://github.com/auth0/lock/tree/v10.21.0) (2017-09-21)
145[Full Changelog](https://github.com/auth0/lock/compare/v10.20.0...v10.21.0)
146
147
148**Added**
149- Add Estonian Translations [\#1099](https://github.com/auth0/lock/pull/1099) ([meikoudras](https://github.com/meikoudras))
150
151**Changed**
152- Changed the connectionResolver to run onSubmit instead of onBlur [\#1113](https://github.com/auth0/lock/pull/1113) ([luisrudge](https://github.com/luisrudge))
153- Change translate for loginAtLabel [\#1110](https://github.com/auth0/lock/pull/1110) ([radu-carmina](https://github.com/radu-carmina))
154
155**Fixed**
156- Use resolvedConnection where available [\#1111](https://github.com/auth0/lock/pull/1111) ([lukevmorris](https://github.com/lukevmorris))
157- Fix a few svg errors when used with global css rule [\#1103](https://github.com/auth0/lock/pull/1103) ([luisrudge](https://github.com/luisrudge))
158- Links with # should use javascript:void(0) [\#1102](https://github.com/auth0/lock/pull/1102) ([luisrudge](https://github.com/luisrudge))
159- Improve Danish translation [\#1097](https://github.com/auth0/lock/pull/1097) ([havgry](https://github.com/havgry))
160- Fixed translations for Romanian and Slovenian [\#1092](https://github.com/auth0/lock/pull/1092) ([AdrianSima](https://github.com/AdrianSima))
161
162
163## [v10.20.0](https://github.com/auth0/lock/tree/v10.20.0) (2017-08-11)
164[Full Changelog](https://github.com/auth0/lock/compare/v10.19.0...v10.20.0)
165
166
167**Added**
168- Add Romanian translations [\#1074](https://github.com/auth0/lock/pull/1074) ([jogee](https://github.com/jogee))
169- Add Slovenian translations [\#1073](https://github.com/auth0/lock/pull/1073) ([jogee](https://github.com/jogee))
170
171**Changed**
172- Update username allowed chars regex [\#1079](https://github.com/auth0/lock/pull/1079) ([luisrudge](https://github.com/luisrudge))
173
174**Fixed**
175- Fix custom theme for custom connections [\#1083](https://github.com/auth0/lock/pull/1083) ([luisrudge](https://github.com/luisrudge))
176- Fix spacing using custom signup fields [\#1076](https://github.com/auth0/lock/pull/1076) ([luisrudge](https://github.com/luisrudge))
177- Fixed Slovak translations [\#1069](https://github.com/auth0/lock/pull/1069) ([stajo1](https://github.com/stajo1))
178
179
180## [v10.19.0](https://github.com/auth0/lock/tree/v10.19.0) (2017-07-18)
181[Full Changelog](https://github.com/auth0/lock/compare/v10.18.0...v10.19.0)
182
183
184**Added**
185- Added `oidcConformant` entry to the readme [\#1054](https://github.com/auth0/lock/pull/1054) ([luisrudge](https://github.com/luisrudge))
186- Added a custom connection resolver option [\#1052](https://github.com/auth0/lock/pull/1052) ([luisrudge](https://github.com/luisrudge))
187- Added Korean translation [\#1051](https://github.com/auth0/lock/pull/1051) ([couldseeme](https://github.com/couldseeme))
188
189**Fixed**
190- Set the username to the previously used email when toggling hrd [\#1056](https://github.com/auth0/lock/pull/1056) ([luisrudge](https://github.com/luisrudge))
191
192
193## [v10.18.0](https://github.com/auth0/lock/tree/v10.18.0) (2017-06-23)
194[Full Changelog](https://github.com/auth0/lock/compare/v10.17.0...v10.18.0)
195
196
197**Added**
198- Add analytics events [\#1036](https://github.com/auth0/lock/pull/1036) ([francocorreasosa](https://github.com/francocorreasosa))
199- Lang Afrikaans South Africa [\#1035](https://github.com/auth0/lock/pull/1035) ([jdunhin](https://github.com/jdunhin))
200- Adding "show password" option [\#1029](https://github.com/auth0/lock/pull/1029) ([luisrudge](https://github.com/luisrudge))
201
202**Changed**
203- Upgrade React to fix IE11 issues [\#1039](https://github.com/auth0/lock/pull/1039) ([luisrudge](https://github.com/luisrudge))
204
205**Removed**
206- Removed node version restriction [\#1043](https://github.com/auth0/lock/pull/1043) ([luisrudge](https://github.com/luisrudge))
207
208**Fixed**
209- Fixing empty popup on signup [\#1048](https://github.com/auth0/lock/pull/1048) ([luisrudge](https://github.com/luisrudge))
210- Adding a flag for cross-auth [\#1044](https://github.com/auth0/lock/pull/1044) ([luisrudge](https://github.com/luisrudge))
211- Fix custom connection scopes [\#1038](https://github.com/auth0/lock/pull/1038) ([luisrudge](https://github.com/luisrudge))
212
213
214## [v10.17.0](https://github.com/auth0/lock/tree/v10.17.0) (2017-06-14)
215[Full Changelog](https://github.com/auth0/lock/compare/v10.16.0...v10.17.0)
216
217
218**Added**
219- Added allowAutoComplete ui option [\#1022](https://github.com/auth0/lock/pull/1022) ([luisrudge](https://github.com/luisrudge))
220- When in OIDC mode, enterprise connections always go to IdP page [\#1019](https://github.com/auth0/lock/pull/1019) ([luisrudge](https://github.com/luisrudge))
221- Added Cross Origin Auth support in OIDC mode [\#1013](https://github.com/auth0/lock/pull/1013) ([luisrudge](https://github.com/luisrudge))
222- Emit authorization_error when username/password fails (invalid_user_password) [\#999](https://github.com/auth0/lock/pull/999) ([luisrudge](https://github.com/luisrudge))
223
224**Changed**
225- Improved Danish translation [\#1033](https://github.com/auth0/lock/pull/1033) ([denkristoffer](https://github.com/denkristoffer))
226- Scroll to the error message by default [\#1023](https://github.com/auth0/lock/pull/1023) ([m-idler](https://github.com/m-idler))
227- Enabled HTML formatting for flashMessages [\#1017](https://github.com/auth0/lock/pull/1017) ([dariobanfi](https://github.com/dariobanfi))
228- package.json: ~ range allowed for auth0-js dep [\#1015](https://github.com/auth0/lock/pull/1015) ([lexaurin](https://github.com/lexaurin))
229
230**Fixed**
231- Removed extra scroll on mobile view [\#1031](https://github.com/auth0/lock/pull/1031) ([beneliflo](https://github.com/beneliflo))
232- Fixing tooltip error in the email pane [\#1030](https://github.com/auth0/lock/pull/1030) ([luisrudge](https://github.com/luisrudge))
233- Fix react-addons-css-transition-group issue [\#1001](https://github.com/auth0/lock/pull/1001) ([eoinmurray](https://github.com/eoinmurray))
234- Fixed overrides sent to auth0.js [\#997](https://github.com/auth0/lock/pull/997) ([sandrinodimattia](https://github.com/sandrinodimattia))
235
236
237## [v10.16.0](https://github.com/auth0/lock/tree/v10.16.0) (2017-05-08)
238[Full Changelog](https://github.com/auth0/lock/compare/v10.15.1...v10.16.0)
239
240
241**Added**
242- Add form method [\#993](https://github.com/auth0/lock/pull/993) ([luisrudge](https://github.com/luisrudge))
243
244**Changed**
245- Update badge location for better performance and bundle max-age changes [\#995](https://github.com/auth0/lock/pull/995) ([ramasilveyra](https://github.com/ramasilveyra))
246
247**Fixed**
248- Fix long header title and Error messages overflow [\#990](https://github.com/auth0/lock/pull/990) ([beneliflo](https://github.com/beneliflo))
249- Fix grammar mistake RU [\#988](https://github.com/auth0/lock/pull/988) ([uladar](https://github.com/uladar))
250
251
252## [v10.15.1](https://github.com/auth0/lock/tree/v10.15.1) (2017-04-25)
253[Full Changelog](https://github.com/auth0/lock/compare/v10.15.0...v10.15.1)
254
255
256**Fixed**
257- Moving dependencies to devDependencies [\#984](https://github.com/auth0/lock/pull/984) ([luisrudge](https://github.com/luisrudge))
258
259
260## [v10.15.0](https://github.com/auth0/lock/tree/v10.15.0) (2017-04-24)
261[Full Changelog](https://github.com/auth0/lock/compare/v10.14.0...v10.15.0)
262
263
264**Added**
265- Add support for paypal-sandbox strategy [\#975](https://github.com/auth0/lock/pull/975) ([ziluvatar](https://github.com/ziluvatar))
266
267**Changed**
268- Upgrade auth0-js to v8.6.0 [\#980](https://github.com/auth0/lock/pull/980) ([luisrudge](https://github.com/luisrudge))
269- Adding prettier and a precommit script to format the code :tada: :lipstick: [\#977](https://github.com/auth0/lock/pull/977) ([luisrudge](https://github.com/luisrudge))
270- Upgrading usage of prop-types to new package [\#971](https://github.com/auth0/lock/pull/971) ([luisrudge](https://github.com/luisrudge))
271- Use replaceState for better browser history experience [\#967](https://github.com/auth0/lock/pull/967) ([selaux](https://github.com/selaux))
272- Renaming internal `signOut` methods with `logout` to keep it consistent [\#966](https://github.com/auth0/lock/pull/966) ([luisrudge](https://github.com/luisrudge))
273- Improve error handling of sync with better errors [\#961](https://github.com/auth0/lock/pull/961) ([luisrudge](https://github.com/luisrudge))
274- Adding `key` to the error "An error occurred when fetching data" [\#956](https://github.com/auth0/lock/pull/956) ([luisrudge](https://github.com/luisrudge))
275
276**Fixed**
277- Fixed typo in cs.js [\#979](https://github.com/auth0/lock/pull/979) ([fersman](https://github.com/fersman))
278- fixed propType misspell in header.jsx [\#973](https://github.com/auth0/lock/pull/973) ([nickpisacane](https://github.com/nickpisacane))
279- Fixed scrolling on mobile in landscape mode [\#963](https://github.com/auth0/lock/pull/963) ([luisrudge](https://github.com/luisrudge))
280
281
282## [v10.14.0](https://github.com/auth0/lock/tree/v10.14.0) (2017-03-27)
283[Full Changelog](https://github.com/auth0/lock/compare/v10.13.0...v10.14.0)
284
285**Closed issues**
286- prefill option is lost after reset password [\#933](https://github.com/auth0/lock/issues/933)
287
288**Added**
289- Throw an error when audience is used without oidcConformant flag [\#947](https://github.com/auth0/lock/pull/947) ([luisrudge](https://github.com/luisrudge))
290- Added Finnish translation [\#936](https://github.com/auth0/lock/pull/936) ([kettunen](https://github.com/kettunen))
291- Added Ukrainian translation [\#931](https://github.com/auth0/lock/pull/931) ([grsmv](https://github.com/grsmv))
292
293**Changed**
294- Upgrade auth0js to v8.5.0 [\#952](https://github.com/auth0/lock/pull/952) ([luisrudge](https://github.com/luisrudge))
295- Disable social buttons when terms were not accepted on sign up [\#949](https://github.com/auth0/lock/pull/949) ([luisrudge](https://github.com/luisrudge))
296- Better explanation about the sso option [\#948](https://github.com/auth0/lock/pull/948) ([luisrudge](https://github.com/luisrudge))
297- Changed password leak error message [\#934](https://github.com/auth0/lock/pull/934) ([ntotten](https://github.com/ntotten))
298- Add support for success and error messages to be in HTML [\#928](https://github.com/auth0/lock/pull/928) ([luisrudge](https://github.com/luisrudge))
299
300**Fixed**
301- Fixing Italian dictionary [\#950](https://github.com/auth0/lock/pull/950) ([ilmistra](https://github.com/ilmistra))
302- Don't clear email field after reset password [\#945](https://github.com/auth0/lock/pull/945) ([luisrudge](https://github.com/luisrudge))
303- Disable autoCorrect and spellCheck in the username input [\#927](https://github.com/auth0/lock/pull/927) ([luisrudge](https://github.com/luisrudge))
304
305
306## [v10.13.0](https://github.com/auth0/lock/tree/v10.13.0) (2017-03-13)
307[Full Changelog](https://github.com/auth0/lock/compare/v10.12.3...v10.13.0)
308
309**Closed issues**
310- State with `=`, `&` characters is incorrectly parsed from url fragment [\#913](https://github.com/auth0/lock/issues/913)
311- Add support for Evernote strategy [\#895](https://github.com/auth0/lock/issues/895)
312
313**Fixed**
314- Updated auth0 js version [\#924](https://github.com/auth0/lock/pull/924) ([hzalaz](https://github.com/hzalaz))
315- Adds evernote social icon [\#923](https://github.com/auth0/lock/pull/923) ([vctrfrnndz](https://github.com/vctrfrnndz))
316- Add japanese translation for "OR" [\#921](https://github.com/auth0/lock/pull/921) ([vctrfrnndz](https://github.com/vctrfrnndz))
317- Fix some french translations. [\#918](https://github.com/auth0/lock/pull/918) ([lucasmichot](https://github.com/lucasmichot))
318- Replace querystring implementation with qs module [\#916](https://github.com/auth0/lock/pull/916) ([elger](https://github.com/elger))
319- Use error.name to find the correct error message for invalid passwords [\#904](https://github.com/auth0/lock/pull/904) ([luisrudge](https://github.com/luisrudge))
320
321
322## [v10.12.3](https://github.com/auth0/lock/tree/v10.12.3) (2017-03-07)
323[Full Changelog](https://github.com/auth0/lock/compare/v10.12.2...v10.12.3)
324
325
326**Fixed**
327- Update node engine restriction [\#909](https://github.com/auth0/lock/pull/909) ([hzalaz](https://github.com/hzalaz))
328- Fixed Czech translation [\#902](https://github.com/auth0/lock/pull/902) ([FilipPyrek](https://github.com/FilipPyrek))
329
330
331## [v10.12.2](https://github.com/auth0/lock/tree/v10.12.2) (2017-03-03)
332[Full Changelog](https://github.com/auth0/lock/compare/v10.12.1...v10.12.2)
333
334
335**Fixed**
336- Specify owp for non oidc web api in popup mode [\#897](https://github.com/auth0/lock/pull/897) ([hzalaz](https://github.com/hzalaz))
337
338
339## [v10.12.1](https://github.com/auth0/lock/tree/v10.12.1) (2017-03-03)
340[Full Changelog](https://github.com/auth0/lock/compare/v10.12.0...v10.12.1)
341
342
343**Fixed**
344- Fixed npm transpiled code [\#893](https://github.com/auth0/lock/pull/893) ([hzalaz](https://github.com/hzalaz))
345
346
347## [v10.12.0](https://github.com/auth0/lock/tree/v10.12.0) (2017-03-02)
348[Full Changelog](https://github.com/auth0/lock/compare/v10.11.0...v10.12.0)
349
350**Closed issues**
351- Bug in email field validation [\#884](https://github.com/auth0/lock/issues/884)
352- Input field tab issue in IE [\#870](https://github.com/auth0/lock/issues/870)
353- Bring back the integratedWindowsLogin option [\#852](https://github.com/auth0/lock/issues/852)
354- Unwanted parameters in /authorize call [\#851](https://github.com/auth0/lock/issues/851)
355- Back button not displaying properly in IE 11 [\#767](https://github.com/auth0/lock/issues/767)
356
357**Added**
358- Added checkbox CustomInput for additionalSignUpFields [\#860](https://github.com/auth0/lock/pull/860) ([dariobanfi](https://github.com/dariobanfi))
359- Add slovak translation [\#846](https://github.com/auth0/lock/pull/846) ([Passto](https://github.com/Passto))
360
361**Changed**
362- Update password sheriff to reduce bundle size [\#879](https://github.com/auth0/lock/pull/879) ([hzalaz](https://github.com/hzalaz))
363- Adding focusable=false to all svgs [\#873](https://github.com/auth0/lock/pull/873) ([luisrudge](https://github.com/luisrudge))
364- Migrating to webpack2 [\#871](https://github.com/auth0/lock/pull/871) ([luisrudge](https://github.com/luisrudge))
365- Review catalan translations [\#869](https://github.com/auth0/lock/pull/869) ([oscarfonts](https://github.com/oscarfonts))
366- Reducing time to unpin loading pane [\#853](https://github.com/auth0/lock/pull/853) ([luisrudge](https://github.com/luisrudge))
367- Throw an error if login, signUp and forgotPassword screens are not allowed [\#850](https://github.com/auth0/lock/pull/850) ([luisrudge](https://github.com/luisrudge))
368- Kerberos network checking no longer depends on rememberLastLogin [\#805](https://github.com/auth0/lock/pull/805) ([patrickmcgraw](https://github.com/patrickmcgraw))
369
370**Fixed**
371- Updated auth0.js to v8.3.0 [\#889](https://github.com/auth0/lock/pull/889) ([hzalaz](https://github.com/hzalaz))
372- Fix issue when submiting a form with no email [\#886](https://github.com/auth0/lock/pull/886) ([selaux](https://github.com/selaux))
373- Fixing allowSignup and allowForgot options when loading tenant info [\#877](https://github.com/auth0/lock/pull/877) ([luisrudge](https://github.com/luisrudge))
374- Don't disable mfa-code input [\#872](https://github.com/auth0/lock/pull/872) ([nikolaseu](https://github.com/nikolaseu))
375- Fix a box-sizing issue that happened when bootstrap was being used with lock [\#868](https://github.com/auth0/lock/pull/868) ([luisrudge](https://github.com/luisrudge))
376- Cleaning params sent to auth0js [\#863](https://github.com/auth0/lock/pull/863) ([luisrudge](https://github.com/luisrudge))
377- Only set prefill values when client is initialized [\#855](https://github.com/auth0/lock/pull/855) ([luisrudge](https://github.com/luisrudge))
378
379
380## [v10.11.0](https://github.com/auth0/lock/tree/v10.11.0) (2017-01-30)
381[Full Changelog](https://github.com/auth0/lock/compare/v10.10.2...v10.11.0)
382
383**Closed issues**
384- Input error state does not get reset when changing page [\#843](https://github.com/auth0/lock/issues/843)
385- Show error when the domain part of the email does not match any enterprise connection [\#661](https://github.com/auth0/lock/issues/661)
386
387**Added**
388- inject cordova plugin and force popup/sso in cordova or electron [\#835](https://github.com/auth0/lock/pull/835) ([glena](https://github.com/glena))
389- Japanese translation [\#834](https://github.com/auth0/lock/pull/834) ([stevensacks](https://github.com/stevensacks))
390- disable submit button when the email does not match with any connection [\#757](https://github.com/auth0/lock/pull/757) ([glena](https://github.com/glena))
391
392**Changed**
393- Clear invalid fields on screen change [\#844](https://github.com/auth0/lock/pull/844) ([glena](https://github.com/glena))
394- Bump the babel-preset-2015 version [\#838](https://github.com/auth0/lock/pull/838) ([iamkevingreen](https://github.com/iamkevingreen))
395
396
397## [v10.10.2](https://github.com/auth0/lock/tree/v10.10.2) (2017-01-23)
398[Full Changelog](https://github.com/auth0/lock/compare/v10.10.1...v10.10.2)
399
400
401**Fixed**
402- Fix casing of null in IE (bumping auth0.js version) [\#827](https://github.com/auth0/lock/pull/827) ([glena](https://github.com/glena))
403- Fix ES translations [\#826](https://github.com/auth0/lock/pull/826) ([perpifran](https://github.com/perpifran))
404- Translated term mfaLoginTitle into Dutch [\#820](https://github.com/auth0/lock/pull/820) ([dctoon](https://github.com/dctoon))
405- For autologin, if login screen is not available, it should show the error in the signup one instead of breaking [\#817](https://github.com/auth0/lock/pull/817) ([glena](https://github.com/glena))
406
407
408## [v10.10.1](https://github.com/auth0/lock/tree/v10.10.1) (2017-01-19)
409[Full Changelog](https://github.com/auth0/lock/compare/v10.10.0...v10.10.1)
410
411
412**Changed**
413- Bump auth0.js to 8.1.2 [\#821](https://github.com/auth0/lock/pull/821) ([glena](https://github.com/glena))
414
415
416## [v10.10.0](https://github.com/auth0/lock/tree/v10.10.0) (2017-01-17)
417[Full Changelog](https://github.com/auth0/lock/compare/v10.9.2...v10.10.0)
418
419**Closed issues**
420- Lock v10.9.2 fails on IE 10 Windows 7 [\#801](https://github.com/auth0/lock/issues/801)
421
422**Added**
423- Add resumeAuth method and autoParseHash flag [\#790](https://github.com/auth0/lock/pull/790) ([luisrudge](https://github.com/luisrudge))
424- Hide first screen title option [\#745](https://github.com/auth0/lock/pull/745) ([glena](https://github.com/glena))
425
426**Changed**
427- Update zh.js [\#774](https://github.com/auth0/lock/pull/774) ([leplay](https://github.com/leplay))
428
429**Fixed**
430- Fix: popup does not close when signup fails [\#810](https://github.com/auth0/lock/pull/810) ([glena](https://github.com/glena))
431- removes scope openid warning in OIDC conformant mode. fix #780 [\#803](https://github.com/auth0/lock/pull/803) ([luisrudge](https://github.com/luisrudge))
432- Clearing fields when lock closes [\#802](https://github.com/auth0/lock/pull/802) ([luisrudge](https://github.com/luisrudge))
433- Fix redirect/popup login when shown in the hosted login page [\#799](https://github.com/auth0/lock/pull/799) ([glena](https://github.com/glena))
434
435**Breaking changes**
436- Bump auth0.js version - Fix profile casing (it should not convert to cammelcase) [\#815](https://github.com/auth0/lock/pull/815) ([glena](https://github.com/glena))
437
438In lock v10.9 we introduced an issue in auth0.js that changed the casing of the calls to retrieve the user profile (using `/userinfo` or `/tokeninfo`), everything was converted to camel case. We fixed that issue in this [auth0.js pull request](https://github.com/auth0/auth0.js/pull/307) and is part of this release of Lock. If you kept an v10.8 or older no changes are needed, for those who updated to v10.9 you need to revert the changes made to handle the case changes.
439
440## [v10.9.2](https://github.com/auth0/lock/tree/v10.9.2) (2017-01-11)
441[Full Changelog](https://github.com/auth0/lock/compare/v10.9.1...v10.9.2)
442
443**Fixed**
444- Bring back support for get profile in default mode [\#794](https://github.com/auth0/lock/pull/794) ([glena](https://github.com/glena))
445- Don't emit error when registering for event 'signin ready' [\#784](https://github.com/auth0/lock/pull/784) ([theopak](https://github.com/theopak))
446
447
448## [v10.9.1](https://github.com/auth0/lock/tree/v10.9.1) (2017-01-10)
449[Full Changelog](https://github.com/auth0/lock/compare/v10.9.0...v10.9.1)
450
451**Fixed**
452- Fix to comply legacy behaviour [\#787](https://github.com/auth0/lock/pull/787) ([glena](https://github.com/glena))
453- For legacy flow, the scope should default to openid [\#783](https://github.com/auth0/lock/pull/783) ([glena](https://github.com/glena))
454
455
456## [v10.9.0](https://github.com/auth0/lock/tree/v10.9.0) (2017-01-09)
457[Full Changelog](https://github.com/auth0/lock/compare/v10.8.0-beta.5...v10.9.0)
458
459**Added**
460- Migrate to auth0.js v8 [\#744](https://github.com/auth0/lock/pull/744) ([glena](https://github.com/glena))
461
462**Changed**
463- Removed browserify as dependency and removed process usage [\#779](https://github.com/auth0/lock/pull/779) ([glena](https://github.com/glena))
464- Auth0js v8 - configuration validation + default scope [\#775](https://github.com/auth0/lock/pull/775) ([glena](https://github.com/glena))
465
466
467## [v10.8.1](https://github.com/auth0/lock/tree/v10.8.1) (2017-01-03)
468[Full Changelog](https://github.com/auth0/lock/compare/v10.8.0...v10.8.1)
469
470**Closed issues**
471- username/password login doesn't work with custom domains on the appliance [\#772](https://github.com/auth0/lock/issues/772)
472
473**Fixed**
474- allow to override tenant + issuer and pass to auth0.js [\#773](https://github.com/auth0/lock/pull/773) ([glena](https://github.com/glena))
475
476
477## [v10.8.0](https://github.com/auth0/lock/tree/v10.8.0) (2017-01-02)
478[Full Changelog](https://github.com/auth0/lock/compare/v10.7.3...v10.8.0)
479
480**Closed issues**
481- Request to add user-facing error message. [\#751](https://github.com/auth0/lock/issues/751)
482- Please throw an error for invalid events [\#748](https://github.com/auth0/lock/issues/748)
483- Old errors shown when reopening Lock [\#739](https://github.com/auth0/lock/issues/739)
484- Send login_hint when detecting previous session [\#729](https://github.com/auth0/lock/issues/729)
485- `defaultADUsernameFromEmailPrefix` is not implemented [\#713](https://github.com/auth0/lock/issues/713)
486- [v10] Enterprise connections don't strip domain from email [\#543](https://github.com/auth0/lock/issues/543)
487
488**Added**
489- Allow to override socialButtonStyle on show [\#766](https://github.com/auth0/lock/pull/766) ([glena](https://github.com/glena))
490- Added new error code: session_missing [\#760](https://github.com/auth0/lock/pull/760) ([glena](https://github.com/glena))
491- Add events validation and fail if it is not a valid one [\#756](https://github.com/auth0/lock/pull/756) ([glena](https://github.com/glena))
492- Added flag defaultADUsernameFromEmailPrefix [\#754](https://github.com/auth0/lock/pull/754) ([glena](https://github.com/glena))
493- Send login_hint when detecting previous session [\#753](https://github.com/auth0/lock/pull/753) ([glena](https://github.com/glena))
494- Create fa.js [\#752](https://github.com/auth0/lock/pull/752) ([doroudi](https://github.com/doroudi))
495
496**Changed**
497- Hide errors after close lock [\#761](https://github.com/auth0/lock/pull/761) ([glena](https://github.com/glena))
498
499**Fixed**
500- removed whitespace from input name [\#764](https://github.com/auth0/lock/pull/764) ([dangler](https://github.com/dangler))
501- fixed typo [\#762](https://github.com/auth0/lock/pull/762) ([dev101](https://github.com/dev101))
502
503
504## [v10.7.3](https://github.com/auth0/lock/tree/v10.7.3) (2016-12-19)
505[Full Changelog](https://github.com/auth0/lock/compare/v10.7.2...v10.7.3)
506
507**Fixed**
508- Shorten Russian signUpLabel to fit into the widget width [\#743](https://github.com/auth0/lock/pull/743) ([cyxou](https://github.com/cyxou))
509
510## [v10.7.2](https://github.com/auth0/lock/tree/v10.7.2) (2016-12-01)
511[Full Changelog](https://github.com/auth0/lock/compare/v10.7.1...v10.7.2)
512
513**Fixed**
514- Fix how the tenant and client info url is build to avoid format issues [\#740](https://github.com/auth0/lock/pull/740) ([glena](https://github.com/glena))
515- Fix: Single saml connection with no domain shows undefined in button [\#738](https://github.com/auth0/lock/pull/738) ([glena](https://github.com/glena))
516
517## [v10.7.1](https://github.com/auth0/lock/tree/v10.7.1) (2016-11-25)
518[Full Changelog](https://github.com/auth0/lock/compare/v10.7.0...v10.7.1)
519
520**Fixed**
521- fix options override on show [\#732](https://github.com/auth0/lock/pull/732) ([glena](https://github.com/glena))
522- One questionmark is enough [\#731](https://github.com/auth0/lock/pull/731) ([retorquere](https://github.com/retorquere))
523
524## [v10.7.0](https://github.com/auth0/lock/tree/v10.7.0) (2016-11-22)
525[Full Changelog](https://github.com/auth0/lock/compare/v10.6.1...v10.7.0)
526
527**Added**
528- Add missing Norwegian translations [\#721](https://github.com/auth0/lock/pull/721) ([francisrath](https://github.com/francisrath))
529
530**Changed**
531- Update auth0.js to v7.5.0 [\#730](https://github.com/auth0/lock/pull/730) ([hzalaz](https://github.com/hzalaz))
532- "Email" type for email input [\#724](https://github.com/auth0/lock/pull/724) ([glena](https://github.com/glena))
533- Enterprise: force username for AD connections [\#714](https://github.com/auth0/lock/pull/714) ([glena](https://github.com/glena))
534
535**Deprecated**
536- Deprecated getProfile and added getUserInfo instead [\#726](https://github.com/auth0/lock/pull/726) ([glena](https://github.com/glena))
537
538## [v10.6.1](https://github.com/auth0/lock/tree/v10.6.1) (2016-11-09)
539[Full Changelog](https://github.com/auth0/lock/compare/v10.6.0...v10.6.1)
540
541**Fixed**
542- Removed UMD bundling and using browser only [\#709](https://github.com/auth0/lock/pull/709) ([glena](https://github.com/glena))
543
544## [v10.6.0](https://github.com/auth0/lock/tree/v10.6.0) (2016-11-07)
545[Full Changelog](https://github.com/auth0/lock/compare/v10.5.1...v10.6.0)
546
547**Changed**
548- Update auth0.js to 7.4.0 [\#705](https://github.com/auth0/lock/pull/705) ([hzalaz](https://github.com/hzalaz))
549- allow to override language, dict, logo and primary color on show method [\#680](https://github.com/auth0/lock/pull/680) ([glena](https://github.com/glena))
550- Webpack for bundling [\#663](https://github.com/auth0/lock/pull/663) ([glena](https://github.com/glena))
551
552**Fixed**
553- Disable passwordless connections for SSO [\#691](https://github.com/auth0/lock/pull/691) ([glena](https://github.com/glena))
554
555## [v10.5.1](https://github.com/auth0/lock/tree/v10.5.1) (2016-10-28)
556[Full Changelog](https://github.com/auth0/lock/compare/v10.5.0...v10.5.1)
557
558**Closed issues**
559- [Lock 10.5.0] Prefill fails when using username [\#685](https://github.com/auth0/lock/issues/685)
560- [Lock 10.5.0] "TypeError: next is not a function" when closing social connection popup [\#682](https://github.com/auth0/lock/issues/682)
561
562**Fixed**
563- Disabled username verification for prefill [\#686](https://github.com/auth0/lock/pull/686) ([glena](https://github.com/glena))
564- 'TypeError: next is not a function' when closing social connection popup [\#684](https://github.com/auth0/lock/pull/684) ([glena](https://github.com/glena))
565- Fix focus visual feedback in email and username inputs [\#681](https://github.com/auth0/lock/pull/681) ([gnandretta](https://github.com/gnandretta))
566
567## [v10.5.0](https://github.com/auth0/lock/tree/v10.5.0) (2016-10-24)
568[Full Changelog](https://github.com/auth0/lock/compare/v10.4.1...v10.5.0)
569
570**Closed issues**
571- [v10.4.0] Cannot read property 'get' of undefined. [\#658](https://github.com/auth0/lock/issues/658)
572- Lock not showing rule errors in redirect mode [\#637](https://github.com/auth0/lock/issues/637)
573- Single AD connection without domain shows undefined in message [\#627](https://github.com/auth0/lock/issues/627)
574- Issues with Overlay mode + signUpLink setting on a SPA [\#619](https://github.com/auth0/lock/issues/619)
575- [UX] Password field shouldn't show error message immediately (on focus). [\#540](https://github.com/auth0/lock/issues/540)
576
577**Added**
578- Create vi.js in /src/i18n [\#662](https://github.com/auth0/lock/pull/662) ([IoHL](https://github.com/IoHL))
579- Added support for custom oauth2 connections [\#648](https://github.com/auth0/lock/pull/648) ([glena](https://github.com/glena))
580- Create ca.js [\#645](https://github.com/auth0/lock/pull/645) ([alexandresaiz](https://github.com/alexandresaiz))
581- Support connectionScopes for oauth2 connections [\#643](https://github.com/auth0/lock/pull/643) ([glena](https://github.com/glena))
582- Allow to display a flash message on lock.show [\#639](https://github.com/auth0/lock/pull/639) ([glena](https://github.com/glena))
583- MFA when using oauth/ro endpoint [\#628](https://github.com/auth0/lock/pull/628) ([dafortune](https://github.com/dafortune))
584
585**Changed**
586- Password field shouldn't show error message immediately (on focus) [\#668](https://github.com/auth0/lock/pull/668) ([glena](https://github.com/glena))
587- Update auth0.js to latest [\#665](https://github.com/auth0/lock/pull/665) ([hzalaz](https://github.com/hzalaz))
588- Added default values to the dictionary and warn about missing keys [\#651](https://github.com/auth0/lock/pull/651) ([glena](https://github.com/glena))
589- Fix Issues with Overlay mode + signUpLink setting on a SPA [\#650](https://github.com/auth0/lock/pull/650) ([glena](https://github.com/glena))
590- Only require non-empty value for username when DB connection is custom or import is enabled [\#646](https://github.com/auth0/lock/pull/646) ([glena](https://github.com/glena))
591- Update uglify task to generate sourcemaps [\#638](https://github.com/auth0/lock/pull/638) ([cristiandouce](https://github.com/cristiandouce))
592
593**Fixed**
594- Fix [v10.4.0] Cannot read property 'get' of undefined. #658 [\#660](https://github.com/auth0/lock/pull/660) ([glena](https://github.com/glena))
595- Changed   to regular spaces. [\#653](https://github.com/auth0/lock/pull/653) ([nicosabena](https://github.com/nicosabena))
596- Single AD connection without domain shows undefined in message [\#642](https://github.com/auth0/lock/pull/642) ([glena](https://github.com/glena))
597- show properly terms on desktop and mobile [\#641](https://github.com/auth0/lock/pull/641) ([beneliflo](https://github.com/beneliflo))
598- Fix typo in the word "corporate" [\#632](https://github.com/auth0/lock/pull/632) ([wags](https://github.com/wags))
599- Change the term email to e-mail and emailadres to e-mailadres [\#629](https://github.com/auth0/lock/pull/629) ([ToonDC](https://github.com/ToonDC))
600
601## [v10.4.1](https://github.com/auth0/lock/tree/v10.4.0) (2016-10-21)
602[Full Changelog](https://github.com/auth0/lock/compare/v10.4.0...v10.4.1)
603
604**Changed**
605- Update auth0.js to v7.3.0
606
607## [v10.4.0](https://github.com/auth0/lock/tree/v10.4.0) (2016-09-27)
608[Full Changelog](https://github.com/auth0/lock/compare/v10.3.0...v10.4.0)
609
610**Closed issues**
611- theme.logo regression in 10.3.0 [\#617](https://github.com/auth0/lock/issues/617)
612
613**Changed**
614- Update auth0.js version to v7.2.1 [\#621](https://github.com/auth0/lock/pull/621) ([hzalaz](https://github.com/hzalaz))
615
616**Fixed**
617- Fix bad reference for unrecoverable_error event emitter [\#625](https://github.com/auth0/lock/pull/625) ([cristiandouce](https://github.com/cristiandouce))
618- Fixes for 10.3.0 regression [\#618](https://github.com/auth0/lock/pull/618) ([doapp-ryanp](https://github.com/doapp-ryanp))
619
620## [v10.3.0](https://github.com/auth0/lock/tree/v10.3.0) (2016-09-19)
621[Full Changelog](https://github.com/auth0/lock/compare/v10.2.2...v10.3.0)
622
623**Closed issues:**
624- v10: KerberosScreen failing on internal Network [\#590](https://github.com/auth0/lock/issues/590)
625- Languages not available on cdn.eu.auth0.com [\#576](https://github.com/auth0/lock/issues/576)
626- The lock v10 with ionic2 page can not scroll. [\#532](https://github.com/auth0/lock/issues/532)
627- Signup terms checkbox overlays password field on small devices. [\#525](https://github.com/auth0/lock/issues/525)
628- Lock + Meteor breaks when trying to require & use blueimp-md5 [\#466](https://github.com/auth0/lock/issues/466)
629- White space on bottom when running/simulating on mobile device [\#376](https://github.com/auth0/lock/issues/376)
630
631**Fixed:**
632- Bump blueimp-md5@2.3.1 [\#613](https://github.com/auth0/lock/pull/613) ([cristiandouce](https://github.com/cristiandouce))
633- Handle uncaught unrecoverable_error [\#609](https://github.com/auth0/lock/pull/609) ([eddiezane](https://github.com/eddiezane))
634- fixed loading unaligned with label submit [\#606](https://github.com/auth0/lock/pull/606) ([beneliflo](https://github.com/beneliflo))
635- Fix EscKeyDownHandler bug in Container when `closable` is false [\#604](https://github.com/auth0/lock/pull/604) ([kevinzwh](https://github.com/kevinzwh))
636- Fix checkbox terms [\#597](https://github.com/auth0/lock/pull/597) ([beneliflo](https://github.com/beneliflo))
637- Fixes corporate network connection usage [\#594](https://github.com/auth0/lock/pull/594) ([CriGoT](https://github.com/CriGoT))
638- fixed ionic page scroll [\#591](https://github.com/auth0/lock/pull/591) ([beneliflo](https://github.com/beneliflo))
639
640**Added:**
641- Add min/max username validation from client info settings [\#611](https://github.com/auth0/lock/pull/611) ([cristiandouce](https://github.com/cristiandouce))
642- Introduce clientBaseUrl and languageBaseUrl options to deprecate assetsUrl [\#601](https://github.com/auth0/lock/pull/601) ([cristiandouce](https://github.com/cristiandouce))
643- Added Hungarian translations [\#599](https://github.com/auth0/lock/pull/599) ([nagyv](https://github.com/nagyv))
644- Add french translation [\#596](https://github.com/auth0/lock/pull/596) ([RomainFallet](https://github.com/RomainFallet))
645- Added Swedish (sv) translation. [\#593](https://github.com/auth0/lock/pull/593) ([kuljaninemir](https://github.com/kuljaninemir))
646
647**Changed:**
648- use ReactCSSTransitionGroup for global messages [\#595](https://github.com/auth0/lock/pull/595) ([robbiewxyz](https://github.com/robbiewxyz))
649
650**Deprecation notice:**
651
652This version introduces `languageBaseUrl` and `clientBaseUrl` in replacement of `assetsUrl`.
653
654- 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`.
655- 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}/`).
656- The new options have priority over `assetsUrl`.
657- If `assetsUrl` is provided, keep the current behavior: fetch client from `${assetsUrl}/client/${clientID}.js` and languages from `{assetsUrl}/js/lock/${lockVersion}/${language}.js`.
658
659## [v10.2.3](https://github.com/auth0/lock/tree/v10.2.3) (2016-10-21)
660[Full Changelog](https://github.com/auth0/lock/compare/v10.2.2...v10.2.3)
661
662### Changed
663
664- Use auth0.js version 7.3.0
665
666## [v10.2.2](https://github.com/auth0/lock/tree/v10.2.2) (2016-08-31)
667[Full Changelog](https://github.com/auth0/lock/compare/v10.2.1...v10.2.2)
668
669### Fixed
670
671- Decode window.location.href before parsing hash (#583)
672
673### Changed
674
675- Change the default value for hash in WebApi.parseHash() internal method (#587)
676
677## [v10.2.1](https://github.com/auth0/lock/tree/v10.2.1) (2016-08-18)
678[Full Changelog](https://github.com/auth0/lock/compare/v10.2.0...v10.2.1)
679
680### Fixed
681
682- Allow dots in HRD username and clear errors before leaving the HRD screen (#574)
683
684## [v10.2.0](https://github.com/auth0/lock/tree/v10.2.0) (2016-08-18)
685[Full Changelog](https://github.com/auth0/lock/compare/v10.1.0...v10.2.0)
686
687### Changed
688
689- Show a label in the submit button by default (#524)
690- Show the Auth0 badge only in modal mode and on the bottom left of the overlay (#552)
691- Replace the log in / sign up segmented control for tabs (#553)
692
693### Fixed
694
695- German translation corrections (#549)
696
697### Added
698
699- Add `responseMode: "form_post"` option (#526)
700- Add the `hash_parsed` event (#535)
701- Add `zh` translation (#548)
702- Allow to override some options in the `show` method (#550)
703- Add `nb` translation (#560)
704
705## [v10.1.0](https://github.com/auth0/lock/tree/v10.1.0) (2016-08-09)
706[Full Changelog](https://github.com/auth0/lock/compare/v10.0.2...v10.1.0)
707
708### Added
709
710- Add `de` translation (#546)
711
712## [v10.0.2](https://github.com/auth0/lock/tree/v10.0.2) (2016-08-05)
713[Full Changelog](https://github.com/auth0/lock/compare/v10.0.1...v10.0.2)
714
715### Fixed
716
717- Fix header in Edge (#528)
718- Allow to reuse a given container id (#533)
719- Stop showing last login screen when the initial screen is not login (#534)
720- Fix email input in IE 10 (#537)
721
722## [v10.0.1](https://github.com/auth0/lock/tree/v10.0.1) (2016-07-27)
723[Full Changelog](https://github.com/auth0/lock/compare/v10.0.0...v10.0.1)
724
725### Fixed
726
727- Stopped dropping keys on email input in IE (#505)
728- Protect against svgs background colors set by other stylesheets (#506)
729- Ensure header styling looks fine in IE (#507)
730
731## [v10.0.0](https://github.com/auth0/lock/tree/v10.0.0) (2016-07-20)
732[Full Changelog](https://github.com/auth0/lock/compare/v10.0.0-rc.2...v10.0.0)
733
734### Changed
735
736- The `parseHash` method was removed given that now it is
737 automatically handled by Lock.
738
739### Fixed
740
741- Stopped hiding errors that are raised from event listeners.
742
743### Added
744
745- Handle the new variants of password policy errors during sign up.
746
747## [v10.0.0-rc.2](https://github.com/auth0/lock/tree/v10.0.0-rc.2) (2016-07-05)
748[Full Changelog](https://github.com/auth0/lock/compare/v10.0.0-rc.1...v10.0.0-rc.2)
749
750### Fixed
751
752- Fixed issue with the blueimp library when bundling with webpack.
753- Stopped fetching SSO data when SSO is disabled.
754- The location hash is no longer cleared every time Lock is
755 initialized.
756
757### Added
758
759- The validator function for additional sign up fields now allows to
760 specify a hint that will be displayed when the field is invalid.
761
762## [v10.0.0-rc.1](https://github.com/auth0/lock/tree/v10.0.0-rc.1) (2016-06-22)
763[Full Changelog](https://github.com/auth0/lock/compare/v10.0.0-beta.5...v10.0.0-rc.1)d
764
765### Change
766
767- Show Auth0 badge in the bottom only for free plans.
768
769## [v10.0.0-beta.5](https://github.com/auth0/lock/tree/v10.0.0-beta.5) (2016-06-21)
770[Full Changelog](https://github.com/auth0/lock/compare/v10.0.0-beta.4...v10.0.0-beta.5)
771
772### Fixed
773
774- Fixed bug that prevented custom sign up fields from being
775 validated.
776
777### Changed
778
779- Upgraded to React v15.
780- Upgraded auth0.js to v7.0.3.
781
782### Added
783
784- Added the `language` option. Translations for `it`, `pt-br`, `ru`
785 and `es` are provided out of the box. Thanks @yvonnewilson, @dirceu,
786 @lilapustovoyt and @darkyen!
787- Lock now will emit the following events.
788 - `show`: emitted when Lock is shown. Has no arguments.
789 - `hide`: emitted when Lock is hidden. Has no arguments.
790 - `unrecoverable_error`: emitted when there is an unrecoverable
791 error, for instance when no connection is available. Has the error
792 as the only argument.
793 - `authenticated`: emitted after a successful authentication. Has
794 the authentication result as the only argument.
795 - `authorization_error`: emitted when authorization fails. Has the
796 error as the only argument.
797 Note the `authenticated` and `authorization_error` events replace
798 the callback in the constructor.
799- Display a tooltip on invalid inputs with a hint on how to fix the
800 error.
801
802## [v10.0.0-beta.4](https://github.com/auth0/lock/tree/v10.0.0-beta.4) (2016-05-17)
803[Full Changelog](https://github.com/auth0/lock/compare/v10.0.0-beta.3...v10.0.0-beta.4)
804
805### Fixed
806
807- A proper error message is shown when no connection is available.
808
809### Changed
810
811- Removed JSONP support.
812
813### Added
814
815- Support for the new Bitbucket and Dropbox social connections.
816- Additional sign up fields can now be prefilled and have a `select`
817 type, which allows the user to choose the value from a predefined
818 list of options.
819
820## [v10.0.0-beta.3](https://github.com/auth0/lock/tree/v10.0.0-beta.3) (2016-05-10)
821[Full Changelog](https://github.com/auth0/lock/compare/v10.0.0-beta.2...v10.0.0-beta.3)
822
823### Fixed
824
825- Allow to translate password strength messages.
826
827### Changed
828
829- Don't fetch profile automatically after a successful login.
830- Display just an email input in the forgot password screen. Before,
831 an username input was displayed when the connection required an
832 username.
833
834## [v10.0.0-beta.2](https://github.com/auth0/lock/tree/v10.0.0-beta.2) (2016-04-25)
835[Full Changelog](https://github.com/auth0/lock/compare/v10.0.0-beta.1...v10.0.0-beta.2)
836
837### Fixed
838
839- Fetch bigger gravatars, so they look better on high-density screens.
840- Don't fetch SSO data when SSO is disabled.
841- Bunch of small UI issues.
842- NPM package require. Now `require('auth0-lock')` will work (previously you had to do `require('auth0-lock/lib/classic')`).
843
844### Changed
845
846- Renamed `close` method to `hide`.
847- Renamed `connections` option to `allowedConnections`.
848- Renamed `signUp.footerText` dict key to `signUp.terms`.
849
850### Added
851
852- Support for enterprise connections.
853- Allow to specify the the default datbase connection via the
854 `defaultDatabaseConnection` option.
855- Optionally request users to agree to terms and conditions before
856 signing up via the `mustAcceptTerms` option.
857
858## [v10.0.0-beta.1](https://github.com/auth0/lock/tree/v10.0.0-beta.1) (2016-03-23)
859
860First preview release, see [https://auth0.com/docs/libraries/lock/v10](https://auth0.com/docs/libraries/lock/v10) for details.