Skip to content

Commit 49e517d

Browse files
author
Steve Hobbs
authored
Release 11.33.0 (#2116)
1 parent 79ae557 commit 49e517d

File tree

7 files changed

+3279
-3208
lines changed

7 files changed

+3279
-3208
lines changed

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,67 @@
11
# Change Log
22

3+
## [v11.33.0](https://github.com/auth0/lock/tree/v11.33.0) (2022-05-05)
4+
5+
[Full Changelog](https://github.com/auth0/lock/compare/v11.32.2...v11.33.0)
6+
7+
**Important**
8+
9+
This release contains a change to how [custom signup fields](https://github.com/auth0/lock/#additional-sign-up-fields) are processed. From this release, all HTML tags are stripped from user input into any custom signup field before being sent to Auth0 to register the user. This is a security measure to help mitigate from potential XSS attacks in signup verification emails.
10+
11+
If you would be affected by this change and require HTML to be specified in a custom signup field, please leave us some feedback in our [issue tracker](https://github.com/auth0/lock/issues).
12+
13+
**Changed**
14+
15+
- ui box - div replaced by main [\#2114](https://github.com/auth0/lock/pull/2114) ([piwysocki](https://github.com/piwysocki))
16+
- More complete support for custom passwordless connections [\#2105](https://github.com/auth0/lock/pull/2105) ([peter-isgfunds](https://github.com/peter-isgfunds))
17+
18+
**Fixed**
19+
20+
- fix: initialize reset password inside componentDidMount [\#2111](https://github.com/auth0/lock/pull/2111) ([stevehobbsdev](https://github.com/stevehobbsdev))
21+
22+
**Security**
23+
24+
- [Snyk] Upgrade dompurify from 2.3.4 to 2.3.5 [\#2101](https://github.com/auth0/lock/pull/2101) ([snyk-bot](https://github.com/snyk-bot))
25+
326
## [v11.32.2](https://github.com/auth0/lock/tree/v11.32.2) (2022-02-08)
27+
428
[Full Changelog](https://github.com/auth0/lock/compare/v11.32.1...v11.32.2)
529

630
**Changed**
31+
732
- align german loginWithLabel translation with Apple Guidelines [\#2097](https://github.com/auth0/lock/pull/2097) ([Steffen911](https://github.com/Steffen911))
833

934
**Fixed**
35+
1036
- [SDK-3087] Captcha for single enterprise AD connections [\#2096](https://github.com/auth0/lock/pull/2096) ([stevehobbsdev](https://github.com/stevehobbsdev))
1137

1238
**Security**
39+
1340
- [Snyk] Upgrade qs from 6.10.2 to 6.10.3 [\#2095](https://github.com/auth0/lock/pull/2095) ([snyk-bot](https://github.com/snyk-bot))
1441
- Bump cached-path-relative from 1.0.2 to 1.1.0 [\#2091](https://github.com/auth0/lock/pull/2091) ([dependabot[bot]](https://github.com/apps/dependabot))
1542

1643
## [v11.32.1](https://github.com/auth0/lock/tree/v11.32.1) (2022-01-27)
44+
1745
[Full Changelog](https://github.com/auth0/lock/compare/v11.32.0...v11.32.1)
1846

1947
**Changed**
48+
2049
- Update auth0-js and support legacySameSiteCookie option [\#2089](https://github.com/auth0/lock/pull/2089) ([stevehobbsdev](https://github.com/stevehobbsdev))
2150

2251
**Security**
52+
2353
- Bump log4js from 6.3.0 to 6.4.0 [\#2087](https://github.com/auth0/lock/pull/2087) ([dependabot[bot]](https://github.com/apps/dependabot))
2454
- Security upgrade node-fetch to 2.6.7 [\#2085](https://github.com/auth0/lock/pull/2085) ([evansims](https://github.com/evansims))
2555
- [Snyk] Upgrade prop-types from 15.7.2 to 15.8.0 [\#2083](https://github.com/auth0/lock/pull/2083) ([snyk-bot](https://github.com/snyk-bot))
2656
- Bump engine.io from 4.1.1 to 4.1.2 [\#2082](https://github.com/auth0/lock/pull/2082) ([dependabot[bot]](https://github.com/apps/dependabot))
2757
- Bump follow-redirects from 1.14.4 to 1.14.7 [\#2081](https://github.com/auth0/lock/pull/2081) ([dependabot[bot]](https://github.com/apps/dependabot))
2858

2959
## [v11.32.0](https://github.com/auth0/lock/tree/v11.32.0) (2022-01-07)
60+
3061
[Full Changelog](https://github.com/auth0/lock/compare/v11.31.1...v11.32.0)
3162

3263
**Fixed**
64+
3365
- [SDK-2970] Remove captcha for enterprise SSO connections [\#2071](https://github.com/auth0/lock/pull/2071) ([stevehobbsdev](https://github.com/stevehobbsdev))
3466
- Add ID attributes to password field + submit button [\#2072](https://github.com/auth0/lock/pull/2072) ([stevehobbsdev](https://github.com/stevehobbsdev))
3567

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ From CDN
2525

2626
```html
2727
<!-- Latest patch release (recommended for production) -->
28-
<script src="https://cdn.auth0.com/js/lock/11.32.2/lock.min.js"></script>
28+
<script src="https://cdn.auth0.com/js/lock/11.33.0/lock.min.js"></script>
2929
```
3030

3131
From [npm](https://npmjs.org)
@@ -490,6 +490,8 @@ Extra input fields can be added to the sign up screen with the `additionalSignUp
490490

491491
Additional sign up fields are rendered below the default fields in the order they are provided.
492492

493+
:warning: **Note**: From `11.33.0` onwards, all HTML tags are stripped from user input into custom signup fields.
494+
493495
##### Text field
494496

495497
A `validator` function can also be provided.

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "auth0-lock",
3-
"version": "11.32.2",
3+
"version": "11.33.0",
44
"main": "build/lock.js",
55
"ignore": [
66
"lib-cov",

0 commit comments

Comments
 (0)