auth0-lock 11.30.5 → 11.32.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.circleci/config.yml +11 -7
- package/.eslintrc.json +9 -2
- package/.prettierignore +1 -0
- package/.prettierrc.yaml +5 -0
- package/.shiprc +2 -1
- package/CHANGELOG.md +389 -210
- package/README.md +162 -140
- package/karma.conf.js +4 -10
- package/lib/__tests__/connection/database/login_pane.js +93 -0
- package/lib/__tests__/connection/database/reset_password.js +82 -4
- package/lib/__tests__/connection/enterprise/actions.js +25 -2
- package/lib/__tests__/engine/classic/login.js +0 -2
- package/lib/__tests__/engine/classic/sign_up_pane.js +67 -2
- package/lib/__tests__/testUtils.js +17 -1
- package/lib/__tests__/ui/box/chrome.js +18 -2
- package/lib/__tests__/ui/input/password_input.js +4 -1
- package/lib/browser.js +12 -10
- package/lib/connection/captcha.js +94 -0
- package/lib/connection/database/actions.js +11 -69
- package/lib/connection/database/login_pane.js +11 -2
- package/lib/connection/database/reset_password.js +15 -0
- package/lib/connection/enterprise/actions.js +10 -0
- package/lib/core/index.js +5 -1
- package/lib/core/web_api/helper.js +1 -1
- package/lib/core.js +1 -1
- package/lib/engine/classic/login.js +2 -2
- package/lib/engine/classic/sign_up_pane.js +8 -3
- package/lib/field/captcha/captcha_pane.js +0 -4
- package/lib/i18n.js +7 -5
- package/lib/lock.js +1 -1
- package/lib/passwordless.js +1 -1
- package/lib/ui/box/chrome.js +20 -5
- package/lib/ui/box/container.js +2 -2
- package/lib/ui/box/header.js +5 -0
- package/lib/ui/input/password_input.js +1 -0
- package/lib/utils/cdn_utils.js +1 -1
- package/package.json +20 -23
- package/local.log +0 -8
- package/yarn-error.log +0 -11514
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,43 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [v11.32.0](https://github.com/auth0/lock/tree/v11.32.0) (2022-01-07)
|
|
4
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.31.1...v11.32.0)
|
|
5
|
+
|
|
6
|
+
**Fixed**
|
|
7
|
+
- [SDK-2970] Remove captcha for enterprise SSO connections [\#2071](https://github.com/auth0/lock/pull/2071) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
8
|
+
- Add ID attributes to password field + submit button [\#2072](https://github.com/auth0/lock/pull/2072) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
9
|
+
|
|
10
|
+
## [v11.31.1](https://github.com/auth0/lock/tree/v11.31.1) (2021-11-02)
|
|
11
|
+
|
|
12
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.31.0...v11.31.1)
|
|
13
|
+
|
|
14
|
+
**Fixed**
|
|
15
|
+
|
|
16
|
+
- Guard references to window on module load [\#2057](https://github.com/auth0/lock/pull/2057) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
17
|
+
- Ensure Captcha is completed before authenticating with enterprise SSO connection [\#2060](https://github.com/auth0/lock/pull/2060) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
18
|
+
|
|
19
|
+
## [v11.31.0](https://github.com/auth0/lock/tree/v11.31.0) (2021-10-15)
|
|
20
|
+
|
|
21
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.30.6...v11.31.0)
|
|
22
|
+
|
|
23
|
+
**Added**
|
|
24
|
+
|
|
25
|
+
- [SDK-2295] Add forceAutoHeight property to UI config [\#2050](https://github.com/auth0/lock/pull/2050) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
26
|
+
|
|
27
|
+
**Fixed**
|
|
28
|
+
|
|
29
|
+
- [SDK-2823] Fix password reset when using custom connection resolver [\#2048](https://github.com/auth0/lock/pull/2048) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
30
|
+
|
|
31
|
+
## [v11.30.6](https://github.com/auth0/lock/tree/v11.30.6) (2021-09-27)
|
|
32
|
+
|
|
33
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.30.5...v11.30.6)
|
|
34
|
+
|
|
35
|
+
This release intends to fix the build for Bower users, whilst upgrading some development-time dependencies and build configuration.
|
|
36
|
+
|
|
37
|
+
Please see [the diff](https://github.com/auth0/lock/compare/v11.30.5...v11.30.6) for the full set of changes.
|
|
38
|
+
|
|
3
39
|
## [v11.30.5](https://github.com/auth0/lock/tree/v11.30.5) (2021-09-13)
|
|
40
|
+
|
|
4
41
|
[Full Changelog](https://github.com/auth0/lock/compare/v11.30.4...v11.30.5)
|
|
5
42
|
|
|
6
43
|
**Changed**
|
|
@@ -12,273 +49,295 @@
|
|
|
12
49
|
Inline `util.format` and replace usage of `global` for `window` [\#2030](https://github.com/auth0/lock/pull/2030) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
13
50
|
|
|
14
51
|
## [v11.30.4](https://github.com/auth0/lock/tree/v11.30.4) (2021-07-12)
|
|
15
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.30.3...v11.30.4)
|
|
16
52
|
|
|
53
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.30.3...v11.30.4)
|
|
17
54
|
|
|
18
55
|
**Fixed**
|
|
19
|
-
- Updated Dutch translations [\#2013](https://github.com/auth0/lock/pull/2013) ([erombouts](https://github.com/erombouts))
|
|
20
56
|
|
|
57
|
+
- Updated Dutch translations [\#2013](https://github.com/auth0/lock/pull/2013) ([erombouts](https://github.com/erombouts))
|
|
21
58
|
|
|
22
59
|
## [v11.30.3](https://github.com/auth0/lock/tree/v11.30.3) (2021-06-25)
|
|
23
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.30.2...v11.30.3)
|
|
24
60
|
|
|
61
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.30.2...v11.30.3)
|
|
25
62
|
|
|
26
63
|
**Fixed**
|
|
27
|
-
- Fix country dialing code dropdown [\#2009](https://github.com/auth0/lock/pull/2009) ([adamjmcgrath](https://github.com/adamjmcgrath))
|
|
28
64
|
|
|
65
|
+
- Fix country dialing code dropdown [\#2009](https://github.com/auth0/lock/pull/2009) ([adamjmcgrath](https://github.com/adamjmcgrath))
|
|
29
66
|
|
|
30
67
|
## [v11.30.2](https://github.com/auth0/lock/tree/v11.30.2) (2021-06-11)
|
|
31
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.30.1...v11.30.2)
|
|
32
68
|
|
|
69
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.30.1...v11.30.2)
|
|
33
70
|
|
|
34
71
|
**Changed**
|
|
35
|
-
- [ESD-13941] Implement a DOMPurify hook to enable target attributes on links [\#2006](https://github.com/auth0/lock/pull/2006) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
36
72
|
|
|
73
|
+
- [ESD-13941] Implement a DOMPurify hook to enable target attributes on links [\#2006](https://github.com/auth0/lock/pull/2006) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
37
74
|
|
|
38
75
|
## [v11.30.1](https://github.com/auth0/lock/tree/v11.30.1) (2021-06-04)
|
|
39
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.30.0...v11.30.1)
|
|
40
76
|
|
|
77
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.30.0...v11.30.1)
|
|
41
78
|
|
|
42
79
|
**Changed**
|
|
80
|
+
|
|
43
81
|
- Update fa.js [\#2000](https://github.com/auth0/lock/pull/2000) ([alirezagit](https://github.com/alirezagit))
|
|
44
82
|
|
|
45
83
|
**Fixed**
|
|
84
|
+
|
|
46
85
|
- [SDK-2588] Avoid multiple simultaneous HTTP calls [\#1998](https://github.com/auth0/lock/pull/1998) ([frederikprijck](https://github.com/frederikprijck))
|
|
47
86
|
|
|
48
87
|
**Security**
|
|
88
|
+
|
|
49
89
|
- Update auth0-js + node-fetch [\#1996](https://github.com/auth0/lock/pull/1996) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
50
90
|
- [SEC-687, SEC-700] For more information on this security release, please see [the release on GitHub](https://github.com/auth0/lock/releases/tag/v11.30.1).
|
|
51
91
|
|
|
52
|
-
|
|
53
92
|
## [v11.30.0](https://github.com/auth0/lock/tree/v11.30.0) (2021-04-26)
|
|
54
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.29.1...v11.30.0)
|
|
55
93
|
|
|
94
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.29.1...v11.30.0)
|
|
56
95
|
|
|
57
96
|
**Added**
|
|
97
|
+
|
|
58
98
|
- Recaptcha Enterprise support [\#1986](https://github.com/auth0/lock/pull/1986) ([akmjenkins](https://github.com/akmjenkins))
|
|
59
99
|
|
|
60
100
|
**Fixed**
|
|
61
|
-
- [ESD-12716]fix recaptcha on mobile when lang is not English [\#1988](https://github.com/auth0/lock/pull/1988) ([jfromaniello](https://github.com/jfromaniello))
|
|
62
101
|
|
|
102
|
+
- [ESD-12716]fix recaptcha on mobile when lang is not English [\#1988](https://github.com/auth0/lock/pull/1988) ([jfromaniello](https://github.com/jfromaniello))
|
|
63
103
|
|
|
64
104
|
## [v11.29.1](https://github.com/auth0/lock/tree/v11.29.1) (2021-04-14)
|
|
65
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.29.0...v11.29.1)
|
|
66
105
|
|
|
106
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.29.0...v11.29.1)
|
|
67
107
|
|
|
68
108
|
**Fixed**
|
|
69
|
-
- fix ESD-12716: move CSS display override to render function to fix recaptcha on sign-up [\#1983](https://github.com/auth0/lock/pull/1983) ([jfromaniello](https://github.com/jfromaniello))
|
|
70
109
|
|
|
110
|
+
- fix ESD-12716: move CSS display override to render function to fix recaptcha on sign-up [\#1983](https://github.com/auth0/lock/pull/1983) ([jfromaniello](https://github.com/jfromaniello))
|
|
71
111
|
|
|
72
112
|
## [v11.29.0](https://github.com/auth0/lock/tree/v11.29.0) (2021-04-06)
|
|
73
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.28.1...v11.29.0)
|
|
74
113
|
|
|
114
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.28.1...v11.29.0)
|
|
75
115
|
|
|
76
116
|
**Added**
|
|
117
|
+
|
|
77
118
|
- [SDK-2412] Add event for SSO data fetch [\#1977](https://github.com/auth0/lock/pull/1977) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
78
119
|
- [SDK-2306] Add login and signup hooks [\#1976](https://github.com/auth0/lock/pull/1976) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
79
120
|
|
|
80
121
|
**Fixed**
|
|
122
|
+
|
|
81
123
|
- [ESD-12716] fix issue with recaptcha in mobile [\#1978](https://github.com/auth0/lock/pull/1978) ([jfromaniello](https://github.com/jfromaniello))
|
|
82
124
|
- Fixes typo "assests" to "assets" [\#1975](https://github.com/auth0/lock/pull/1975) ([morkro](https://github.com/morkro))
|
|
83
125
|
- Remove line breaks from passwordless vcode entry instructions [\#1974](https://github.com/auth0/lock/pull/1974) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
84
126
|
- Remove padding from screen tabs [\#1971](https://github.com/auth0/lock/pull/1971) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
85
127
|
|
|
86
|
-
|
|
87
128
|
## [v11.28.1](https://github.com/auth0/lock/tree/v11.28.1) (2021-03-01)
|
|
88
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.28.0...v11.28.1)
|
|
89
129
|
|
|
130
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.28.0...v11.28.1)
|
|
90
131
|
|
|
91
132
|
**Fixed**
|
|
133
|
+
|
|
92
134
|
- Disable form submit manually for passwordless Safari [\#1968](https://github.com/auth0/lock/pull/1968) ([adamjmcgrath](https://github.com/adamjmcgrath))
|
|
93
135
|
|
|
94
136
|
**Security**
|
|
95
|
-
- Upgrade trim version to fix security issue [\#1960](https://github.com/auth0/lock/pull/1960) ([blankg](https://github.com/blankg))
|
|
96
137
|
|
|
138
|
+
- Upgrade trim version to fix security issue [\#1960](https://github.com/auth0/lock/pull/1960) ([blankg](https://github.com/blankg))
|
|
97
139
|
|
|
98
140
|
## [v11.28.0](https://github.com/auth0/lock/tree/v11.28.0) (2021-01-06)
|
|
141
|
+
|
|
99
142
|
[Full Changelog](https://github.com/auth0/lock/compare/v11.27.2...v11.28.0)
|
|
100
143
|
|
|
101
144
|
**Added**
|
|
145
|
+
|
|
102
146
|
- An option to hide username in signup view [\#1954](https://github.com/auth0/lock/pull/1954) ([saltukalakus](https://github.com/saltukalakus))
|
|
103
147
|
|
|
104
148
|
**Changed**
|
|
149
|
+
|
|
105
150
|
- Wording and spelling fixes to Bulgarian language file [\#1953](https://github.com/auth0/lock/pull/1953) ([maximnaidenov](https://github.com/maximnaidenov))
|
|
106
151
|
|
|
107
152
|
## [v11.27.2](https://github.com/auth0/lock/tree/v11.27.2) (2020-12-16)
|
|
108
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.27.1...v11.27.2)
|
|
109
153
|
|
|
154
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.27.1...v11.27.2)
|
|
110
155
|
|
|
111
156
|
**Changed**
|
|
157
|
+
|
|
112
158
|
- Update cs.js [\#1944](https://github.com/auth0/lock/pull/1944) ([HopXXII](https://github.com/HopXXII))
|
|
113
159
|
|
|
114
160
|
**Fixed**
|
|
161
|
+
|
|
115
162
|
- [ESD-10361] Fix password strength popup overflow issue [\#1949](https://github.com/auth0/lock/pull/1949) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
116
163
|
- [ESD-10373] Fix rendering of Lock inside popup on first open [\#1948](https://github.com/auth0/lock/pull/1948) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
117
164
|
|
|
118
|
-
|
|
119
165
|
## [v11.27.1](https://github.com/auth0/lock/tree/v11.27.1) (2020-10-26)
|
|
120
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.27.0...v11.27.1)
|
|
121
166
|
|
|
167
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.27.0...v11.27.1)
|
|
122
168
|
|
|
123
169
|
**Fixed**
|
|
170
|
+
|
|
124
171
|
- Remove top padding from wrapper element [\#1939](https://github.com/auth0/lock/pull/1939) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
125
172
|
- Remove javascript:void(0) from links that do not navigate [\#1938](https://github.com/auth0/lock/pull/1938) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
126
173
|
- Respect showTerms option for passwordless [\#1931](https://github.com/auth0/lock/pull/1931) ([saltukalakus](https://github.com/saltukalakus))
|
|
127
174
|
|
|
128
|
-
|
|
129
175
|
## [v11.27.0](https://github.com/auth0/lock/tree/v11.27.0) (2020-09-18)
|
|
130
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.26.3...v11.27.0)
|
|
131
176
|
|
|
177
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.26.3...v11.27.0)
|
|
132
178
|
|
|
133
179
|
**Changed**
|
|
180
|
+
|
|
134
181
|
- Better flash error messages on incorrect, empty fields. [\#1923](https://github.com/auth0/lock/pull/1923) ([saltukalakus](https://github.com/saltukalakus))
|
|
135
182
|
- [SDK-1946] Update Basecamp logo [\#1922](https://github.com/auth0/lock/pull/1922) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
136
183
|
|
|
137
184
|
**Fixed**
|
|
185
|
+
|
|
138
186
|
- [SDK-1911] Always use UsernamePane when using custom resolver [\#1918](https://github.com/auth0/lock/pull/1918) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
139
187
|
|
|
140
188
|
**Security**
|
|
189
|
+
|
|
141
190
|
- Dependencies [\#1924](https://github.com/auth0/lock/pull/1924) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
142
191
|
- Add license scan report and status [\#1920](https://github.com/auth0/lock/pull/1920) ([fossabot](https://github.com/fossabot))
|
|
143
192
|
|
|
144
|
-
|
|
145
193
|
## [v11.26.3](https://github.com/auth0/lock/tree/v11.26.3) (2020-08-14)
|
|
194
|
+
|
|
146
195
|
[Full Changelog](https://github.com/auth0/lock/compare/v11.26.2...v11.26.3)
|
|
147
196
|
|
|
148
197
|
**Security**
|
|
198
|
+
|
|
149
199
|
- [SEC-512] Replace usage of i18n.html with i18n.str in Passwordless verification code UI ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
150
200
|
|
|
151
201
|
## [v11.26.2](https://github.com/auth0/lock/tree/v11.26.2) (2020-08-12)
|
|
202
|
+
|
|
152
203
|
[Full Changelog](https://github.com/auth0/lock/compare/v11.26.1...v11.26.2)
|
|
153
204
|
|
|
154
205
|
**Fixed**
|
|
206
|
+
|
|
155
207
|
- Fallback to default language dictionary when the language file cannot be loaded [\#1912](https://github.com/auth0/lock/pull/1912) ([davidpatrick](https://github.com/davidpatrick))
|
|
156
208
|
- [SDK-1813] Send connection scope config to enterprise connections [\#1910](https://github.com/auth0/lock/pull/1910) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
157
209
|
|
|
158
210
|
**Security**
|
|
159
|
-
- [Security] Bump elliptic from 6.4.1 to 6.5.3 [\#1909](https://github.com/auth0/lock/pull/1909) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
160
211
|
|
|
212
|
+
- [Security] Bump elliptic from 6.4.1 to 6.5.3 [\#1909](https://github.com/auth0/lock/pull/1909) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
161
213
|
|
|
162
214
|
## [v11.26.1](https://github.com/auth0/lock/tree/v11.26.1) (2020-07-23)
|
|
163
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.26.0...v11.26.1)
|
|
164
215
|
|
|
216
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.26.0...v11.26.1)
|
|
165
217
|
|
|
166
218
|
**Fixed**
|
|
167
|
-
- fix issue #1906 - remove extension from import [\#1907](https://github.com/auth0/lock/pull/1907) ([jfromaniello](https://github.com/jfromaniello))
|
|
168
219
|
|
|
220
|
+
- fix issue #1906 - remove extension from import [\#1907](https://github.com/auth0/lock/pull/1907) ([jfromaniello](https://github.com/jfromaniello))
|
|
169
221
|
|
|
170
222
|
## [v11.26.0](https://github.com/auth0/lock/tree/v11.26.0) (2020-07-23)
|
|
171
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.25.1...v11.26.0)
|
|
172
223
|
|
|
224
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.25.1...v11.26.0)
|
|
173
225
|
|
|
174
226
|
**Added**
|
|
227
|
+
|
|
175
228
|
- [CAUTH-423] Add captcha in the sign-up flow [\#1902](https://github.com/auth0/lock/pull/1902) ([jfromaniello](https://github.com/jfromaniello))
|
|
176
229
|
|
|
177
230
|
**Changed**
|
|
231
|
+
|
|
178
232
|
- [CAUTH-511] improve error handling on missing captcha [\#1900](https://github.com/auth0/lock/pull/1900) ([jfromaniello](https://github.com/jfromaniello))
|
|
179
233
|
|
|
180
234
|
**Fixed**
|
|
181
|
-
- [SDK-1284] Fix for "growing" tabs when repeatedly clicked [\#1904](https://github.com/auth0/lock/pull/1904) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
182
235
|
|
|
236
|
+
- [SDK-1284] Fix for "growing" tabs when repeatedly clicked [\#1904](https://github.com/auth0/lock/pull/1904) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
183
237
|
|
|
184
238
|
## [v11.25.1](https://github.com/auth0/lock/tree/v11.25.1) (2020-07-14)
|
|
185
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.25.0...v11.25.1)
|
|
186
239
|
|
|
240
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.25.0...v11.25.1)
|
|
187
241
|
|
|
188
242
|
**Fixed**
|
|
189
|
-
- [SDK-1809] Connection display name is used even when no IdP domains are available [\#1898](https://github.com/auth0/lock/pull/1898) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
190
243
|
|
|
244
|
+
- [SDK-1809] Connection display name is used even when no IdP domains are available [\#1898](https://github.com/auth0/lock/pull/1898) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
191
245
|
|
|
192
246
|
## [v11.25.0](https://github.com/auth0/lock/tree/v11.25.0) (2020-07-09)
|
|
193
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.24.5...v11.25.0)
|
|
194
247
|
|
|
248
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.24.5...v11.25.0)
|
|
195
249
|
|
|
196
250
|
**Added**
|
|
197
|
-
- [SDK-1710] Allow Lock to use connection display name field from client configuration file [\#1896](https://github.com/auth0/lock/pull/1896) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
198
251
|
|
|
252
|
+
- [SDK-1710] Allow Lock to use connection display name field from client configuration file [\#1896](https://github.com/auth0/lock/pull/1896) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
199
253
|
|
|
200
254
|
## [v11.24.5](https://github.com/auth0/lock/tree/v11.24.5) (2020-07-03)
|
|
201
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.24.4...v11.24.5)
|
|
202
255
|
|
|
256
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.24.4...v11.24.5)
|
|
203
257
|
|
|
204
258
|
**Fixed**
|
|
205
|
-
- [SDK-1738] Remove subtle transition on header element [\#1892](https://github.com/auth0/lock/pull/1892) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
206
259
|
|
|
260
|
+
- [SDK-1738] Remove subtle transition on header element [\#1892](https://github.com/auth0/lock/pull/1892) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
207
261
|
|
|
208
262
|
## [v11.24.4](https://github.com/auth0/lock/tree/v11.24.4) (2020-07-02)
|
|
209
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.24.3...v11.24.4)
|
|
210
263
|
|
|
264
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.24.3...v11.24.4)
|
|
211
265
|
|
|
212
266
|
**Changed**
|
|
267
|
+
|
|
213
268
|
- [SDK-1756] Add HTML5 novalidate attribute to Lock form to remove native browser validation [\#1890](https://github.com/auth0/lock/pull/1890) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
214
269
|
- Bump auth0-js to 9.13.3 [\#1889](https://github.com/auth0/lock/pull/1889) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
215
270
|
|
|
216
|
-
|
|
217
271
|
## [v11.24.3](https://github.com/auth0/lock/tree/v11.24.3) (2020-06-19)
|
|
218
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.24.2...v11.24.3)
|
|
219
272
|
|
|
273
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.24.2...v11.24.3)
|
|
220
274
|
|
|
221
275
|
**Fixed**
|
|
276
|
+
|
|
222
277
|
- Allows i18n en lang override [\#1885](https://github.com/auth0/lock/pull/1885) ([davidpatrick](https://github.com/davidpatrick))
|
|
223
278
|
- Show the "Can't be blank" message under the password input [\#1882](https://github.com/auth0/lock/pull/1882) ([adamjmcgrath](https://github.com/adamjmcgrath))
|
|
224
279
|
|
|
225
280
|
**Security**
|
|
226
|
-
- [Security] Bump websocket-extensions from 0.1.3 to 0.1.4 [\#1880](https://github.com/auth0/lock/pull/1880) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
227
281
|
|
|
282
|
+
- [Security] Bump websocket-extensions from 0.1.3 to 0.1.4 [\#1880](https://github.com/auth0/lock/pull/1880) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
228
283
|
|
|
229
284
|
## [v11.24.2](https://github.com/auth0/lock/tree/v11.24.2) (2020-06-05)
|
|
230
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.24.1...v11.24.2)
|
|
231
285
|
|
|
286
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.24.1...v11.24.2)
|
|
232
287
|
|
|
233
288
|
**Fixed**
|
|
289
|
+
|
|
234
290
|
- [SDK-1556] Apply window height style to root document for Passwordless UI [\#1878](https://github.com/auth0/lock/pull/1878) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
235
291
|
- Add !hostedLoginPage condition to redirect check [\#1876](https://github.com/auth0/lock/pull/1876) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
236
292
|
- Header height not updated when Lock dialog is closed and reopened [\#1874](https://github.com/auth0/lock/pull/1874) ([adamjmcgrath](https://github.com/adamjmcgrath))
|
|
237
293
|
- z-index needs to be less than the close button to avoid hiding it [\#1872](https://github.com/auth0/lock/pull/1872) ([adamjmcgrath](https://github.com/adamjmcgrath))
|
|
238
294
|
|
|
239
|
-
|
|
240
295
|
## [v11.24.1](https://github.com/auth0/lock/tree/v11.24.1) (2020-05-18)
|
|
241
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.24.0...v11.24.1)
|
|
242
296
|
|
|
297
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.24.0...v11.24.1)
|
|
243
298
|
|
|
244
299
|
**Fixed**
|
|
245
|
-
- [ESD-6221] Remove CSS variable from header height calculation [\#1867](https://github.com/auth0/lock/pull/1867) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
246
300
|
|
|
301
|
+
- [ESD-6221] Remove CSS variable from header height calculation [\#1867](https://github.com/auth0/lock/pull/1867) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
247
302
|
|
|
248
303
|
## [v11.24.0](https://github.com/auth0/lock/tree/v11.24.0) (2020-05-11)
|
|
249
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.23.1...v11.24.0)
|
|
250
304
|
|
|
305
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.23.1...v11.24.0)
|
|
251
306
|
|
|
252
307
|
**Added**
|
|
308
|
+
|
|
253
309
|
- Add support for google recaptcha [\#1845](https://github.com/auth0/lock/pull/1845) ([kusold](https://github.com/kusold))
|
|
254
310
|
|
|
255
311
|
**Fixed**
|
|
312
|
+
|
|
256
313
|
- Fix header height calculation for large titles [\#1859](https://github.com/auth0/lock/pull/1859) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
257
314
|
- Typo fix in username.js [\#1857](https://github.com/auth0/lock/pull/1857) ([thduttonuk](https://github.com/thduttonuk))
|
|
258
315
|
- Fix send sms error event [\#1856](https://github.com/auth0/lock/pull/1856) ([blankg](https://github.com/blankg))
|
|
259
316
|
|
|
260
|
-
|
|
261
317
|
## [v11.23.1](https://github.com/auth0/lock/tree/v11.23.1) (2020-04-20)
|
|
262
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.23.0...v11.23.1)
|
|
263
318
|
|
|
319
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.23.0...v11.23.1)
|
|
264
320
|
|
|
265
321
|
**Fixed**
|
|
266
|
-
|
|
322
|
+
|
|
323
|
+
- [ESD-5299] Bug with the special characters password hint [\#1847](https://github.com/auth0/lock/pull/1847) ([adamjmcgrath](https://github.com/adamjmcgrath))
|
|
267
324
|
- [ESD-5397] Fix header z-index [\#1846](https://github.com/auth0/lock/pull/1846) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
268
325
|
|
|
269
326
|
**Security**
|
|
327
|
+
|
|
270
328
|
- Upgraded dependencies from security advisories [\#1848](https://github.com/auth0/lock/pull/1848) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
271
329
|
- Bump auth0-js from 9.13.1 to 9.13.2 [\#1844](https://github.com/auth0/lock/pull/1844) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
272
330
|
|
|
273
|
-
|
|
274
331
|
## [v11.23.0](https://github.com/auth0/lock/tree/v11.23.0) (2020-04-02)
|
|
275
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.22.5...v11.23.0)
|
|
276
332
|
|
|
333
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.22.5...v11.23.0)
|
|
277
334
|
|
|
278
335
|
**Added**
|
|
336
|
+
|
|
279
337
|
- Add invalidHint to phoneNumberInput (fix issue #1836) [\#1837](https://github.com/auth0/lock/pull/1837) ([blankg](https://github.com/blankg))
|
|
280
338
|
|
|
281
339
|
**Fixed**
|
|
340
|
+
|
|
282
341
|
- [SDK-1413] Re-added scrollbars and fixed password strength popup clip issue [\#1839](https://github.com/auth0/lock/pull/1839) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
283
342
|
- Add 'social_signup_needs_terms_acception' Japanese translation [\#1835](https://github.com/auth0/lock/pull/1835) ([mag-chang](https://github.com/mag-chang))
|
|
284
343
|
|
|
@@ -287,584 +346,611 @@ Inline `util.format` and replace usage of `global` for `window` [\#2030](https:/
|
|
|
287
346
|
- Bumped auth0-js to 9.13.1 [\#1842](https://github.com/auth0/lock/pull/1842) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
288
347
|
|
|
289
348
|
## [v11.22.5](https://github.com/auth0/lock/tree/v11.22.5) (2020-03-25)
|
|
290
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.22.4...v11.22.5)
|
|
291
349
|
|
|
350
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.22.4...v11.22.5)
|
|
292
351
|
|
|
293
352
|
**Added**
|
|
294
|
-
- add Azerbaijan language [\#1828](https://github.com/auth0/lock/pull/1828) ([Haqverdi](https://github.com/Haqverdi))
|
|
295
353
|
|
|
354
|
+
- add Azerbaijan language [\#1828](https://github.com/auth0/lock/pull/1828) ([Haqverdi](https://github.com/Haqverdi))
|
|
296
355
|
|
|
297
356
|
## [v11.22.4](https://github.com/auth0/lock/tree/v11.22.4) (2020-03-06)
|
|
298
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.22.3...v11.22.4)
|
|
299
357
|
|
|
358
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.22.3...v11.22.4)
|
|
300
359
|
|
|
301
360
|
**Fixed**
|
|
302
|
-
- [CAUTH-373] do not autologin the user if captcha is required [\#1818](https://github.com/auth0/lock/pull/1818) ([jfromaniello](https://github.com/jfromaniello))
|
|
303
361
|
|
|
362
|
+
- [CAUTH-373] do not autologin the user if captcha is required [\#1818](https://github.com/auth0/lock/pull/1818) ([jfromaniello](https://github.com/jfromaniello))
|
|
304
363
|
|
|
305
364
|
## [v11.22.3](https://github.com/auth0/lock/tree/v11.22.3) (2020-03-04)
|
|
306
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.22.2...v11.22.3)
|
|
307
365
|
|
|
366
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.22.2...v11.22.3)
|
|
308
367
|
|
|
309
368
|
**Fixed**
|
|
310
|
-
- [SDK-1389] Applied appearance styles for Bootstrap in Safari [\#1815](https://github.com/auth0/lock/pull/1815) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
311
369
|
|
|
370
|
+
- [SDK-1389] Applied appearance styles for Bootstrap in Safari [\#1815](https://github.com/auth0/lock/pull/1815) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
312
371
|
|
|
313
372
|
## [v11.22.2](https://github.com/auth0/lock/tree/v11.22.2) (2020-02-20)
|
|
314
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.22.1...v11.22.2)
|
|
315
373
|
|
|
374
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.22.1...v11.22.2)
|
|
316
375
|
|
|
317
376
|
**Changed**
|
|
377
|
+
|
|
318
378
|
- Change Sign in with Apple button background to full black [\#1811](https://github.com/auth0/lock/pull/1811) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
319
379
|
|
|
320
380
|
**Fixed**
|
|
321
|
-
- Update cs.js - plural adjustments [\#1810](https://github.com/auth0/lock/pull/1810) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
322
381
|
|
|
382
|
+
- Update cs.js - plural adjustments [\#1810](https://github.com/auth0/lock/pull/1810) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
323
383
|
|
|
324
384
|
## [v11.22.1](https://github.com/auth0/lock/tree/v11.22.1) (2020-02-18)
|
|
325
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.22.0...v11.22.1)
|
|
326
385
|
|
|
386
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.22.0...v11.22.1)
|
|
327
387
|
|
|
328
388
|
**Fixed**
|
|
329
|
-
- [SDK-1361] Fix missing padding on social buttons [\#1808](https://github.com/auth0/lock/pull/1808) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
330
389
|
|
|
390
|
+
- [SDK-1361] Fix missing padding on social buttons [\#1808](https://github.com/auth0/lock/pull/1808) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
331
391
|
|
|
332
392
|
## [v11.22.0](https://github.com/auth0/lock/tree/v11.22.0) (2020-02-17)
|
|
393
|
+
|
|
333
394
|
[Full Changelog](https://github.com/auth0/lock/compare/v11.21.1...v11.22.0)
|
|
334
395
|
|
|
335
396
|
**Changed**
|
|
397
|
+
|
|
336
398
|
- [SDK-1373] Added style rules to handle overflow and scroll [\#1803](https://github.com/auth0/lock/pull/1803) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
337
399
|
- [SDK-1361] Adjust styling for social buttons and Apple compliance [\#1801](https://github.com/auth0/lock/pull/1801) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
338
400
|
- Return results with signup success callback [\#1799](https://github.com/auth0/lock/pull/1799) ([bstaley](https://github.com/bstaley))
|
|
339
401
|
|
|
340
402
|
**Fixed**
|
|
341
|
-
- [SDK-1374] Email input now uses type="email" [\#1802](https://github.com/auth0/lock/pull/1802) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
342
403
|
|
|
404
|
+
- [SDK-1374] Email input now uses type="email" [\#1802](https://github.com/auth0/lock/pull/1802) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
343
405
|
|
|
344
406
|
## [v11.21.1](https://github.com/auth0/lock/tree/v11.21.1) (2020-02-03)
|
|
345
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.21.0...v11.21.1)
|
|
346
407
|
|
|
408
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.21.0...v11.21.1)
|
|
347
409
|
|
|
348
410
|
**Fixed**
|
|
349
|
-
- [SDK-1300] Added missing translation keys for 6 EU languages [\#1791](https://github.com/auth0/lock/pull/1791) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
350
411
|
|
|
412
|
+
- [SDK-1300] Added missing translation keys for 6 EU languages [\#1791](https://github.com/auth0/lock/pull/1791) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
351
413
|
|
|
352
414
|
## [v11.21.0](https://github.com/auth0/lock/tree/v11.21.0) (2020-01-30)
|
|
353
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.20.4...v11.21.0)
|
|
354
415
|
|
|
416
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.20.4...v11.21.0)
|
|
355
417
|
|
|
356
418
|
**Security**
|
|
357
|
-
- Make placeholder text-only, add new placeholderHTML for additionalSignUpFields [\#1788](https://github.com/auth0/lock/pull/1788) ([davidpatrick](https://github.com/davidpatrick))
|
|
358
419
|
|
|
420
|
+
- Make placeholder text-only, add new placeholderHTML for additionalSignUpFields [\#1788](https://github.com/auth0/lock/pull/1788) ([davidpatrick](https://github.com/davidpatrick))
|
|
359
421
|
|
|
360
422
|
## [v11.20.4](https://github.com/auth0/lock/tree/v11.20.4) (2020-01-29)
|
|
361
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.20.3...v11.20.4)
|
|
362
423
|
|
|
424
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.20.3...v11.20.4)
|
|
363
425
|
|
|
364
426
|
**Fixed**
|
|
427
|
+
|
|
365
428
|
- Fix for login button being cut off on some mobile devices [\#1785](https://github.com/auth0/lock/pull/1785) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
366
429
|
- Emit authorization_error event on passwordless error [\#1784](https://github.com/auth0/lock/pull/1784) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
367
430
|
|
|
368
|
-
|
|
369
431
|
## [v11.20.3](https://github.com/auth0/lock/tree/v11.20.3) (2020-01-15)
|
|
370
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.20.2...v11.20.3)
|
|
371
432
|
|
|
433
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.20.2...v11.20.3)
|
|
372
434
|
|
|
373
435
|
**Changed**
|
|
436
|
+
|
|
374
437
|
- Bumped Auth0.js to 9.12.2 [\#1780](https://github.com/auth0/lock/pull/1780) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
375
438
|
- Prevent loading overlay from showing when using Sign In With Apple [\#1779](https://github.com/auth0/lock/pull/1779) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
376
439
|
|
|
377
440
|
**Fixed**
|
|
378
|
-
- Fix translation pt-PT [\#1776](https://github.com/auth0/lock/pull/1776) ([mario-moura-silva](https://github.com/mario-moura-silva))
|
|
379
441
|
|
|
442
|
+
- Fix translation pt-PT [\#1776](https://github.com/auth0/lock/pull/1776) ([mario-moura-silva](https://github.com/mario-moura-silva))
|
|
380
443
|
|
|
381
444
|
## [v11.20.2](https://github.com/auth0/lock/tree/v11.20.2) (2020-01-06)
|
|
382
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.20.1...v11.20.2)
|
|
383
445
|
|
|
446
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.20.1...v11.20.2)
|
|
384
447
|
|
|
385
448
|
**Fixed**
|
|
386
|
-
- [CAUTH-277] prevent posting when captcha is required and empty [\#1774](https://github.com/auth0/lock/pull/1774) ([jfromaniello](https://github.com/jfromaniello))
|
|
387
449
|
|
|
450
|
+
- [CAUTH-277] prevent posting when captcha is required and empty [\#1774](https://github.com/auth0/lock/pull/1774) ([jfromaniello](https://github.com/jfromaniello))
|
|
388
451
|
|
|
389
452
|
## [v11.20.1](https://github.com/auth0/lock/tree/v11.20.1) (2019-12-20)
|
|
390
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.20.0...v11.20.1)
|
|
391
453
|
|
|
454
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.20.0...v11.20.1)
|
|
392
455
|
|
|
393
456
|
**Fixed**
|
|
394
|
-
- Set the default token validation leeway to 60 sec [\#1770](https://github.com/auth0/lock/pull/1770) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
395
457
|
|
|
458
|
+
- Set the default token validation leeway to 60 sec [\#1770](https://github.com/auth0/lock/pull/1770) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
396
459
|
|
|
397
460
|
## [v11.20.0](https://github.com/auth0/lock/tree/v11.20.0) (2019-12-16)
|
|
398
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.19.0...v11.20.0)
|
|
399
461
|
|
|
462
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.19.0...v11.20.0)
|
|
400
463
|
|
|
401
464
|
**Added**
|
|
465
|
+
|
|
402
466
|
- add captcha support [\#1765](https://github.com/auth0/lock/pull/1765) ([jfromaniello](https://github.com/jfromaniello))
|
|
403
467
|
|
|
404
468
|
**Security**
|
|
405
|
-
- [SDK-980] Bumped auth0.js to 9.12.0 [\#1767](https://github.com/auth0/lock/pull/1767) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
406
469
|
|
|
470
|
+
- [SDK-980] Bumped auth0.js to 9.12.0 [\#1767](https://github.com/auth0/lock/pull/1767) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
407
471
|
|
|
408
472
|
## [v11.19.0](https://github.com/auth0/lock/tree/v11.19.0) (2019-12-04)
|
|
409
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.18.1...v11.19.0)
|
|
410
473
|
|
|
474
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.18.1...v11.19.0)
|
|
411
475
|
|
|
412
476
|
**Added**
|
|
477
|
+
|
|
413
478
|
- New Feature: Signup Success Event [\#1754](https://github.com/auth0/lock/pull/1754) ([fostergn](https://github.com/fostergn))
|
|
414
479
|
|
|
415
480
|
**Fixed**
|
|
481
|
+
|
|
416
482
|
- [SDK-1191] Lock social buttons now render as links instead of buttons [\#1760](https://github.com/auth0/lock/pull/1760) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
417
483
|
- [SDK-1141] Altered readme samples to remove ref to localstorage [\#1759](https://github.com/auth0/lock/pull/1759) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
418
484
|
- Applied overflow style only on mobile views [\#1758](https://github.com/auth0/lock/pull/1758) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
419
485
|
- Bugfix for WebExtension [\#1750](https://github.com/auth0/lock/pull/1750) ([STK913](https://github.com/STK913))
|
|
420
486
|
|
|
421
|
-
|
|
422
487
|
## [v11.18.1](https://github.com/auth0/lock/tree/v11.18.1) (2019-10-28)
|
|
423
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.18.0...v11.18.1)
|
|
424
488
|
|
|
489
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.18.0...v11.18.1)
|
|
425
490
|
|
|
426
491
|
**Added**
|
|
492
|
+
|
|
427
493
|
- added hungarian transalation for social_signup_needs_terms_acception [\#1744](https://github.com/auth0/lock/pull/1744) ([smatyas](https://github.com/smatyas))
|
|
428
494
|
- Add a Lock event 'sso login' [\#1742](https://github.com/auth0/lock/pull/1742) ([countergram](https://github.com/countergram))
|
|
429
495
|
- fix: Add missing property for finnish translation [\#1740](https://github.com/auth0/lock/pull/1740) ([petetnt](https://github.com/petetnt))
|
|
430
496
|
|
|
431
497
|
**Fixed**
|
|
432
|
-
- Reset .auth0-lock-form display to 'initial' for iPhone [\#1745](https://github.com/auth0/lock/pull/1745) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
433
498
|
|
|
499
|
+
- Reset .auth0-lock-form display to 'initial' for iPhone [\#1745](https://github.com/auth0/lock/pull/1745) ([stevehobbsdev](https://github.com/stevehobbsdev))
|
|
434
500
|
|
|
435
501
|
## [v11.18.0](https://github.com/auth0/lock/tree/v11.18.0) (2019-10-10)
|
|
436
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.17.3...v11.18.0)
|
|
437
502
|
|
|
503
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.17.3...v11.18.0)
|
|
438
504
|
|
|
439
505
|
**Changed**
|
|
506
|
+
|
|
440
507
|
- Relaxing the email validation [\#1735](https://github.com/auth0/lock/pull/1735) ([luisrudge](https://github.com/luisrudge))
|
|
441
508
|
- Fix social button interactions when terms have not been accepted [\#1733](https://github.com/auth0/lock/pull/1733) ([luisrudge](https://github.com/luisrudge))
|
|
442
509
|
|
|
443
510
|
**Fixed**
|
|
444
|
-
- Map password_expired to password_change_required [\#1730](https://github.com/auth0/lock/pull/1730) ([luisrudge](https://github.com/luisrudge))
|
|
445
511
|
|
|
512
|
+
- Map password_expired to password_change_required [\#1730](https://github.com/auth0/lock/pull/1730) ([luisrudge](https://github.com/luisrudge))
|
|
446
513
|
|
|
447
514
|
## [v11.17.3](https://github.com/auth0/lock/tree/v11.17.3) (2019-10-03)
|
|
448
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.17.2...v11.17.3)
|
|
449
515
|
|
|
516
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.17.2...v11.17.3)
|
|
450
517
|
|
|
451
518
|
**Fixed**
|
|
519
|
+
|
|
452
520
|
- Fix Title cropping and password instructions tooltip [\#1728](https://github.com/auth0/lock/pull/1728) ([thisis-Shitanshu](https://github.com/thisis-Shitanshu))
|
|
453
521
|
- Fix pt language issue [\#1726](https://github.com/auth0/lock/pull/1726) ([jogee](https://github.com/jogee))
|
|
454
522
|
|
|
455
|
-
|
|
456
523
|
## [v11.17.2](https://github.com/auth0/lock/tree/v11.17.2) (2019-08-08)
|
|
457
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.17.1...v11.17.2)
|
|
458
|
-
|
|
459
524
|
|
|
525
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.17.1...v11.17.2)
|
|
460
526
|
|
|
461
527
|
## [v11.17.1](https://github.com/auth0/lock/tree/v11.17.1) (2019-07-23)
|
|
528
|
+
|
|
462
529
|
[Full Changelog](https://github.com/auth0/lock/compare/v11.17.0...v11.17.1)
|
|
463
530
|
|
|
464
531
|
**Fixed**
|
|
465
532
|
|
|
466
533
|
- Use cdn-uploader from NPM.
|
|
467
534
|
|
|
468
|
-
|
|
469
535
|
## [v11.17.0](https://github.com/auth0/lock/tree/v11.17.0) (2019-07-15)
|
|
470
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.16.3...v11.17.0)
|
|
471
536
|
|
|
537
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.16.3...v11.17.0)
|
|
472
538
|
|
|
473
539
|
**Added**
|
|
540
|
+
|
|
474
541
|
- Add validation to new root profile attributes [\#1657](https://github.com/auth0/lock/pull/1657) ([luisrudge](https://github.com/luisrudge))
|
|
475
542
|
- Add support for signup with root level attributes [\#1656](https://github.com/auth0/lock/pull/1656) ([luisrudge](https://github.com/luisrudge))
|
|
476
543
|
|
|
477
|
-
|
|
478
544
|
## [v11.16.3](https://github.com/auth0/lock/tree/v11.16.3) (2019-06-11)
|
|
479
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.16.2...v11.16.3)
|
|
480
545
|
|
|
546
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.16.2...v11.16.3)
|
|
481
547
|
|
|
482
548
|
**Added**
|
|
549
|
+
|
|
483
550
|
- Add support for Apple strategy [\#1674](https://github.com/auth0/lock/pull/1674) ([astanciu](https://github.com/astanciu))
|
|
484
551
|
|
|
485
552
|
**Fixed**
|
|
486
|
-
- Fix password policy when using tenant connections [\#1664](https://github.com/auth0/lock/pull/1664) ([luisrudge](https://github.com/luisrudge))
|
|
487
553
|
|
|
554
|
+
- Fix password policy when using tenant connections [\#1664](https://github.com/auth0/lock/pull/1664) ([luisrudge](https://github.com/luisrudge))
|
|
488
555
|
|
|
489
556
|
## [v11.16.2](https://github.com/auth0/lock/tree/v11.16.2) (2019-06-03)
|
|
557
|
+
|
|
490
558
|
[Full Changelog](https://github.com/auth0/lock/compare/v11.16.1...v11.16.2)
|
|
491
559
|
|
|
492
560
|
**Fixed**
|
|
493
561
|
|
|
494
562
|
- Fixed telemetry
|
|
495
563
|
|
|
496
|
-
|
|
497
564
|
## [v11.16.1](https://github.com/auth0/lock/tree/v11.16.1) (2019-06-03)
|
|
498
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.16.0...v11.16.1)
|
|
499
565
|
|
|
566
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.16.0...v11.16.1)
|
|
500
567
|
|
|
501
568
|
**Added**
|
|
569
|
+
|
|
502
570
|
- Add error message for too_many_requests [\#1655](https://github.com/auth0/lock/pull/1655) ([luisrudge](https://github.com/luisrudge))
|
|
503
571
|
- Add translation for Bulgarian (bg). [\#1652](https://github.com/auth0/lock/pull/1652) ([alex-mo](https://github.com/alex-mo))
|
|
504
572
|
|
|
505
573
|
**Fixed**
|
|
574
|
+
|
|
506
575
|
- Prevent form submit when password is empty [\#1654](https://github.com/auth0/lock/pull/1654) ([luisrudge](https://github.com/luisrudge))
|
|
507
576
|
- Fix destroying lock instance [\#1653](https://github.com/auth0/lock/pull/1653) ([luisrudge](https://github.com/luisrudge))
|
|
508
577
|
|
|
509
|
-
|
|
510
578
|
## [v11.16.0](https://github.com/auth0/lock/tree/v11.16.0) (2019-05-06)
|
|
511
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.15.0...v11.16.0)
|
|
512
579
|
|
|
580
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.15.0...v11.16.0)
|
|
513
581
|
|
|
514
582
|
**Changed**
|
|
583
|
+
|
|
515
584
|
- Remove socialButtonStyle option to use small icons [\#1637](https://github.com/auth0/lock/pull/1637) ([luisrudge](https://github.com/luisrudge))
|
|
516
585
|
|
|
517
|
-
|
|
586
|
+
_From this release on, the option to display social connections in small styled buttons is no longer available due to branding compliance reasons. All the social connections will now be displayed as large styled buttons._
|
|
518
587
|
|
|
519
588
|
**Fixed**
|
|
520
|
-
- Fix IE11 height [\#1641](https://github.com/auth0/lock/pull/1641) ([luisrudge](https://github.com/luisrudge))
|
|
521
589
|
|
|
590
|
+
- Fix IE11 height [\#1641](https://github.com/auth0/lock/pull/1641) ([luisrudge](https://github.com/luisrudge))
|
|
522
591
|
|
|
523
592
|
## [v11.15.0](https://github.com/auth0/lock/tree/v11.15.0) (2019-04-16)
|
|
524
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.14.1...v11.15.0)
|
|
525
593
|
|
|
594
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.14.1...v11.15.0)
|
|
526
595
|
|
|
527
596
|
**Changed**
|
|
597
|
+
|
|
528
598
|
- Changes german translation of 'sign up' from 'Anmelden' to 'Registrieren; [\#1627](https://github.com/auth0/lock/pull/1627) ([PapaMufflon](https://github.com/PapaMufflon))
|
|
529
599
|
- Update telemetry format and rules [\#1624](https://github.com/auth0/lock/pull/1624) ([luisrudge](https://github.com/luisrudge))
|
|
530
600
|
|
|
531
601
|
**Fixed**
|
|
602
|
+
|
|
532
603
|
- Fix layout when using big string for terms [\#1631](https://github.com/auth0/lock/pull/1631) ([luisrudge](https://github.com/luisrudge))
|
|
533
604
|
- Use new facebook icon [\#1630](https://github.com/auth0/lock/pull/1630) ([luisrudge](https://github.com/luisrudge))
|
|
534
605
|
- Added `login_required` to unhandled authorization errors [\#1629](https://github.com/auth0/lock/pull/1629) ([benhamiltonpro](https://github.com/benhamiltonpro))
|
|
535
606
|
- Fix error message overflow [\#1628](https://github.com/auth0/lock/pull/1628) ([luisrudge](https://github.com/luisrudge))
|
|
536
607
|
|
|
537
|
-
|
|
538
608
|
## [v11.14.1](https://github.com/auth0/lock/tree/v11.14.1) (2019-03-18)
|
|
539
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.14.0...v11.14.1)
|
|
540
609
|
|
|
610
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.14.0...v11.14.1)
|
|
541
611
|
|
|
542
612
|
**Fixed**
|
|
613
|
+
|
|
543
614
|
- Fix/avatar crop header mobile [\#1621](https://github.com/auth0/lock/pull/1621) ([luisrudge](https://github.com/luisrudge))
|
|
544
615
|
- Improve greek translation [\#1614](https://github.com/auth0/lock/pull/1614) ([esarafianou](https://github.com/esarafianou))
|
|
545
616
|
- Upgrade Auth0.js to 9.10.1
|
|
546
617
|
|
|
547
|
-
|
|
548
618
|
## [v11.14.0](https://github.com/auth0/lock/tree/v11.14.0) (2019-01-30)
|
|
549
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.13.2...v11.14.0)
|
|
550
619
|
|
|
620
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.13.2...v11.14.0)
|
|
551
621
|
|
|
552
622
|
**Changed**
|
|
553
|
-
- Upgrade Auth0.js to trim email, username and phoneNumber on every request [\#1596](https://github.com/auth0/lock/pull/1596) ([luisrudge](https://github.com/luisrudge))
|
|
554
623
|
|
|
624
|
+
- Upgrade Auth0.js to trim email, username and phoneNumber on every request [\#1596](https://github.com/auth0/lock/pull/1596) ([luisrudge](https://github.com/luisrudge))
|
|
555
625
|
|
|
556
626
|
## [v11.13.2](https://github.com/auth0/lock/tree/v11.13.2) (2019-01-28)
|
|
557
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.13.1...v11.13.2)
|
|
558
627
|
|
|
628
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.13.1...v11.13.2)
|
|
559
629
|
|
|
560
630
|
**Fixed**
|
|
561
|
-
- Fix lock center position with scroll across browsers [\#1594](https://github.com/auth0/lock/pull/1594) ([luisrudge](https://github.com/luisrudge))
|
|
562
631
|
|
|
632
|
+
- Fix lock center position with scroll across browsers [\#1594](https://github.com/auth0/lock/pull/1594) ([luisrudge](https://github.com/luisrudge))
|
|
563
633
|
|
|
564
634
|
## [v11.13.1](https://github.com/auth0/lock/tree/v11.13.1) (2019-01-23)
|
|
565
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.13.0...v11.13.1)
|
|
566
635
|
|
|
636
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.13.0...v11.13.1)
|
|
567
637
|
|
|
568
638
|
**Fixed**
|
|
569
|
-
- Upgrade Auth0.js with fix for storage inside the Hosted Login Page [\#1592](https://github.com/auth0/lock/pull/1592) ([luisrudge](https://github.com/luisrudge))
|
|
570
639
|
|
|
640
|
+
- Upgrade Auth0.js with fix for storage inside the Hosted Login Page [\#1592](https://github.com/auth0/lock/pull/1592) ([luisrudge](https://github.com/luisrudge))
|
|
571
641
|
|
|
572
642
|
## [v11.13.0](https://github.com/auth0/lock/tree/v11.13.0) (2019-01-15)
|
|
573
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.12.1...v11.13.0)
|
|
574
643
|
|
|
644
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.12.1...v11.13.0)
|
|
575
645
|
|
|
576
646
|
**Added**
|
|
647
|
+
|
|
577
648
|
- Adding terms for passwordless [\#1424](https://github.com/auth0/lock/pull/1424) ([luisrudge](https://github.com/luisrudge))
|
|
578
649
|
|
|
579
650
|
**Changed**
|
|
651
|
+
|
|
580
652
|
- Don't use storage when inside the Universal Login Page (Auth0.js update) [\#1587](https://github.com/auth0/lock/pull/1587) ([luisrudge](https://github.com/luisrudge))
|
|
581
653
|
|
|
582
654
|
**Fixed**
|
|
583
|
-
- Fixed missing scroll issue for sign up [\#1566](https://github.com/auth0/lock/pull/1566) ([degrammer](https://github.com/degrammer))
|
|
584
655
|
|
|
656
|
+
- Fixed missing scroll issue for sign up [\#1566](https://github.com/auth0/lock/pull/1566) ([degrammer](https://github.com/degrammer))
|
|
585
657
|
|
|
586
658
|
## [v11.12.1](https://github.com/auth0/lock/tree/v11.12.1) (2018-11-23)
|
|
587
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.12.0...v11.12.1)
|
|
588
659
|
|
|
660
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.12.0...v11.12.1)
|
|
589
661
|
|
|
590
662
|
**Fixed**
|
|
591
|
-
- Fix `lock is undefined` error in non-redirect scenarios [\#1557](https://github.com/auth0/lock/pull/1557) ([luisrudge](https://github.com/luisrudge))
|
|
592
663
|
|
|
664
|
+
- Fix `lock is undefined` error in non-redirect scenarios [\#1557](https://github.com/auth0/lock/pull/1557) ([luisrudge](https://github.com/luisrudge))
|
|
593
665
|
|
|
594
666
|
## [v11.12.0](https://github.com/auth0/lock/tree/v11.12.0) (2018-11-19)
|
|
595
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.11.0...v11.12.0)
|
|
596
667
|
|
|
668
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.11.0...v11.12.0)
|
|
597
669
|
|
|
598
670
|
**Added**
|
|
671
|
+
|
|
599
672
|
- Add ids to inputs and buttons [\#1517](https://github.com/auth0/lock/pull/1517) ([tingaloo](https://github.com/tingaloo))
|
|
600
673
|
- Add `showTerms` option [\#1485](https://github.com/auth0/lock/pull/1485) ([luisrudge](https://github.com/luisrudge))
|
|
601
674
|
|
|
602
675
|
**Changed**
|
|
676
|
+
|
|
603
677
|
- Trim auth params before sending to the API (not while typing) [\#1546](https://github.com/auth0/lock/pull/1546) ([luisrudge](https://github.com/luisrudge))
|
|
604
678
|
|
|
605
679
|
**Fixed**
|
|
680
|
+
|
|
606
681
|
- Fix padding in all screens [\#1547](https://github.com/auth0/lock/pull/1547) ([luisrudge](https://github.com/luisrudge))
|
|
607
682
|
- Fix IE10 script error [\#1542](https://github.com/auth0/lock/pull/1542) ([luisrudge](https://github.com/luisrudge))
|
|
608
683
|
- Fix mobile styles using different heights [\#1539](https://github.com/auth0/lock/pull/1539) ([luisrudge](https://github.com/luisrudge))
|
|
609
684
|
|
|
610
|
-
|
|
611
685
|
## [v11.11.0](https://github.com/auth0/lock/tree/v11.11.0) (2018-10-23)
|
|
612
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.10.0...v11.11.0)
|
|
613
686
|
|
|
687
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.10.0...v11.11.0)
|
|
614
688
|
|
|
615
689
|
**Added**
|
|
690
|
+
|
|
616
691
|
- Add prefill support to Auth0LockPasswordless [\#1505](https://github.com/auth0/lock/pull/1505) ([luisrudge](https://github.com/luisrudge))
|
|
617
692
|
- Add `ariaLabel` option for custom fields [\#1492](https://github.com/auth0/lock/pull/1492) ([Splact](https://github.com/Splact))
|
|
618
693
|
|
|
619
694
|
**Fixed**
|
|
695
|
+
|
|
620
696
|
- Fix google button styles according to google's guidelines [\#1512](https://github.com/auth0/lock/pull/1512) ([luisrudge](https://github.com/luisrudge))
|
|
621
697
|
- [Sustainment] Fixed Reset Password Avatar/Enterprise Issue [\#1504](https://github.com/auth0/lock/pull/1504) ([cocojoe](https://github.com/cocojoe))
|
|
622
698
|
- Remove aria-describedby on missing ref [\#1497](https://github.com/auth0/lock/pull/1497) ([Splact](https://github.com/Splact))
|
|
623
699
|
|
|
624
|
-
|
|
625
700
|
## [v11.10.0](https://github.com/auth0/lock/tree/v11.10.0) (2018-09-27)
|
|
701
|
+
|
|
626
702
|
[Full Changelog](https://github.com/auth0/lock/compare/v11.9.1...v11.10.0)
|
|
627
703
|
|
|
628
704
|
**Changed**
|
|
629
|
-
- Upgrade Auth0.js to use cookies instead of localStorage by default: [Read more](https://github.com/auth0/auth0.js/blob/master/CHANGELOG.md#v980-2018-09-26)
|
|
630
705
|
|
|
706
|
+
- Upgrade Auth0.js to use cookies instead of localStorage by default: [Read more](https://github.com/auth0/auth0.js/blob/master/CHANGELOG.md#v980-2018-09-26)
|
|
631
707
|
|
|
632
708
|
## [v11.9.1](https://github.com/auth0/lock/tree/v11.9.1) (2018-09-10)
|
|
633
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.9.0...v11.9.1)
|
|
634
709
|
|
|
710
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.9.0...v11.9.1)
|
|
635
711
|
|
|
636
712
|
**Fixed**
|
|
637
|
-
- Use span for icon buttons [\#1478](https://github.com/auth0/lock/pull/1478) ([andrew-me](https://github.com/andrew-me))
|
|
638
713
|
|
|
714
|
+
- Use span for icon buttons [\#1478](https://github.com/auth0/lock/pull/1478) ([andrew-me](https://github.com/andrew-me))
|
|
639
715
|
|
|
640
716
|
## [v11.9.0](https://github.com/auth0/lock/tree/v11.9.0) (2018-08-28)
|
|
641
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.8.1...v11.9.0)
|
|
642
717
|
|
|
718
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.8.1...v11.9.0)
|
|
643
719
|
|
|
644
720
|
**Added**
|
|
721
|
+
|
|
645
722
|
- Support new minimum password length parameter [\#1472](https://github.com/auth0/lock/pull/1472) ([luisrudge](https://github.com/luisrudge))
|
|
646
723
|
- Improve accessibility [\#1471](https://github.com/auth0/lock/pull/1471) ([andrew-me](https://github.com/andrew-me))
|
|
647
724
|
- Add a new type of additionalSignUpField: hidden [\#1459](https://github.com/auth0/lock/pull/1459) ([luisrudge](https://github.com/luisrudge))
|
|
648
725
|
|
|
649
726
|
**Fixed**
|
|
650
|
-
- Fixed login_hint in some enterprise authorize call scenarios [\#1460](https://github.com/auth0/lock/pull/1460) ([cocojoe](https://github.com/cocojoe))
|
|
651
727
|
|
|
728
|
+
- Fixed login_hint in some enterprise authorize call scenarios [\#1460](https://github.com/auth0/lock/pull/1460) ([cocojoe](https://github.com/cocojoe))
|
|
652
729
|
|
|
653
730
|
## [v11.8.1](https://github.com/auth0/lock/tree/v11.8.1) (2018-07-30)
|
|
654
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.8.0...v11.8.1)
|
|
655
731
|
|
|
732
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.8.0...v11.8.1)
|
|
656
733
|
|
|
657
734
|
**Fixed**
|
|
735
|
+
|
|
658
736
|
- Fix/sign up title inconsistenty [\#1457](https://github.com/auth0/lock/pull/1457) ([luisrudge](https://github.com/luisrudge))
|
|
659
737
|
- Fix wrong autoComplete value in password_input [\#1456](https://github.com/auth0/lock/pull/1456) ([luisrudge](https://github.com/luisrudge))
|
|
660
738
|
- Fix crash when showing lock for the second time with custom select input [\#1448](https://github.com/auth0/lock/pull/1448) ([luisrudge](https://github.com/luisrudge))
|
|
661
739
|
- Moving the PasswordStrength component to below the password input [\#1444](https://github.com/auth0/lock/pull/1444) ([luisrudge](https://github.com/luisrudge))
|
|
662
740
|
|
|
663
|
-
|
|
664
741
|
## [v11.8.0](https://github.com/auth0/lock/tree/v11.8.0) (2018-07-24)
|
|
665
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.7.2...v11.8.0)
|
|
666
742
|
|
|
743
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.7.2...v11.8.0)
|
|
667
744
|
|
|
668
745
|
**Added**
|
|
746
|
+
|
|
669
747
|
- Add allowPasswordAutocomplete option [\#1419](https://github.com/auth0/lock/pull/1419) ([jshado1](https://github.com/jshado1))
|
|
670
748
|
|
|
671
749
|
**Changed**
|
|
750
|
+
|
|
672
751
|
- Upgrade auth0.js to 9.7.3 [\#1442](https://github.com/auth0/lock/pull/1442) ([luisrudge](https://github.com/luisrudge))
|
|
673
752
|
|
|
674
753
|
**Fixed**
|
|
675
|
-
|
|
754
|
+
|
|
755
|
+
- Fix Configuration URL when using \_\_tenantInfo and a baseConfigurationURL [\#1425](https://github.com/auth0/lock/pull/1425) ([lbalmaceda](https://github.com/lbalmaceda))
|
|
676
756
|
- Fix SSO screen not showing in some cases [\#1415](https://github.com/auth0/lock/pull/1415) ([luisrudge](https://github.com/luisrudge))
|
|
677
757
|
- In SSO mode, hide the password input instead of removing it from the DOM [\#1407](https://github.com/auth0/lock/pull/1407) ([luisrudge](https://github.com/luisrudge))
|
|
678
758
|
|
|
679
|
-
|
|
680
759
|
## [v11.7.2](https://github.com/auth0/lock/tree/v11.7.2) (2018-06-07)
|
|
681
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.7.1...v11.7.2)
|
|
682
760
|
|
|
761
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.7.1...v11.7.2)
|
|
683
762
|
|
|
684
763
|
**Added**
|
|
764
|
+
|
|
685
765
|
- Added an i18n file for the Norwegian Nynorsk language [\#1398](https://github.com/auth0/lock/pull/1398) ([cjrorvik](https://github.com/cjrorvik))
|
|
686
766
|
|
|
687
767
|
**Fixed**
|
|
768
|
+
|
|
688
769
|
- SSO: Fallback to email if the username field is empty [\#1400](https://github.com/auth0/lock/pull/1400) ([sandrinodimattia](https://github.com/sandrinodimattia))
|
|
689
770
|
- Fixed some typos and corrected some mistakes in the Norwegian Bokmaal [\#1399](https://github.com/auth0/lock/pull/1399) ([cjrorvik](https://github.com/cjrorvik))
|
|
690
771
|
|
|
691
|
-
|
|
692
772
|
## [v11.7.1](https://github.com/auth0/lock/tree/v11.7.1) (2018-06-01)
|
|
693
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.7.0...v11.7.1)
|
|
694
773
|
|
|
774
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.7.0...v11.7.1)
|
|
695
775
|
|
|
696
776
|
**Fixed**
|
|
697
|
-
- Fix IE submit button display:initial issue [\#1394](https://github.com/auth0/lock/pull/1394) ([luisrudge](https://github.com/luisrudge))
|
|
698
777
|
|
|
778
|
+
- Fix IE submit button display:initial issue [\#1394](https://github.com/auth0/lock/pull/1394) ([luisrudge](https://github.com/luisrudge))
|
|
699
779
|
|
|
700
780
|
## [v11.7.0](https://github.com/auth0/lock/tree/v11.7.0) (2018-05-28)
|
|
701
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.6.1...v11.7.0)
|
|
702
781
|
|
|
782
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.6.1...v11.7.0)
|
|
703
783
|
|
|
704
784
|
**Fixed**
|
|
785
|
+
|
|
705
786
|
- Display error for all enterprise connections in the reset password screen [\#1384](https://github.com/auth0/lock/pull/1384) ([luisrudge](https://github.com/luisrudge))
|
|
706
787
|
- Hide password strength message when the password is valid [\#1382](https://github.com/auth0/lock/pull/1382) ([luisrudge](https://github.com/luisrudge))
|
|
707
788
|
- Fixed Turkish translation [\#1379](https://github.com/auth0/lock/pull/1379) ([saltukalakus](https://github.com/saltukalakus))
|
|
708
789
|
- Fix IE default redirect url [\#1373](https://github.com/auth0/lock/pull/1373) ([luisrudge](https://github.com/luisrudge))
|
|
709
790
|
|
|
710
|
-
|
|
711
791
|
## [v11.6.1](https://github.com/auth0/lock/tree/v11.6.1) (2018-05-02)
|
|
792
|
+
|
|
712
793
|
[Full Changelog](https://github.com/auth0/lock/compare/v11.6.0...v11.6.1)
|
|
713
794
|
|
|
714
795
|
**Fixed**
|
|
715
|
-
- Fix rendering issue on iOS devices [\#1365](https://github.com/auth0/lock/pull/1365) ([luisrudge](https://github.com/luisrudge))
|
|
716
796
|
|
|
797
|
+
- Fix rendering issue on iOS devices [\#1365](https://github.com/auth0/lock/pull/1365) ([luisrudge](https://github.com/luisrudge))
|
|
717
798
|
|
|
718
799
|
## [v11.6.0](https://github.com/auth0/lock/tree/v11.6.0) (2018-04-24)
|
|
719
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.5.2...v11.6.0)
|
|
720
800
|
|
|
801
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.5.2...v11.6.0)
|
|
721
802
|
|
|
722
803
|
**Added**
|
|
804
|
+
|
|
723
805
|
- Add signup error to valid events [\#1329](https://github.com/auth0/lock/pull/1329) ([yveswehrli](https://github.com/yveswehrli))
|
|
724
806
|
|
|
725
807
|
**Changed**
|
|
808
|
+
|
|
726
809
|
- Upgrade auth0-js to 9.5.0. See auth0-js' changelog [here](https://github.com/auth0/auth0.js/blob/master/CHANGELOG.md#v950-2018-04-24).
|
|
727
|
-
**Fixed**
|
|
810
|
+
**Fixed**
|
|
728
811
|
- Show spinner when doing quick auth [\#1346](https://github.com/auth0/lock/pull/1346) ([luisrudge](https://github.com/luisrudge))
|
|
729
812
|
- Fix danish translation [\#1338](https://github.com/auth0/lock/pull/1338) ([luisrudge](https://github.com/luisrudge))
|
|
730
813
|
- Fix getSSOData not sending custom nonce/state [\#1333](https://github.com/auth0/lock/pull/1333) ([luisrudge](https://github.com/luisrudge))
|
|
731
814
|
|
|
732
|
-
|
|
733
815
|
## [v11.5.2](https://github.com/auth0/lock/tree/v11.5.2) (2018-03-28)
|
|
734
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.5.1...v11.5.2)
|
|
735
816
|
|
|
817
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.5.1...v11.5.2)
|
|
736
818
|
|
|
737
819
|
**Added**
|
|
738
|
-
- Add jwksURI override option [\#1321](https://github.com/auth0/lock/pull/1321) ([luisrudge](https://github.com/luisrudge))
|
|
739
820
|
|
|
821
|
+
- Add jwksURI override option [\#1321](https://github.com/auth0/lock/pull/1321) ([luisrudge](https://github.com/luisrudge))
|
|
740
822
|
|
|
741
823
|
## [v11.5.1](https://github.com/auth0/lock/tree/v11.5.1) (2018-03-22)
|
|
742
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.5.0...v11.5.1)
|
|
743
|
-
|
|
744
824
|
|
|
825
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.5.0...v11.5.1)
|
|
745
826
|
|
|
746
827
|
## [v11.5.0](https://github.com/auth0/lock/tree/v11.5.0) (2018-03-22)
|
|
747
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.4.0...v11.5.0)
|
|
748
828
|
|
|
829
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.4.0...v11.5.0)
|
|
749
830
|
|
|
750
831
|
**Changed**
|
|
832
|
+
|
|
751
833
|
- updating auth0-js with impersonation and access token validation changes [\#1308](https://github.com/auth0/lock/pull/1308) ([luisrudge](https://github.com/luisrudge))
|
|
752
834
|
|
|
753
835
|
**Fixed**
|
|
836
|
+
|
|
754
837
|
- Fix inconsistent state assignment when parsing a hash [\#1309](https://github.com/auth0/lock/pull/1309) ([luisrudge](https://github.com/luisrudge))
|
|
755
838
|
- Fixed German translations [\#1307](https://github.com/auth0/lock/pull/1307) ([roschaefer](https://github.com/roschaefer))
|
|
756
839
|
- Fixing IE lack of support for `includes` [\#1298](https://github.com/auth0/lock/pull/1298) ([luisrudge](https://github.com/luisrudge))
|
|
757
840
|
- Fix Japanese translations [\#1295](https://github.com/auth0/lock/pull/1295) ([hiro1107](https://github.com/hiro1107))
|
|
758
841
|
|
|
759
|
-
|
|
760
842
|
## [v11.4.0](https://github.com/auth0/lock/tree/v11.4.0) (2018-03-12)
|
|
761
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.3.1...v11.4.0)
|
|
762
843
|
|
|
844
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.3.1...v11.4.0)
|
|
763
845
|
|
|
764
846
|
**Added**
|
|
847
|
+
|
|
765
848
|
- Update auth0.js and add flag to enable impersonation [\#1290](https://github.com/auth0/lock/pull/1290) ([luisrudge](https://github.com/luisrudge))
|
|
766
849
|
|
|
767
850
|
**Changed**
|
|
851
|
+
|
|
768
852
|
- Making HRD work in signup page and showing an error when HRD is detected in the forgot password page [\#1278](https://github.com/auth0/lock/pull/1278) ([luisrudge](https://github.com/luisrudge))
|
|
769
853
|
|
|
770
854
|
**Fixed**
|
|
855
|
+
|
|
771
856
|
- Fix inconsistent screen title [\#1288](https://github.com/auth0/lock/pull/1288) ([luisrudge](https://github.com/luisrudge))
|
|
772
857
|
- Always remove spaces from email and username [\#1280](https://github.com/auth0/lock/pull/1280) ([luisrudge](https://github.com/luisrudge))
|
|
773
858
|
|
|
774
|
-
|
|
775
859
|
## [v11.3.1](https://github.com/auth0/lock/tree/v11.3.1) (2018-02-28)
|
|
776
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.3.0...v11.3.1)
|
|
777
860
|
|
|
861
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.3.0...v11.3.1)
|
|
778
862
|
|
|
779
863
|
**Fixed**
|
|
780
|
-
- Add enterprise mapping to the auth0-oidc strategy [\#1275](https://github.com/auth0/lock/pull/1275) ([luisrudge](https://github.com/luisrudge))
|
|
781
864
|
|
|
865
|
+
- Add enterprise mapping to the auth0-oidc strategy [\#1275](https://github.com/auth0/lock/pull/1275) ([luisrudge](https://github.com/luisrudge))
|
|
782
866
|
|
|
783
867
|
## [v11.3.0](https://github.com/auth0/lock/tree/v11.3.0) (2018-02-22)
|
|
784
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.2.3...v11.3.0)
|
|
785
868
|
|
|
869
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.2.3...v11.3.0)
|
|
786
870
|
|
|
787
871
|
**Fixed**
|
|
872
|
+
|
|
788
873
|
- Fix Lock Passwordless feature parity (events and quick auth screen) [\#1267](https://github.com/auth0/lock/pull/1267) ([luisrudge](https://github.com/luisrudge))
|
|
789
874
|
- Removing legacy COA mapping + fixing access_denied mapping [\#1266](https://github.com/auth0/lock/pull/1266) ([luisrudge](https://github.com/luisrudge))
|
|
790
875
|
- Only call getSSOData when rememberLastLogin is true [\#1265](https://github.com/auth0/lock/pull/1265) ([luisrudge](https://github.com/luisrudge))
|
|
791
876
|
- Upgrade auth0-js to 9.3.0. See auth0-js' changelog [here](https://github.com/auth0/auth0.js/blob/master/CHANGELOG.md#v930-2018-02-22).
|
|
792
877
|
|
|
793
|
-
|
|
794
|
-
|
|
795
878
|
## [v11.2.3](https://github.com/auth0/lock/tree/v11.2.3) (2018-02-08)
|
|
796
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.2.2...v11.2.3)
|
|
797
879
|
|
|
880
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.2.2...v11.2.3)
|
|
798
881
|
|
|
799
882
|
**Fixed**
|
|
883
|
+
|
|
800
884
|
- Fixing Auth0LockPasswordless export [\#1259](https://github.com/auth0/lock/pull/1259) ([luisrudge](https://github.com/luisrudge))
|
|
801
885
|
- Fix sso warning [\#1258](https://github.com/auth0/lock/pull/1258) ([luisrudge](https://github.com/luisrudge))
|
|
802
886
|
|
|
803
|
-
|
|
804
887
|
## [v11.2.2](https://github.com/auth0/lock/tree/v11.2.2) (2018-02-06)
|
|
805
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.2.1...v11.2.2)
|
|
806
888
|
|
|
889
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.2.1...v11.2.2)
|
|
807
890
|
|
|
808
891
|
**Fixed**
|
|
809
|
-
- Upgrade a0js to fix popup mode with passwordless [\#1251](https://github.com/auth0/lock/pull/1251) ([luisrudge](https://github.com/luisrudge))
|
|
810
892
|
|
|
893
|
+
- Upgrade a0js to fix popup mode with passwordless [\#1251](https://github.com/auth0/lock/pull/1251) ([luisrudge](https://github.com/luisrudge))
|
|
811
894
|
|
|
812
895
|
## [v11.2.1](https://github.com/auth0/lock/tree/v11.2.1) (2018-02-02)
|
|
813
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.2.0...v11.2.1)
|
|
814
896
|
|
|
897
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.2.0...v11.2.1)
|
|
815
898
|
|
|
816
899
|
**Fixed**
|
|
817
|
-
- DIsable HRD check for passwordless connections [\#1248](https://github.com/auth0/lock/pull/1248) ([luisrudge](https://github.com/luisrudge))
|
|
818
900
|
|
|
901
|
+
- DIsable HRD check for passwordless connections [\#1248](https://github.com/auth0/lock/pull/1248) ([luisrudge](https://github.com/luisrudge))
|
|
819
902
|
|
|
820
903
|
## [v11.2.0](https://github.com/auth0/lock/tree/v11.2.0) (2018-02-02)
|
|
821
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.1.3...v11.2.0)
|
|
822
904
|
|
|
905
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.1.3...v11.2.0)
|
|
823
906
|
|
|
824
907
|
**Changed**
|
|
908
|
+
|
|
825
909
|
- call /ssodata when inside the universal login page [\#1245](https://github.com/auth0/lock/pull/1245) ([luisrudge](https://github.com/luisrudge))
|
|
826
910
|
- Handling embedded and universal login in the same application [\#1243](https://github.com/auth0/lock/pull/1243) ([luisrudge](https://github.com/luisrudge))
|
|
827
911
|
|
|
828
|
-
|
|
829
912
|
## [v11.1.3](https://github.com/auth0/lock/tree/v11.1.3) (2018-01-29)
|
|
913
|
+
|
|
830
914
|
[Full Changelog](https://github.com/auth0/lock/compare/v11.1.2...v11.1.3)
|
|
831
915
|
|
|
832
916
|
**Changed**
|
|
833
|
-
- Update auth0.js [auth0.js changelog](https://github.com/auth0/auth0.js/blob/master/CHANGELOG.md#v913-2018-01-29)
|
|
834
|
-
|
|
835
917
|
|
|
918
|
+
- Update auth0.js [auth0.js changelog](https://github.com/auth0/auth0.js/blob/master/CHANGELOG.md#v913-2018-01-29)
|
|
836
919
|
|
|
837
920
|
## [v11.1.2](https://github.com/auth0/lock/tree/v11.1.2) (2018-01-26)
|
|
921
|
+
|
|
838
922
|
[Full Changelog](https://github.com/auth0/lock/compare/v11.1.1...v11.1.2)
|
|
839
923
|
|
|
840
924
|
**Changed**
|
|
841
|
-
- Update auth0.js [auth0.js changelog](https://github.com/auth0/auth0.js/blob/master/CHANGELOG.md#v912-2018-01-26)
|
|
842
925
|
|
|
926
|
+
- Update auth0.js [auth0.js changelog](https://github.com/auth0/auth0.js/blob/master/CHANGELOG.md#v912-2018-01-26)
|
|
843
927
|
|
|
844
928
|
## [v11.1.1](https://github.com/auth0/lock/tree/v11.1.1) (2018-01-24)
|
|
929
|
+
|
|
845
930
|
[Full Changelog](https://github.com/auth0/lock/compare/v11.1.0...v11.1.1)
|
|
846
931
|
|
|
847
932
|
**Changed**
|
|
848
|
-
- Update auth0.js [auth0.js changelog](https://github.com/auth0/auth0.js/blob/master/CHANGELOG.md#v911-2018-01-24)
|
|
849
933
|
|
|
934
|
+
- Update auth0.js [auth0.js changelog](https://github.com/auth0/auth0.js/blob/master/CHANGELOG.md#v911-2018-01-24)
|
|
850
935
|
|
|
851
936
|
## [v11.1.0](https://github.com/auth0/lock/tree/v11.1.0) (2018-01-16)
|
|
852
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v11.0.1...v11.1.0)
|
|
853
937
|
|
|
938
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v11.0.1...v11.1.0)
|
|
854
939
|
|
|
855
940
|
**Changed**
|
|
856
|
-
- Update auth0.js [\#1225](https://github.com/auth0/lock/pull/1225) ([luisrudge](https://github.com/luisrudge))
|
|
857
941
|
|
|
942
|
+
- Update auth0.js [\#1225](https://github.com/auth0/lock/pull/1225) ([luisrudge](https://github.com/luisrudge))
|
|
858
943
|
|
|
859
944
|
## [v11.0.0](https://github.com/auth0/lock/tree/v11.0.0) (2017-12-21)
|
|
945
|
+
|
|
860
946
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.23.0...v11.0.0)
|
|
861
947
|
|
|
862
948
|
Lock 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.
|
|
863
949
|
|
|
864
|
-
We wrote a [Migration Guide](https://auth0.com/docs/libraries/lock/v11/migration-guide) to make upgrading your app easy.
|
|
950
|
+
We wrote a [Migration Guide](https://auth0.com/docs/libraries/lock/v11/migration-guide) to make upgrading your app easy.
|
|
865
951
|
|
|
866
952
|
**Breaking change**
|
|
867
|
-
`lock.getProfile` now expects an
|
|
953
|
+
`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).
|
|
868
954
|
|
|
869
955
|
**Removed**
|
|
870
956
|
The `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.
|
|
@@ -873,27 +959,29 @@ The `oidcConformant` flag was used to force Lock v10 to not call legacy endpoint
|
|
|
873
959
|
Lock v11 default the `scope` parameter to `openid profile email`. This is to make the 'Last Logged in With' window work.
|
|
874
960
|
|
|
875
961
|
## [v10.23.1](https://github.com/auth0/lock/tree/v10.23.1) (2017-10-12)
|
|
876
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v10.23.0...v10.23.1)
|
|
877
962
|
|
|
963
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v10.23.0...v10.23.1)
|
|
878
964
|
|
|
879
965
|
**Fixed**
|
|
880
|
-
- Using correct suffix for animation [\#1146](https://github.com/auth0/lock/pull/1146) ([luisrudge](https://github.com/luisrudge))
|
|
881
966
|
|
|
967
|
+
- Using correct suffix for animation [\#1146](https://github.com/auth0/lock/pull/1146) ([luisrudge](https://github.com/luisrudge))
|
|
882
968
|
|
|
883
969
|
## [v10.23.0](https://github.com/auth0/lock/tree/v10.23.0) (2017-10-12)
|
|
884
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v10.22.0...v10.23.0)
|
|
885
970
|
|
|
971
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v10.22.0...v10.23.0)
|
|
886
972
|
|
|
887
973
|
**Changed**
|
|
974
|
+
|
|
888
975
|
- Pinning react version 15.6.2 [\#1142](https://github.com/auth0/lock/pull/1142) ([luisrudge](https://github.com/luisrudge))
|
|
889
976
|
- upgrade auth0.js [\#1137](https://github.com/auth0/lock/pull/1137) ([luisrudge](https://github.com/luisrudge))
|
|
890
977
|
- Upgrade react version [\#1135](https://github.com/auth0/lock/pull/1135) ([luisrudge](https://github.com/luisrudge))
|
|
891
978
|
|
|
892
979
|
**Fixed**
|
|
980
|
+
|
|
893
981
|
- Fix defaultUrl sending hash content [\#1132](https://github.com/auth0/lock/pull/1132) ([luisrudge](https://github.com/luisrudge))
|
|
894
982
|
|
|
983
|
+
### ** NOTICE **
|
|
895
984
|
|
|
896
|
-
### ** NOTICE **
|
|
897
985
|
We'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.
|
|
898
986
|
|
|
899
987
|
In 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.
|
|
@@ -922,152 +1010,166 @@ In the meantime, react@16 works just fine with this codebase. You'll just have t
|
|
|
922
1010
|
}
|
|
923
1011
|
```
|
|
924
1012
|
|
|
925
|
-
|
|
926
1013
|
## [v10.22.0](https://github.com/auth0/lock/tree/v10.22.0) (2017-09-26)
|
|
927
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v10.21.1...v10.22.0)
|
|
928
1014
|
|
|
1015
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v10.21.1...v10.22.0)
|
|
929
1016
|
|
|
930
1017
|
**Added**
|
|
1018
|
+
|
|
931
1019
|
- Adding oidcConformant readme entry [\#1119](https://github.com/auth0/lock/pull/1119) ([luisrudge](https://github.com/luisrudge))
|
|
932
1020
|
|
|
933
1021
|
**Changed**
|
|
934
|
-
- Make cross origin authentication the default in OIDC mode [\#1124](https://github.com/auth0/lock/pull/1124) ([luisrudge](https://github.com/luisrudge))
|
|
935
1022
|
|
|
1023
|
+
- Make cross origin authentication the default in OIDC mode [\#1124](https://github.com/auth0/lock/pull/1124) ([luisrudge](https://github.com/luisrudge))
|
|
936
1024
|
|
|
937
1025
|
## [v10.21.1](https://github.com/auth0/lock/tree/v10.21.1) (2017-09-21)
|
|
938
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v10.21.0...v10.21.1)
|
|
939
1026
|
|
|
1027
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v10.21.0...v10.21.1)
|
|
940
1028
|
|
|
941
1029
|
**Fixed**
|
|
942
|
-
- Fix resolved connection not being a Map object [\#1116](https://github.com/auth0/lock/pull/1116) ([luisrudge](https://github.com/luisrudge))
|
|
943
1030
|
|
|
1031
|
+
- Fix resolved connection not being a Map object [\#1116](https://github.com/auth0/lock/pull/1116) ([luisrudge](https://github.com/luisrudge))
|
|
944
1032
|
|
|
945
1033
|
## [v10.21.0](https://github.com/auth0/lock/tree/v10.21.0) (2017-09-21)
|
|
946
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v10.20.0...v10.21.0)
|
|
947
1034
|
|
|
1035
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v10.20.0...v10.21.0)
|
|
948
1036
|
|
|
949
1037
|
**Added**
|
|
1038
|
+
|
|
950
1039
|
- Add Estonian Translations [\#1099](https://github.com/auth0/lock/pull/1099) ([meikoudras](https://github.com/meikoudras))
|
|
951
1040
|
|
|
952
1041
|
**Changed**
|
|
1042
|
+
|
|
953
1043
|
- Changed the connectionResolver to run onSubmit instead of onBlur [\#1113](https://github.com/auth0/lock/pull/1113) ([luisrudge](https://github.com/luisrudge))
|
|
954
1044
|
- Change translate for loginAtLabel [\#1110](https://github.com/auth0/lock/pull/1110) ([radu-carmina](https://github.com/radu-carmina))
|
|
955
1045
|
|
|
956
1046
|
**Fixed**
|
|
1047
|
+
|
|
957
1048
|
- Use resolvedConnection where available [\#1111](https://github.com/auth0/lock/pull/1111) ([lukevmorris](https://github.com/lukevmorris))
|
|
958
1049
|
- Fix a few svg errors when used with global css rule [\#1103](https://github.com/auth0/lock/pull/1103) ([luisrudge](https://github.com/luisrudge))
|
|
959
1050
|
- Links with # should use javascript:void(0) [\#1102](https://github.com/auth0/lock/pull/1102) ([luisrudge](https://github.com/luisrudge))
|
|
960
1051
|
- Improve Danish translation [\#1097](https://github.com/auth0/lock/pull/1097) ([havgry](https://github.com/havgry))
|
|
961
1052
|
- Fixed translations for Romanian and Slovenian [\#1092](https://github.com/auth0/lock/pull/1092) ([AdrianSima](https://github.com/AdrianSima))
|
|
962
1053
|
|
|
963
|
-
|
|
964
1054
|
## [v10.20.0](https://github.com/auth0/lock/tree/v10.20.0) (2017-08-11)
|
|
965
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v10.19.0...v10.20.0)
|
|
966
1055
|
|
|
1056
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v10.19.0...v10.20.0)
|
|
967
1057
|
|
|
968
1058
|
**Added**
|
|
1059
|
+
|
|
969
1060
|
- Add Romanian translations [\#1074](https://github.com/auth0/lock/pull/1074) ([jogee](https://github.com/jogee))
|
|
970
1061
|
- Add Slovenian translations [\#1073](https://github.com/auth0/lock/pull/1073) ([jogee](https://github.com/jogee))
|
|
971
1062
|
|
|
972
1063
|
**Changed**
|
|
1064
|
+
|
|
973
1065
|
- Update username allowed chars regex [\#1079](https://github.com/auth0/lock/pull/1079) ([luisrudge](https://github.com/luisrudge))
|
|
974
1066
|
|
|
975
1067
|
**Fixed**
|
|
1068
|
+
|
|
976
1069
|
- Fix custom theme for custom connections [\#1083](https://github.com/auth0/lock/pull/1083) ([luisrudge](https://github.com/luisrudge))
|
|
977
1070
|
- Fix spacing using custom signup fields [\#1076](https://github.com/auth0/lock/pull/1076) ([luisrudge](https://github.com/luisrudge))
|
|
978
1071
|
- Fixed Slovak translations [\#1069](https://github.com/auth0/lock/pull/1069) ([stajo1](https://github.com/stajo1))
|
|
979
1072
|
|
|
980
|
-
|
|
981
1073
|
## [v10.19.0](https://github.com/auth0/lock/tree/v10.19.0) (2017-07-18)
|
|
982
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v10.18.0...v10.19.0)
|
|
983
1074
|
|
|
1075
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v10.18.0...v10.19.0)
|
|
984
1076
|
|
|
985
1077
|
**Added**
|
|
1078
|
+
|
|
986
1079
|
- Added `oidcConformant` entry to the readme [\#1054](https://github.com/auth0/lock/pull/1054) ([luisrudge](https://github.com/luisrudge))
|
|
987
1080
|
- Added a custom connection resolver option [\#1052](https://github.com/auth0/lock/pull/1052) ([luisrudge](https://github.com/luisrudge))
|
|
988
1081
|
- Added Korean translation [\#1051](https://github.com/auth0/lock/pull/1051) ([couldseeme](https://github.com/couldseeme))
|
|
989
1082
|
|
|
990
1083
|
**Fixed**
|
|
991
|
-
- Set the username to the previously used email when toggling hrd [\#1056](https://github.com/auth0/lock/pull/1056) ([luisrudge](https://github.com/luisrudge))
|
|
992
1084
|
|
|
1085
|
+
- Set the username to the previously used email when toggling hrd [\#1056](https://github.com/auth0/lock/pull/1056) ([luisrudge](https://github.com/luisrudge))
|
|
993
1086
|
|
|
994
1087
|
## [v10.18.0](https://github.com/auth0/lock/tree/v10.18.0) (2017-06-23)
|
|
995
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v10.17.0...v10.18.0)
|
|
996
1088
|
|
|
1089
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v10.17.0...v10.18.0)
|
|
997
1090
|
|
|
998
1091
|
**Added**
|
|
1092
|
+
|
|
999
1093
|
- Add analytics events [\#1036](https://github.com/auth0/lock/pull/1036) ([francocorreasosa](https://github.com/francocorreasosa))
|
|
1000
1094
|
- Lang Afrikaans South Africa [\#1035](https://github.com/auth0/lock/pull/1035) ([jdunhin](https://github.com/jdunhin))
|
|
1001
1095
|
- Adding "show password" option [\#1029](https://github.com/auth0/lock/pull/1029) ([luisrudge](https://github.com/luisrudge))
|
|
1002
1096
|
|
|
1003
1097
|
**Changed**
|
|
1098
|
+
|
|
1004
1099
|
- Upgrade React to fix IE11 issues [\#1039](https://github.com/auth0/lock/pull/1039) ([luisrudge](https://github.com/luisrudge))
|
|
1005
1100
|
|
|
1006
1101
|
**Removed**
|
|
1102
|
+
|
|
1007
1103
|
- Removed node version restriction [\#1043](https://github.com/auth0/lock/pull/1043) ([luisrudge](https://github.com/luisrudge))
|
|
1008
1104
|
|
|
1009
1105
|
**Fixed**
|
|
1106
|
+
|
|
1010
1107
|
- Fixing empty popup on signup [\#1048](https://github.com/auth0/lock/pull/1048) ([luisrudge](https://github.com/luisrudge))
|
|
1011
1108
|
- Adding a flag for cross-auth [\#1044](https://github.com/auth0/lock/pull/1044) ([luisrudge](https://github.com/luisrudge))
|
|
1012
1109
|
- Fix custom connection scopes [\#1038](https://github.com/auth0/lock/pull/1038) ([luisrudge](https://github.com/luisrudge))
|
|
1013
1110
|
|
|
1014
|
-
|
|
1015
1111
|
## [v10.17.0](https://github.com/auth0/lock/tree/v10.17.0) (2017-06-14)
|
|
1016
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v10.16.0...v10.17.0)
|
|
1017
1112
|
|
|
1113
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v10.16.0...v10.17.0)
|
|
1018
1114
|
|
|
1019
1115
|
**Added**
|
|
1116
|
+
|
|
1020
1117
|
- Added allowAutoComplete ui option [\#1022](https://github.com/auth0/lock/pull/1022) ([luisrudge](https://github.com/luisrudge))
|
|
1021
1118
|
- When in OIDC mode, enterprise connections always go to IdP page [\#1019](https://github.com/auth0/lock/pull/1019) ([luisrudge](https://github.com/luisrudge))
|
|
1022
1119
|
- Added Cross Origin Auth support in OIDC mode [\#1013](https://github.com/auth0/lock/pull/1013) ([luisrudge](https://github.com/luisrudge))
|
|
1023
1120
|
- Emit authorization_error when username/password fails (invalid_user_password) [\#999](https://github.com/auth0/lock/pull/999) ([luisrudge](https://github.com/luisrudge))
|
|
1024
1121
|
|
|
1025
1122
|
**Changed**
|
|
1123
|
+
|
|
1026
1124
|
- Improved Danish translation [\#1033](https://github.com/auth0/lock/pull/1033) ([denkristoffer](https://github.com/denkristoffer))
|
|
1027
1125
|
- Scroll to the error message by default [\#1023](https://github.com/auth0/lock/pull/1023) ([m-idler](https://github.com/m-idler))
|
|
1028
1126
|
- Enabled HTML formatting for flashMessages [\#1017](https://github.com/auth0/lock/pull/1017) ([dariobanfi](https://github.com/dariobanfi))
|
|
1029
1127
|
- package.json: ~ range allowed for auth0-js dep [\#1015](https://github.com/auth0/lock/pull/1015) ([lexaurin](https://github.com/lexaurin))
|
|
1030
1128
|
|
|
1031
1129
|
**Fixed**
|
|
1130
|
+
|
|
1032
1131
|
- Removed extra scroll on mobile view [\#1031](https://github.com/auth0/lock/pull/1031) ([beneliflo](https://github.com/beneliflo))
|
|
1033
1132
|
- Fixing tooltip error in the email pane [\#1030](https://github.com/auth0/lock/pull/1030) ([luisrudge](https://github.com/luisrudge))
|
|
1034
1133
|
- Fix react-addons-css-transition-group issue [\#1001](https://github.com/auth0/lock/pull/1001) ([eoinmurray](https://github.com/eoinmurray))
|
|
1035
1134
|
- Fixed overrides sent to auth0.js [\#997](https://github.com/auth0/lock/pull/997) ([sandrinodimattia](https://github.com/sandrinodimattia))
|
|
1036
1135
|
|
|
1037
|
-
|
|
1038
1136
|
## [v10.16.0](https://github.com/auth0/lock/tree/v10.16.0) (2017-05-08)
|
|
1039
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v10.15.1...v10.16.0)
|
|
1040
1137
|
|
|
1138
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v10.15.1...v10.16.0)
|
|
1041
1139
|
|
|
1042
1140
|
**Added**
|
|
1141
|
+
|
|
1043
1142
|
- Add form method [\#993](https://github.com/auth0/lock/pull/993) ([luisrudge](https://github.com/luisrudge))
|
|
1044
1143
|
|
|
1045
1144
|
**Changed**
|
|
1145
|
+
|
|
1046
1146
|
- Update badge location for better performance and bundle max-age changes [\#995](https://github.com/auth0/lock/pull/995) ([ramasilveyra](https://github.com/ramasilveyra))
|
|
1047
1147
|
|
|
1048
1148
|
**Fixed**
|
|
1149
|
+
|
|
1049
1150
|
- Fix long header title and Error messages overflow [\#990](https://github.com/auth0/lock/pull/990) ([beneliflo](https://github.com/beneliflo))
|
|
1050
1151
|
- Fix grammar mistake RU [\#988](https://github.com/auth0/lock/pull/988) ([uladar](https://github.com/uladar))
|
|
1051
1152
|
|
|
1052
|
-
|
|
1053
1153
|
## [v10.15.1](https://github.com/auth0/lock/tree/v10.15.1) (2017-04-25)
|
|
1054
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v10.15.0...v10.15.1)
|
|
1055
1154
|
|
|
1155
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v10.15.0...v10.15.1)
|
|
1056
1156
|
|
|
1057
1157
|
**Fixed**
|
|
1058
|
-
- Moving dependencies to devDependencies [\#984](https://github.com/auth0/lock/pull/984) ([luisrudge](https://github.com/luisrudge))
|
|
1059
1158
|
|
|
1159
|
+
- Moving dependencies to devDependencies [\#984](https://github.com/auth0/lock/pull/984) ([luisrudge](https://github.com/luisrudge))
|
|
1060
1160
|
|
|
1061
1161
|
## [v10.15.0](https://github.com/auth0/lock/tree/v10.15.0) (2017-04-24)
|
|
1062
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v10.14.0...v10.15.0)
|
|
1063
1162
|
|
|
1163
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v10.14.0...v10.15.0)
|
|
1064
1164
|
|
|
1065
1165
|
**Added**
|
|
1166
|
+
|
|
1066
1167
|
- Add support for paypal-sandbox strategy [\#975](https://github.com/auth0/lock/pull/975) ([ziluvatar](https://github.com/ziluvatar))
|
|
1067
1168
|
|
|
1068
1169
|
**Changed**
|
|
1170
|
+
|
|
1069
1171
|
- Upgrade auth0-js to v8.6.0 [\#980](https://github.com/auth0/lock/pull/980) ([luisrudge](https://github.com/luisrudge))
|
|
1070
|
-
- Adding prettier and a precommit script to format the code :tada: :lipstick:
|
|
1172
|
+
- 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))
|
|
1071
1173
|
- Upgrading usage of prop-types to new package [\#971](https://github.com/auth0/lock/pull/971) ([luisrudge](https://github.com/luisrudge))
|
|
1072
1174
|
- Use replaceState for better browser history experience [\#967](https://github.com/auth0/lock/pull/967) ([selaux](https://github.com/selaux))
|
|
1073
1175
|
- Renaming internal `signOut` methods with `logout` to keep it consistent [\#966](https://github.com/auth0/lock/pull/966) ([luisrudge](https://github.com/luisrudge))
|
|
@@ -1075,23 +1177,27 @@ In the meantime, react@16 works just fine with this codebase. You'll just have t
|
|
|
1075
1177
|
- Adding `key` to the error "An error occurred when fetching data" [\#956](https://github.com/auth0/lock/pull/956) ([luisrudge](https://github.com/luisrudge))
|
|
1076
1178
|
|
|
1077
1179
|
**Fixed**
|
|
1180
|
+
|
|
1078
1181
|
- Fixed typo in cs.js [\#979](https://github.com/auth0/lock/pull/979) ([fersman](https://github.com/fersman))
|
|
1079
1182
|
- fixed propType misspell in header.jsx [\#973](https://github.com/auth0/lock/pull/973) ([nickpisacane](https://github.com/nickpisacane))
|
|
1080
1183
|
- Fixed scrolling on mobile in landscape mode [\#963](https://github.com/auth0/lock/pull/963) ([luisrudge](https://github.com/luisrudge))
|
|
1081
1184
|
|
|
1082
|
-
|
|
1083
1185
|
## [v10.14.0](https://github.com/auth0/lock/tree/v10.14.0) (2017-03-27)
|
|
1186
|
+
|
|
1084
1187
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.13.0...v10.14.0)
|
|
1085
1188
|
|
|
1086
1189
|
**Closed issues**
|
|
1190
|
+
|
|
1087
1191
|
- prefill option is lost after reset password [\#933](https://github.com/auth0/lock/issues/933)
|
|
1088
1192
|
|
|
1089
1193
|
**Added**
|
|
1194
|
+
|
|
1090
1195
|
- Throw an error when audience is used without oidcConformant flag [\#947](https://github.com/auth0/lock/pull/947) ([luisrudge](https://github.com/luisrudge))
|
|
1091
1196
|
- Added Finnish translation [\#936](https://github.com/auth0/lock/pull/936) ([kettunen](https://github.com/kettunen))
|
|
1092
1197
|
- Added Ukrainian translation [\#931](https://github.com/auth0/lock/pull/931) ([grsmv](https://github.com/grsmv))
|
|
1093
1198
|
|
|
1094
1199
|
**Changed**
|
|
1200
|
+
|
|
1095
1201
|
- Upgrade auth0js to v8.5.0 [\#952](https://github.com/auth0/lock/pull/952) ([luisrudge](https://github.com/luisrudge))
|
|
1096
1202
|
- Disable social buttons when terms were not accepted on sign up [\#949](https://github.com/auth0/lock/pull/949) ([luisrudge](https://github.com/luisrudge))
|
|
1097
1203
|
- Better explanation about the sso option [\#948](https://github.com/auth0/lock/pull/948) ([luisrudge](https://github.com/luisrudge))
|
|
@@ -1099,19 +1205,22 @@ In the meantime, react@16 works just fine with this codebase. You'll just have t
|
|
|
1099
1205
|
- Add support for success and error messages to be in HTML [\#928](https://github.com/auth0/lock/pull/928) ([luisrudge](https://github.com/luisrudge))
|
|
1100
1206
|
|
|
1101
1207
|
**Fixed**
|
|
1208
|
+
|
|
1102
1209
|
- Fixing Italian dictionary [\#950](https://github.com/auth0/lock/pull/950) ([ilmistra](https://github.com/ilmistra))
|
|
1103
1210
|
- Don't clear email field after reset password [\#945](https://github.com/auth0/lock/pull/945) ([luisrudge](https://github.com/luisrudge))
|
|
1104
1211
|
- Disable autoCorrect and spellCheck in the username input [\#927](https://github.com/auth0/lock/pull/927) ([luisrudge](https://github.com/luisrudge))
|
|
1105
1212
|
|
|
1106
|
-
|
|
1107
1213
|
## [v10.13.0](https://github.com/auth0/lock/tree/v10.13.0) (2017-03-13)
|
|
1214
|
+
|
|
1108
1215
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.12.3...v10.13.0)
|
|
1109
1216
|
|
|
1110
1217
|
**Closed issues**
|
|
1218
|
+
|
|
1111
1219
|
- State with `=`, `&` characters is incorrectly parsed from url fragment [\#913](https://github.com/auth0/lock/issues/913)
|
|
1112
1220
|
- Add support for Evernote strategy [\#895](https://github.com/auth0/lock/issues/895)
|
|
1113
1221
|
|
|
1114
1222
|
**Fixed**
|
|
1223
|
+
|
|
1115
1224
|
- Updated auth0 js version [\#924](https://github.com/auth0/lock/pull/924) ([hzalaz](https://github.com/hzalaz))
|
|
1116
1225
|
- Adds evernote social icon [\#923](https://github.com/auth0/lock/pull/923) ([vctrfrnndz](https://github.com/vctrfrnndz))
|
|
1117
1226
|
- Add japanese translation for "OR" [\#921](https://github.com/auth0/lock/pull/921) ([vctrfrnndz](https://github.com/vctrfrnndz))
|
|
@@ -1119,36 +1228,37 @@ In the meantime, react@16 works just fine with this codebase. You'll just have t
|
|
|
1119
1228
|
- Replace querystring implementation with qs module [\#916](https://github.com/auth0/lock/pull/916) ([elger](https://github.com/elger))
|
|
1120
1229
|
- 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))
|
|
1121
1230
|
|
|
1122
|
-
|
|
1123
1231
|
## [v10.12.3](https://github.com/auth0/lock/tree/v10.12.3) (2017-03-07)
|
|
1124
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v10.12.2...v10.12.3)
|
|
1125
1232
|
|
|
1233
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v10.12.2...v10.12.3)
|
|
1126
1234
|
|
|
1127
1235
|
**Fixed**
|
|
1236
|
+
|
|
1128
1237
|
- Update node engine restriction [\#909](https://github.com/auth0/lock/pull/909) ([hzalaz](https://github.com/hzalaz))
|
|
1129
1238
|
- Fixed Czech translation [\#902](https://github.com/auth0/lock/pull/902) ([FilipPyrek](https://github.com/FilipPyrek))
|
|
1130
1239
|
|
|
1131
|
-
|
|
1132
1240
|
## [v10.12.2](https://github.com/auth0/lock/tree/v10.12.2) (2017-03-03)
|
|
1133
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v10.12.1...v10.12.2)
|
|
1134
1241
|
|
|
1242
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v10.12.1...v10.12.2)
|
|
1135
1243
|
|
|
1136
1244
|
**Fixed**
|
|
1137
|
-
- Specify owp for non oidc web api in popup mode [\#897](https://github.com/auth0/lock/pull/897) ([hzalaz](https://github.com/hzalaz))
|
|
1138
1245
|
|
|
1246
|
+
- Specify owp for non oidc web api in popup mode [\#897](https://github.com/auth0/lock/pull/897) ([hzalaz](https://github.com/hzalaz))
|
|
1139
1247
|
|
|
1140
1248
|
## [v10.12.1](https://github.com/auth0/lock/tree/v10.12.1) (2017-03-03)
|
|
1141
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v10.12.0...v10.12.1)
|
|
1142
1249
|
|
|
1250
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v10.12.0...v10.12.1)
|
|
1143
1251
|
|
|
1144
1252
|
**Fixed**
|
|
1145
|
-
- Fixed npm transpiled code [\#893](https://github.com/auth0/lock/pull/893) ([hzalaz](https://github.com/hzalaz))
|
|
1146
1253
|
|
|
1254
|
+
- Fixed npm transpiled code [\#893](https://github.com/auth0/lock/pull/893) ([hzalaz](https://github.com/hzalaz))
|
|
1147
1255
|
|
|
1148
1256
|
## [v10.12.0](https://github.com/auth0/lock/tree/v10.12.0) (2017-03-02)
|
|
1257
|
+
|
|
1149
1258
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.11.0...v10.12.0)
|
|
1150
1259
|
|
|
1151
1260
|
**Closed issues**
|
|
1261
|
+
|
|
1152
1262
|
- Bug in email field validation [\#884](https://github.com/auth0/lock/issues/884)
|
|
1153
1263
|
- Input field tab issue in IE [\#870](https://github.com/auth0/lock/issues/870)
|
|
1154
1264
|
- Bring back the integratedWindowsLogin option [\#852](https://github.com/auth0/lock/issues/852)
|
|
@@ -1156,10 +1266,12 @@ In the meantime, react@16 works just fine with this codebase. You'll just have t
|
|
|
1156
1266
|
- Back button not displaying properly in IE 11 [\#767](https://github.com/auth0/lock/issues/767)
|
|
1157
1267
|
|
|
1158
1268
|
**Added**
|
|
1269
|
+
|
|
1159
1270
|
- Added checkbox CustomInput for additionalSignUpFields [\#860](https://github.com/auth0/lock/pull/860) ([dariobanfi](https://github.com/dariobanfi))
|
|
1160
1271
|
- Add slovak translation [\#846](https://github.com/auth0/lock/pull/846) ([Passto](https://github.com/Passto))
|
|
1161
1272
|
|
|
1162
1273
|
**Changed**
|
|
1274
|
+
|
|
1163
1275
|
- Update password sheriff to reduce bundle size [\#879](https://github.com/auth0/lock/pull/879) ([hzalaz](https://github.com/hzalaz))
|
|
1164
1276
|
- Adding focusable=false to all svgs [\#873](https://github.com/auth0/lock/pull/873) ([luisrudge](https://github.com/luisrudge))
|
|
1165
1277
|
- Migrating to webpack2 [\#871](https://github.com/auth0/lock/pull/871) ([luisrudge](https://github.com/luisrudge))
|
|
@@ -1169,116 +1281,133 @@ In the meantime, react@16 works just fine with this codebase. You'll just have t
|
|
|
1169
1281
|
- Kerberos network checking no longer depends on rememberLastLogin [\#805](https://github.com/auth0/lock/pull/805) ([patrickmcgraw](https://github.com/patrickmcgraw))
|
|
1170
1282
|
|
|
1171
1283
|
**Fixed**
|
|
1284
|
+
|
|
1172
1285
|
- Updated auth0.js to v8.3.0 [\#889](https://github.com/auth0/lock/pull/889) ([hzalaz](https://github.com/hzalaz))
|
|
1173
1286
|
- Fix issue when submiting a form with no email [\#886](https://github.com/auth0/lock/pull/886) ([selaux](https://github.com/selaux))
|
|
1174
1287
|
- Fixing allowSignup and allowForgot options when loading tenant info [\#877](https://github.com/auth0/lock/pull/877) ([luisrudge](https://github.com/luisrudge))
|
|
1175
|
-
-
|
|
1288
|
+
- Don't disable mfa-code input [\#872](https://github.com/auth0/lock/pull/872) ([nikolaseu](https://github.com/nikolaseu))
|
|
1176
1289
|
- 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))
|
|
1177
1290
|
- Cleaning params sent to auth0js [\#863](https://github.com/auth0/lock/pull/863) ([luisrudge](https://github.com/luisrudge))
|
|
1178
1291
|
- Only set prefill values when application is initialized [\#855](https://github.com/auth0/lock/pull/855) ([luisrudge](https://github.com/luisrudge))
|
|
1179
1292
|
|
|
1180
|
-
|
|
1181
1293
|
## [v10.11.0](https://github.com/auth0/lock/tree/v10.11.0) (2017-01-30)
|
|
1294
|
+
|
|
1182
1295
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.10.2...v10.11.0)
|
|
1183
1296
|
|
|
1184
1297
|
**Closed issues**
|
|
1298
|
+
|
|
1185
1299
|
- Input error state does not get reset when changing page [\#843](https://github.com/auth0/lock/issues/843)
|
|
1186
1300
|
- Show error when the domain part of the email does not match any enterprise connection [\#661](https://github.com/auth0/lock/issues/661)
|
|
1187
1301
|
|
|
1188
1302
|
**Added**
|
|
1303
|
+
|
|
1189
1304
|
- inject cordova plugin and force popup/sso in cordova or electron [\#835](https://github.com/auth0/lock/pull/835) ([glena](https://github.com/glena))
|
|
1190
1305
|
- Japanese translation [\#834](https://github.com/auth0/lock/pull/834) ([stevensacks](https://github.com/stevensacks))
|
|
1191
1306
|
- 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))
|
|
1192
1307
|
|
|
1193
1308
|
**Changed**
|
|
1309
|
+
|
|
1194
1310
|
- Clear invalid fields on screen change [\#844](https://github.com/auth0/lock/pull/844) ([glena](https://github.com/glena))
|
|
1195
1311
|
- Bump the babel-preset-2015 version [\#838](https://github.com/auth0/lock/pull/838) ([iamkevingreen](https://github.com/iamkevingreen))
|
|
1196
1312
|
|
|
1197
|
-
|
|
1198
1313
|
## [v10.10.2](https://github.com/auth0/lock/tree/v10.10.2) (2017-01-23)
|
|
1199
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v10.10.1...v10.10.2)
|
|
1200
1314
|
|
|
1315
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v10.10.1...v10.10.2)
|
|
1201
1316
|
|
|
1202
1317
|
**Fixed**
|
|
1318
|
+
|
|
1203
1319
|
- Fix casing of null in IE (bumping auth0.js version) [\#827](https://github.com/auth0/lock/pull/827) ([glena](https://github.com/glena))
|
|
1204
1320
|
- Fix ES translations [\#826](https://github.com/auth0/lock/pull/826) ([perpifran](https://github.com/perpifran))
|
|
1205
1321
|
- Translated term mfaLoginTitle into Dutch [\#820](https://github.com/auth0/lock/pull/820) ([dctoon](https://github.com/dctoon))
|
|
1206
1322
|
- 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))
|
|
1207
1323
|
|
|
1208
|
-
|
|
1209
1324
|
## [v10.10.1](https://github.com/auth0/lock/tree/v10.10.1) (2017-01-19)
|
|
1210
|
-
[Full Changelog](https://github.com/auth0/lock/compare/v10.10.0...v10.10.1)
|
|
1211
1325
|
|
|
1326
|
+
[Full Changelog](https://github.com/auth0/lock/compare/v10.10.0...v10.10.1)
|
|
1212
1327
|
|
|
1213
1328
|
**Changed**
|
|
1214
|
-
- Bump auth0.js to 8.1.2 [\#821](https://github.com/auth0/lock/pull/821) ([glena](https://github.com/glena))
|
|
1215
1329
|
|
|
1330
|
+
- Bump auth0.js to 8.1.2 [\#821](https://github.com/auth0/lock/pull/821) ([glena](https://github.com/glena))
|
|
1216
1331
|
|
|
1217
1332
|
## [v10.10.0](https://github.com/auth0/lock/tree/v10.10.0) (2017-01-17)
|
|
1333
|
+
|
|
1218
1334
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.9.2...v10.10.0)
|
|
1219
1335
|
|
|
1220
1336
|
**Closed issues**
|
|
1337
|
+
|
|
1221
1338
|
- Lock v10.9.2 fails on IE 10 Windows 7 [\#801](https://github.com/auth0/lock/issues/801)
|
|
1222
1339
|
|
|
1223
1340
|
**Added**
|
|
1341
|
+
|
|
1224
1342
|
- Add resumeAuth method and autoParseHash flag [\#790](https://github.com/auth0/lock/pull/790) ([luisrudge](https://github.com/luisrudge))
|
|
1225
1343
|
- Hide first screen title option [\#745](https://github.com/auth0/lock/pull/745) ([glena](https://github.com/glena))
|
|
1226
1344
|
|
|
1227
1345
|
**Changed**
|
|
1346
|
+
|
|
1228
1347
|
- Update zh.js [\#774](https://github.com/auth0/lock/pull/774) ([leplay](https://github.com/leplay))
|
|
1229
1348
|
|
|
1230
1349
|
**Fixed**
|
|
1350
|
+
|
|
1231
1351
|
- Fix: popup does not close when signup fails [\#810](https://github.com/auth0/lock/pull/810) ([glena](https://github.com/glena))
|
|
1232
1352
|
- removes scope openid warning in OIDC conformant mode. fix #780 [\#803](https://github.com/auth0/lock/pull/803) ([luisrudge](https://github.com/luisrudge))
|
|
1233
1353
|
- Clearing fields when lock closes [\#802](https://github.com/auth0/lock/pull/802) ([luisrudge](https://github.com/luisrudge))
|
|
1234
1354
|
- Fix redirect/popup login when shown in the hosted login page [\#799](https://github.com/auth0/lock/pull/799) ([glena](https://github.com/glena))
|
|
1235
1355
|
|
|
1236
1356
|
**Breaking changes**
|
|
1357
|
+
|
|
1237
1358
|
- 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))
|
|
1238
1359
|
|
|
1239
1360
|
In 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.
|
|
1240
1361
|
|
|
1241
1362
|
## [v10.9.2](https://github.com/auth0/lock/tree/v10.9.2) (2017-01-11)
|
|
1363
|
+
|
|
1242
1364
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.9.1...v10.9.2)
|
|
1243
1365
|
|
|
1244
1366
|
**Fixed**
|
|
1367
|
+
|
|
1245
1368
|
- Bring back support for get profile in default mode [\#794](https://github.com/auth0/lock/pull/794) ([glena](https://github.com/glena))
|
|
1246
1369
|
- Don't emit error when registering for event 'signin ready' [\#784](https://github.com/auth0/lock/pull/784) ([theopak](https://github.com/theopak))
|
|
1247
1370
|
|
|
1248
|
-
|
|
1249
1371
|
## [v10.9.1](https://github.com/auth0/lock/tree/v10.9.1) (2017-01-10)
|
|
1372
|
+
|
|
1250
1373
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.9.0...v10.9.1)
|
|
1251
1374
|
|
|
1252
1375
|
**Fixed**
|
|
1376
|
+
|
|
1253
1377
|
- Fix to comply legacy behaviour [\#787](https://github.com/auth0/lock/pull/787) ([glena](https://github.com/glena))
|
|
1254
1378
|
- For legacy flow, the scope should default to openid [\#783](https://github.com/auth0/lock/pull/783) ([glena](https://github.com/glena))
|
|
1255
1379
|
|
|
1256
|
-
|
|
1257
1380
|
## [v10.9.0](https://github.com/auth0/lock/tree/v10.9.0) (2017-01-09)
|
|
1381
|
+
|
|
1258
1382
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.8.0-beta.5...v10.9.0)
|
|
1259
1383
|
|
|
1260
1384
|
**Added**
|
|
1385
|
+
|
|
1261
1386
|
- Migrate to auth0.js v8 [\#744](https://github.com/auth0/lock/pull/744) ([glena](https://github.com/glena))
|
|
1262
1387
|
|
|
1263
1388
|
**Changed**
|
|
1389
|
+
|
|
1264
1390
|
- Removed browserify as dependency and removed process usage [\#779](https://github.com/auth0/lock/pull/779) ([glena](https://github.com/glena))
|
|
1265
1391
|
- Auth0js v8 - configuration validation + default scope [\#775](https://github.com/auth0/lock/pull/775) ([glena](https://github.com/glena))
|
|
1266
1392
|
|
|
1267
|
-
|
|
1268
1393
|
## [v10.8.1](https://github.com/auth0/lock/tree/v10.8.1) (2017-01-03)
|
|
1394
|
+
|
|
1269
1395
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.8.0...v10.8.1)
|
|
1270
1396
|
|
|
1271
1397
|
**Closed issues**
|
|
1398
|
+
|
|
1272
1399
|
- username/password login doesn't work with custom domains on the appliance [\#772](https://github.com/auth0/lock/issues/772)
|
|
1273
1400
|
|
|
1274
1401
|
**Fixed**
|
|
1275
|
-
- allow to override tenant + issuer and pass to auth0.js [\#773](https://github.com/auth0/lock/pull/773) ([glena](https://github.com/glena))
|
|
1276
1402
|
|
|
1403
|
+
- allow to override tenant + issuer and pass to auth0.js [\#773](https://github.com/auth0/lock/pull/773) ([glena](https://github.com/glena))
|
|
1277
1404
|
|
|
1278
1405
|
## [v10.8.0](https://github.com/auth0/lock/tree/v10.8.0) (2017-01-02)
|
|
1406
|
+
|
|
1279
1407
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.7.3...v10.8.0)
|
|
1280
1408
|
|
|
1281
1409
|
**Closed issues**
|
|
1410
|
+
|
|
1282
1411
|
- Request to add user-facing error message. [\#751](https://github.com/auth0/lock/issues/751)
|
|
1283
1412
|
- Please throw an error for invalid events [\#748](https://github.com/auth0/lock/issues/748)
|
|
1284
1413
|
- Old errors shown when reopening Lock [\#739](https://github.com/auth0/lock/issues/739)
|
|
@@ -1287,6 +1416,7 @@ In lock v10.9 we introduced an issue in auth0.js that changed the casing of the
|
|
|
1287
1416
|
- [v10] Enterprise connections don't strip domain from email [\#543](https://github.com/auth0/lock/issues/543)
|
|
1288
1417
|
|
|
1289
1418
|
**Added**
|
|
1419
|
+
|
|
1290
1420
|
- Allow to override socialButtonStyle on show [\#766](https://github.com/auth0/lock/pull/766) ([glena](https://github.com/glena))
|
|
1291
1421
|
- Added new error code: session_missing [\#760](https://github.com/auth0/lock/pull/760) ([glena](https://github.com/glena))
|
|
1292
1422
|
- 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))
|
|
@@ -1295,95 +1425,118 @@ In lock v10.9 we introduced an issue in auth0.js that changed the casing of the
|
|
|
1295
1425
|
- Create fa.js [\#752](https://github.com/auth0/lock/pull/752) ([doroudi](https://github.com/doroudi))
|
|
1296
1426
|
|
|
1297
1427
|
**Changed**
|
|
1428
|
+
|
|
1298
1429
|
- Hide errors after close lock [\#761](https://github.com/auth0/lock/pull/761) ([glena](https://github.com/glena))
|
|
1299
1430
|
|
|
1300
1431
|
**Fixed**
|
|
1432
|
+
|
|
1301
1433
|
- removed whitespace from input name [\#764](https://github.com/auth0/lock/pull/764) ([dangler](https://github.com/dangler))
|
|
1302
1434
|
- fixed typo [\#762](https://github.com/auth0/lock/pull/762) ([dev101](https://github.com/dev101))
|
|
1303
1435
|
|
|
1304
|
-
|
|
1305
1436
|
## [v10.7.3](https://github.com/auth0/lock/tree/v10.7.3) (2016-12-19)
|
|
1437
|
+
|
|
1306
1438
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.7.2...v10.7.3)
|
|
1307
1439
|
|
|
1308
1440
|
**Fixed**
|
|
1441
|
+
|
|
1309
1442
|
- Shorten Russian signUpLabel to fit into the widget width [\#743](https://github.com/auth0/lock/pull/743) ([cyxou](https://github.com/cyxou))
|
|
1310
1443
|
|
|
1311
1444
|
## [v10.7.2](https://github.com/auth0/lock/tree/v10.7.2) (2016-12-01)
|
|
1445
|
+
|
|
1312
1446
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.7.1...v10.7.2)
|
|
1313
1447
|
|
|
1314
1448
|
**Fixed**
|
|
1449
|
+
|
|
1315
1450
|
- Fix how the tenant and application info url is build to avoid format issues [\#740](https://github.com/auth0/lock/pull/740) ([glena](https://github.com/glena))
|
|
1316
1451
|
- Fix: Single saml connection with no domain shows undefined in button [\#738](https://github.com/auth0/lock/pull/738) ([glena](https://github.com/glena))
|
|
1317
1452
|
|
|
1318
1453
|
## [v10.7.1](https://github.com/auth0/lock/tree/v10.7.1) (2016-11-25)
|
|
1454
|
+
|
|
1319
1455
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.7.0...v10.7.1)
|
|
1320
1456
|
|
|
1321
1457
|
**Fixed**
|
|
1458
|
+
|
|
1322
1459
|
- fix options override on show [\#732](https://github.com/auth0/lock/pull/732) ([glena](https://github.com/glena))
|
|
1323
1460
|
- One questionmark is enough [\#731](https://github.com/auth0/lock/pull/731) ([retorquere](https://github.com/retorquere))
|
|
1324
1461
|
|
|
1325
1462
|
## [v10.7.0](https://github.com/auth0/lock/tree/v10.7.0) (2016-11-22)
|
|
1463
|
+
|
|
1326
1464
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.6.1...v10.7.0)
|
|
1327
1465
|
|
|
1328
1466
|
**Added**
|
|
1467
|
+
|
|
1329
1468
|
- Add missing Norwegian translations [\#721](https://github.com/auth0/lock/pull/721) ([francisrath](https://github.com/francisrath))
|
|
1330
1469
|
|
|
1331
1470
|
**Changed**
|
|
1471
|
+
|
|
1332
1472
|
- Update auth0.js to v7.5.0 [\#730](https://github.com/auth0/lock/pull/730) ([hzalaz](https://github.com/hzalaz))
|
|
1333
1473
|
- "Email" type for email input [\#724](https://github.com/auth0/lock/pull/724) ([glena](https://github.com/glena))
|
|
1334
1474
|
- Enterprise: force username for AD connections [\#714](https://github.com/auth0/lock/pull/714) ([glena](https://github.com/glena))
|
|
1335
1475
|
|
|
1336
1476
|
**Deprecated**
|
|
1477
|
+
|
|
1337
1478
|
- Deprecated getProfile and added getUserInfo instead [\#726](https://github.com/auth0/lock/pull/726) ([glena](https://github.com/glena))
|
|
1338
1479
|
|
|
1339
1480
|
## [v10.6.1](https://github.com/auth0/lock/tree/v10.6.1) (2016-11-09)
|
|
1481
|
+
|
|
1340
1482
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.6.0...v10.6.1)
|
|
1341
1483
|
|
|
1342
1484
|
**Fixed**
|
|
1485
|
+
|
|
1343
1486
|
- Removed UMD bundling and using browser only [\#709](https://github.com/auth0/lock/pull/709) ([glena](https://github.com/glena))
|
|
1344
1487
|
|
|
1345
1488
|
## [v10.6.0](https://github.com/auth0/lock/tree/v10.6.0) (2016-11-07)
|
|
1489
|
+
|
|
1346
1490
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.5.1...v10.6.0)
|
|
1347
1491
|
|
|
1348
1492
|
**Changed**
|
|
1493
|
+
|
|
1349
1494
|
- Update auth0.js to 7.4.0 [\#705](https://github.com/auth0/lock/pull/705) ([hzalaz](https://github.com/hzalaz))
|
|
1350
1495
|
- 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))
|
|
1351
1496
|
- Webpack for bundling [\#663](https://github.com/auth0/lock/pull/663) ([glena](https://github.com/glena))
|
|
1352
1497
|
|
|
1353
1498
|
**Fixed**
|
|
1499
|
+
|
|
1354
1500
|
- Disable passwordless connections for SSO [\#691](https://github.com/auth0/lock/pull/691) ([glena](https://github.com/glena))
|
|
1355
1501
|
|
|
1356
1502
|
## [v10.5.1](https://github.com/auth0/lock/tree/v10.5.1) (2016-10-28)
|
|
1503
|
+
|
|
1357
1504
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.5.0...v10.5.1)
|
|
1358
1505
|
|
|
1359
1506
|
**Closed issues**
|
|
1507
|
+
|
|
1360
1508
|
- [Lock 10.5.0] Prefill fails when using username [\#685](https://github.com/auth0/lock/issues/685)
|
|
1361
1509
|
- [Lock 10.5.0] "TypeError: next is not a function" when closing social connection popup [\#682](https://github.com/auth0/lock/issues/682)
|
|
1362
1510
|
|
|
1363
1511
|
**Fixed**
|
|
1512
|
+
|
|
1364
1513
|
- Disabled username verification for prefill [\#686](https://github.com/auth0/lock/pull/686) ([glena](https://github.com/glena))
|
|
1365
1514
|
- 'TypeError: next is not a function' when closing social connection popup [\#684](https://github.com/auth0/lock/pull/684) ([glena](https://github.com/glena))
|
|
1366
1515
|
- Fix focus visual feedback in email and username inputs [\#681](https://github.com/auth0/lock/pull/681) ([gnandretta](https://github.com/gnandretta))
|
|
1367
1516
|
|
|
1368
1517
|
## [v10.5.0](https://github.com/auth0/lock/tree/v10.5.0) (2016-10-24)
|
|
1518
|
+
|
|
1369
1519
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.4.1...v10.5.0)
|
|
1370
1520
|
|
|
1371
1521
|
**Closed issues**
|
|
1372
|
-
|
|
1522
|
+
|
|
1523
|
+
- [v10.4.0] Cannot read property 'get' of undefined. [\#658](https://github.com/auth0/lock/issues/658)
|
|
1373
1524
|
- Lock not showing rule errors in redirect mode [\#637](https://github.com/auth0/lock/issues/637)
|
|
1374
1525
|
- Single AD connection without domain shows undefined in message [\#627](https://github.com/auth0/lock/issues/627)
|
|
1375
1526
|
- Issues with Overlay mode + signUpLink setting on a SPA [\#619](https://github.com/auth0/lock/issues/619)
|
|
1376
1527
|
- [UX] Password field shouldn't show error message immediately (on focus). [\#540](https://github.com/auth0/lock/issues/540)
|
|
1377
1528
|
|
|
1378
1529
|
**Added**
|
|
1530
|
+
|
|
1379
1531
|
- Create vi.js in /src/i18n [\#662](https://github.com/auth0/lock/pull/662) ([IoHL](https://github.com/IoHL))
|
|
1380
1532
|
- Added support for custom oauth2 connections [\#648](https://github.com/auth0/lock/pull/648) ([glena](https://github.com/glena))
|
|
1381
1533
|
- Create ca.js [\#645](https://github.com/auth0/lock/pull/645) ([alexandresaiz](https://github.com/alexandresaiz))
|
|
1382
1534
|
- Support connectionScopes for oauth2 connections [\#643](https://github.com/auth0/lock/pull/643) ([glena](https://github.com/glena))
|
|
1383
1535
|
- Allow to display a flash message on lock.show [\#639](https://github.com/auth0/lock/pull/639) ([glena](https://github.com/glena))
|
|
1384
|
-
- MFA when using
|
|
1536
|
+
- MFA when using oauth/ro endpoint [\#628](https://github.com/auth0/lock/pull/628) ([dafortune](https://github.com/dafortune))
|
|
1385
1537
|
|
|
1386
1538
|
**Changed**
|
|
1539
|
+
|
|
1387
1540
|
- Password field shouldn't show error message immediately (on focus) [\#668](https://github.com/auth0/lock/pull/668) ([glena](https://github.com/glena))
|
|
1388
1541
|
- Update auth0.js to latest [\#665](https://github.com/auth0/lock/pull/665) ([hzalaz](https://github.com/hzalaz))
|
|
1389
1542
|
- Added default values to the dictionary and warn about missing keys [\#651](https://github.com/auth0/lock/pull/651) ([glena](https://github.com/glena))
|
|
@@ -1392,6 +1545,7 @@ In lock v10.9 we introduced an issue in auth0.js that changed the casing of the
|
|
|
1392
1545
|
- Update uglify task to generate sourcemaps [\#638](https://github.com/auth0/lock/pull/638) ([cristiandouce](https://github.com/cristiandouce))
|
|
1393
1546
|
|
|
1394
1547
|
**Fixed**
|
|
1548
|
+
|
|
1395
1549
|
- Fix [v10.4.0] Cannot read property 'get' of undefined. #658 [\#660](https://github.com/auth0/lock/pull/660) ([glena](https://github.com/glena))
|
|
1396
1550
|
- Changed to regular spaces. [\#653](https://github.com/auth0/lock/pull/653) ([nicosabena](https://github.com/nicosabena))
|
|
1397
1551
|
- Single AD connection without domain shows undefined in message [\#642](https://github.com/auth0/lock/pull/642) ([glena](https://github.com/glena))
|
|
@@ -1400,28 +1554,36 @@ In lock v10.9 we introduced an issue in auth0.js that changed the casing of the
|
|
|
1400
1554
|
- 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))
|
|
1401
1555
|
|
|
1402
1556
|
## [v10.4.1](https://github.com/auth0/lock/tree/v10.4.0) (2016-10-21)
|
|
1557
|
+
|
|
1403
1558
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.4.0...v10.4.1)
|
|
1404
1559
|
|
|
1405
1560
|
**Changed**
|
|
1561
|
+
|
|
1406
1562
|
- Update auth0.js to v7.3.0
|
|
1407
1563
|
|
|
1408
1564
|
## [v10.4.0](https://github.com/auth0/lock/tree/v10.4.0) (2016-09-27)
|
|
1565
|
+
|
|
1409
1566
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.3.0...v10.4.0)
|
|
1410
1567
|
|
|
1411
1568
|
**Closed issues**
|
|
1569
|
+
|
|
1412
1570
|
- theme.logo regression in 10.3.0 [\#617](https://github.com/auth0/lock/issues/617)
|
|
1413
1571
|
|
|
1414
1572
|
**Changed**
|
|
1573
|
+
|
|
1415
1574
|
- Update auth0.js version to v7.2.1 [\#621](https://github.com/auth0/lock/pull/621) ([hzalaz](https://github.com/hzalaz))
|
|
1416
1575
|
|
|
1417
1576
|
**Fixed**
|
|
1577
|
+
|
|
1418
1578
|
- Fix bad reference for unrecoverable_error event emitter [\#625](https://github.com/auth0/lock/pull/625) ([cristiandouce](https://github.com/cristiandouce))
|
|
1419
1579
|
- Fixes for 10.3.0 regression [\#618](https://github.com/auth0/lock/pull/618) ([doapp-ryanp](https://github.com/doapp-ryanp))
|
|
1420
1580
|
|
|
1421
1581
|
## [v10.3.0](https://github.com/auth0/lock/tree/v10.3.0) (2016-09-19)
|
|
1582
|
+
|
|
1422
1583
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.2.2...v10.3.0)
|
|
1423
1584
|
|
|
1424
1585
|
**Closed issues:**
|
|
1586
|
+
|
|
1425
1587
|
- v10: KerberosScreen failing on internal Network [\#590](https://github.com/auth0/lock/issues/590)
|
|
1426
1588
|
- Languages not available on cdn.eu.auth0.com [\#576](https://github.com/auth0/lock/issues/576)
|
|
1427
1589
|
- The lock v10 with ionic2 page can not scroll. [\#532](https://github.com/auth0/lock/issues/532)
|
|
@@ -1430,6 +1592,7 @@ In lock v10.9 we introduced an issue in auth0.js that changed the casing of the
|
|
|
1430
1592
|
- White space on bottom when running/simulating on mobile device [\#376](https://github.com/auth0/lock/issues/376)
|
|
1431
1593
|
|
|
1432
1594
|
**Fixed:**
|
|
1595
|
+
|
|
1433
1596
|
- Bump blueimp-md5@2.3.1 [\#613](https://github.com/auth0/lock/pull/613) ([cristiandouce](https://github.com/cristiandouce))
|
|
1434
1597
|
- Handle uncaught unrecoverable_error [\#609](https://github.com/auth0/lock/pull/609) ([eddiezane](https://github.com/eddiezane))
|
|
1435
1598
|
- fixed loading unaligned with label submit [\#606](https://github.com/auth0/lock/pull/606) ([beneliflo](https://github.com/beneliflo))
|
|
@@ -1439,6 +1602,7 @@ In lock v10.9 we introduced an issue in auth0.js that changed the casing of the
|
|
|
1439
1602
|
- fixed ionic page scroll [\#591](https://github.com/auth0/lock/pull/591) ([beneliflo](https://github.com/beneliflo))
|
|
1440
1603
|
|
|
1441
1604
|
**Added:**
|
|
1605
|
+
|
|
1442
1606
|
- Add min/max username validation from application info settings [\#611](https://github.com/auth0/lock/pull/611) ([cristiandouce](https://github.com/cristiandouce))
|
|
1443
1607
|
- Introduce clientBaseUrl and languageBaseUrl options to deprecate assetsUrl [\#601](https://github.com/auth0/lock/pull/601) ([cristiandouce](https://github.com/cristiandouce))
|
|
1444
1608
|
- Added Hungarian translations [\#599](https://github.com/auth0/lock/pull/599) ([nagyv](https://github.com/nagyv))
|
|
@@ -1446,6 +1610,7 @@ In lock v10.9 we introduced an issue in auth0.js that changed the casing of the
|
|
|
1446
1610
|
- Added Swedish (sv) translation. [\#593](https://github.com/auth0/lock/pull/593) ([kuljaninemir](https://github.com/kuljaninemir))
|
|
1447
1611
|
|
|
1448
1612
|
**Changed:**
|
|
1613
|
+
|
|
1449
1614
|
- use ReactCSSTransitionGroup for global messages [\#595](https://github.com/auth0/lock/pull/595) ([robbiewxyz](https://github.com/robbiewxyz))
|
|
1450
1615
|
|
|
1451
1616
|
**Deprecation notice:**
|
|
@@ -1458,6 +1623,7 @@ This version introduces `languageBaseUrl` and `clientBaseUrl` in replacement of
|
|
|
1458
1623
|
- If `assetsUrl` is provided, keep the current behavior: fetch application from `${assetsUrl}/client/${clientID}.js` and languages from `{assetsUrl}/js/lock/${lockVersion}/${language}.js`.
|
|
1459
1624
|
|
|
1460
1625
|
## [v10.2.3](https://github.com/auth0/lock/tree/v10.2.3) (2016-10-21)
|
|
1626
|
+
|
|
1461
1627
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.2.2...v10.2.3)
|
|
1462
1628
|
|
|
1463
1629
|
### Changed
|
|
@@ -1465,6 +1631,7 @@ This version introduces `languageBaseUrl` and `clientBaseUrl` in replacement of
|
|
|
1465
1631
|
- Use auth0.js version 7.3.0
|
|
1466
1632
|
|
|
1467
1633
|
## [v10.2.2](https://github.com/auth0/lock/tree/v10.2.2) (2016-08-31)
|
|
1634
|
+
|
|
1468
1635
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.2.1...v10.2.2)
|
|
1469
1636
|
|
|
1470
1637
|
### Fixed
|
|
@@ -1476,6 +1643,7 @@ This version introduces `languageBaseUrl` and `clientBaseUrl` in replacement of
|
|
|
1476
1643
|
- Change the default value for hash in WebApi.parseHash() internal method (#587)
|
|
1477
1644
|
|
|
1478
1645
|
## [v10.2.1](https://github.com/auth0/lock/tree/v10.2.1) (2016-08-18)
|
|
1646
|
+
|
|
1479
1647
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.2.0...v10.2.1)
|
|
1480
1648
|
|
|
1481
1649
|
### Fixed
|
|
@@ -1483,6 +1651,7 @@ This version introduces `languageBaseUrl` and `clientBaseUrl` in replacement of
|
|
|
1483
1651
|
- Allow dots in HRD username and clear errors before leaving the HRD screen (#574)
|
|
1484
1652
|
|
|
1485
1653
|
## [v10.2.0](https://github.com/auth0/lock/tree/v10.2.0) (2016-08-18)
|
|
1654
|
+
|
|
1486
1655
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.1.0...v10.2.0)
|
|
1487
1656
|
|
|
1488
1657
|
### Changed
|
|
@@ -1504,6 +1673,7 @@ This version introduces `languageBaseUrl` and `clientBaseUrl` in replacement of
|
|
|
1504
1673
|
- Add `nb` translation (#560)
|
|
1505
1674
|
|
|
1506
1675
|
## [v10.1.0](https://github.com/auth0/lock/tree/v10.1.0) (2016-08-09)
|
|
1676
|
+
|
|
1507
1677
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.0.2...v10.1.0)
|
|
1508
1678
|
|
|
1509
1679
|
### Added
|
|
@@ -1511,6 +1681,7 @@ This version introduces `languageBaseUrl` and `clientBaseUrl` in replacement of
|
|
|
1511
1681
|
- Add `de` translation (#546)
|
|
1512
1682
|
|
|
1513
1683
|
## [v10.0.2](https://github.com/auth0/lock/tree/v10.0.2) (2016-08-05)
|
|
1684
|
+
|
|
1514
1685
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.0.1...v10.0.2)
|
|
1515
1686
|
|
|
1516
1687
|
### Fixed
|
|
@@ -1521,6 +1692,7 @@ This version introduces `languageBaseUrl` and `clientBaseUrl` in replacement of
|
|
|
1521
1692
|
- Fix email input in IE 10 (#537)
|
|
1522
1693
|
|
|
1523
1694
|
## [v10.0.1](https://github.com/auth0/lock/tree/v10.0.1) (2016-07-27)
|
|
1695
|
+
|
|
1524
1696
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.0.0...v10.0.1)
|
|
1525
1697
|
|
|
1526
1698
|
### Fixed
|
|
@@ -1530,6 +1702,7 @@ This version introduces `languageBaseUrl` and `clientBaseUrl` in replacement of
|
|
|
1530
1702
|
- Ensure header styling looks fine in IE (#507)
|
|
1531
1703
|
|
|
1532
1704
|
## [v10.0.0](https://github.com/auth0/lock/tree/v10.0.0) (2016-07-20)
|
|
1705
|
+
|
|
1533
1706
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.0.0-rc.2...v10.0.0)
|
|
1534
1707
|
|
|
1535
1708
|
### Changed
|
|
@@ -1546,6 +1719,7 @@ This version introduces `languageBaseUrl` and `clientBaseUrl` in replacement of
|
|
|
1546
1719
|
- Handle the new variants of password policy errors during sign up.
|
|
1547
1720
|
|
|
1548
1721
|
## [v10.0.0-rc.2](https://github.com/auth0/lock/tree/v10.0.0-rc.2) (2016-07-05)
|
|
1722
|
+
|
|
1549
1723
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.0.0-rc.1...v10.0.0-rc.2)
|
|
1550
1724
|
|
|
1551
1725
|
### Fixed
|
|
@@ -1561,6 +1735,7 @@ This version introduces `languageBaseUrl` and `clientBaseUrl` in replacement of
|
|
|
1561
1735
|
specify a hint that will be displayed when the field is invalid.
|
|
1562
1736
|
|
|
1563
1737
|
## [v10.0.0-rc.1](https://github.com/auth0/lock/tree/v10.0.0-rc.1) (2016-06-22)
|
|
1738
|
+
|
|
1564
1739
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.0.0-beta.5...v10.0.0-rc.1)d
|
|
1565
1740
|
|
|
1566
1741
|
### Change
|
|
@@ -1568,6 +1743,7 @@ This version introduces `languageBaseUrl` and `clientBaseUrl` in replacement of
|
|
|
1568
1743
|
- Show Auth0 badge in the bottom only for free plans.
|
|
1569
1744
|
|
|
1570
1745
|
## [v10.0.0-beta.5](https://github.com/auth0/lock/tree/v10.0.0-beta.5) (2016-06-21)
|
|
1746
|
+
|
|
1571
1747
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.0.0-beta.4...v10.0.0-beta.5)
|
|
1572
1748
|
|
|
1573
1749
|
### Fixed
|
|
@@ -1595,12 +1771,13 @@ This version introduces `languageBaseUrl` and `clientBaseUrl` in replacement of
|
|
|
1595
1771
|
the authentication result as the only argument.
|
|
1596
1772
|
- `authorization_error`: emitted when authorization fails. Has the
|
|
1597
1773
|
error as the only argument.
|
|
1598
|
-
|
|
1599
|
-
|
|
1774
|
+
Note the `authenticated` and `authorization_error` events replace
|
|
1775
|
+
the callback in the constructor.
|
|
1600
1776
|
- Display a tooltip on invalid inputs with a hint on how to fix the
|
|
1601
1777
|
error.
|
|
1602
1778
|
|
|
1603
1779
|
## [v10.0.0-beta.4](https://github.com/auth0/lock/tree/v10.0.0-beta.4) (2016-05-17)
|
|
1780
|
+
|
|
1604
1781
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.0.0-beta.3...v10.0.0-beta.4)
|
|
1605
1782
|
|
|
1606
1783
|
### Fixed
|
|
@@ -1619,6 +1796,7 @@ This version introduces `languageBaseUrl` and `clientBaseUrl` in replacement of
|
|
|
1619
1796
|
list of options.
|
|
1620
1797
|
|
|
1621
1798
|
## [v10.0.0-beta.3](https://github.com/auth0/lock/tree/v10.0.0-beta.3) (2016-05-10)
|
|
1799
|
+
|
|
1622
1800
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.0.0-beta.2...v10.0.0-beta.3)
|
|
1623
1801
|
|
|
1624
1802
|
### Fixed
|
|
@@ -1633,6 +1811,7 @@ This version introduces `languageBaseUrl` and `clientBaseUrl` in replacement of
|
|
|
1633
1811
|
username.
|
|
1634
1812
|
|
|
1635
1813
|
## [v10.0.0-beta.2](https://github.com/auth0/lock/tree/v10.0.0-beta.2) (2016-04-25)
|
|
1814
|
+
|
|
1636
1815
|
[Full Changelog](https://github.com/auth0/lock/compare/v10.0.0-beta.1...v10.0.0-beta.2)
|
|
1637
1816
|
|
|
1638
1817
|
### Fixed
|