File tree 5 files changed +9
-7
lines changed
app/src/main/webapp/views/user
5 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -6,14 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [ Unreleased]
8
8
9
- ## [ v1.6.1-1] - 2022-05-11
9
+ ## [ v1.6.1-2] - 2022-07-05
10
+ ### Changed
11
+ - Increase max username length to 64 characters (was 32 before) (#61 )
10
12
13
+ ## [ v1.6.1-1] - 2022-05-11
11
14
### Security
12
15
- java base image
13
16
- updated some maven dependencies
14
17
15
18
## [ v1.6.0-2] - 2022-04-29
16
-
17
19
### Fixed
18
20
- Fixed a bug where the pwd-reset checkbox was checked without any effect (#55 )
19
21
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ RUN set -x \
8
8
FROM registry.cloudogu.com/official/java:8u302-3
9
9
10
10
LABEL NAME="official/usermgt" \
11
- VERSION="1.6.1-1 " \
11
+ VERSION="1.6.1-2 " \
12
12
13
13
14
14
# mark as webapp for nginx
Original file line number Diff line number Diff line change 1
1
# Set these to the desired values
2
2
ARTIFACT_ID =usermgt
3
- VERSION =1.6.1-1
3
+ VERSION =1.6.1-2
4
4
# overwrite ADDITIONAL_LDFLAGS to disable static compilation
5
5
# this should fix https://github.com/golang/go/issues/13470
6
6
ADDITIONAL_LDFLAGS =""
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ <h1>{{create ? 'New user' : 'Account'}}</h1>
19
19
placeholder ="Enter username "
20
20
ng-model ="user.username "
21
21
ng-minlength ="2 "
22
- ng-maxlength ="32 "
22
+ ng-maxlength ="64 "
23
23
ng-required ="true "
24
24
unique-constraint-checker
25
25
ng-disabled ="!create "
@@ -40,7 +40,7 @@ <h1>{{create ? 'New user' : 'Account'}}</h1>
40
40
Username must have at least 2 characters
41
41
</ strong >
42
42
< strong ng-show ="form.username.$error.maxlength " class ="text-danger help-block ">
43
- Username exceeds the maximum length of 32 characters.
43
+ Username exceeds the maximum length of 64 characters.
44
44
</ strong >
45
45
< strong ng-show ="form.username.$error.uniqueConstraint " class ="text-danger help-block ">
46
46
A user with that username already exists.
Original file line number Diff line number Diff line change 1
1
{
2
2
"Name" : " official/usermgt" ,
3
- "Version" : " 1.6.1-1 " ,
3
+ "Version" : " 1.6.1-2 " ,
4
4
"DisplayName" : " User Management" ,
5
5
"Description" : " User and Group Management." ,
6
6
"Category" : " Administration Apps" ,
You can’t perform that action at this time.
0 commit comments