Skip to content

Commit ec13e19

Browse files
nfranzeckcesmarvin
authored andcommitted
Merge branch 'release/v1.17.1-1'
2 parents 4d3384f + 0ccfc83 commit ec13e19

File tree

6 files changed

+17
-10
lines changed

6 files changed

+17
-10
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [v1.17.1-1] - 2024-11-05
10+
### Fixed
11+
- Only show external-user-hint if user is marked as external [#177]
12+
- Fix list structure in gui docs
13+
914
## [v1.17.0-1] - 2024-10-29
1015
### Changed
1116
- Mark external users [#173]

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ FROM registry.cloudogu.com/official/java:8u402-6
7575
ARG TOMCAT_VERSION
7676

7777
LABEL NAME="official/usermgt" \
78-
VERSION="1.17.0-1" \
78+
VERSION="1.17.1-1" \
7979
maintainer="[email protected]"
8080

8181
# mark as webapp for nginx

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Set these to the desired values
22
ARTIFACT_ID=usermgt
3-
VERSION=1.17.0-1
3+
VERSION=1.17.1-1
44
# overwrite ADDITIONAL_LDFLAGS to disable static compilation
55
# this should fix https://github.com/golang/go/issues/13470
66
ADDITIONAL_LDFLAGS=""

app/src/main/ui/src/components/users/UserForm.tsx

+5-3
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,11 @@ export default function UserForm<T extends User>(props: UserFormProps<T>) {
9898
<Prompt when={handler.dirty && !handler.isSubmitting} message={t("generic.notification.form.prompt")}/>
9999
<Form handler={handler}>
100100
{notification}
101-
<span className={"font-bold"}>
102-
{t("users.externalUserWarning")}
103-
</span>
101+
{(props.initialUser.external) && (
102+
<span className={"font-bold"}>
103+
{t("users.externalUserWarning")}
104+
</span>
105+
)}
104106
<Form.ValidatedTextInput type={"text"} name={"username"} disabled={props.disableUsernameField ?? true} data-testid="username" placeholder={t("users.placeholder.username")} hint={t("users.hint.username")}>
105107
{t("editUser.labels.username")}
106108
</Form.ValidatedTextInput>

docs/gui/documentation_en.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -267,10 +267,10 @@ The columns describe the following information:
267267
* **username** - username of the account
268268
* If the specified username already exists, this account will be updated with the specified information and no new account will be created.
269269
* Cannot be changed after an account has been created
270-
**displayname** - Display name of the account
271-
**givenname** - First name of the user
272-
**surname** - Last name of the user
273-
**mail** - Mail address of the user
270+
* **displayname** - Display name of the account
271+
* **givenname** - First name of the user
272+
* **surname** - Last name of the user
273+
* **mail** - Mail address of the user
274274
* **pwdReset** - Indicates whether the password must be reset at the next login
275275
* Specified using *false* or *true*, where *true* indicates that the password must be reset at the next login
276276
* For newly created accounts, *pwdReset* is always automatically set to *true

dogu.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"Name": "official/usermgt",
3-
"Version": "1.17.0-1",
3+
"Version": "1.17.1-1",
44
"DisplayName": "User Management",
55
"Description": "User and Group Management.",
66
"Category": "Administration Apps",

0 commit comments

Comments
 (0)