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