Skip to content

Commit c5d27eb

Browse files
kahoona77cesmarvin
authored andcommitted
Merge branch 'release/v1.17.2-1'
2 parents c4f712e + 4a3fdd6 commit c5d27eb

File tree

7 files changed

+14
-4
lines changed

7 files changed

+14
-4
lines changed

CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [v1.17.2-1] - 2024-11-22
10+
### Removed
11+
- Remove mail-to link from user-list
12+
913
## [v1.17.1-1] - 2024-11-05
1014
### Fixed
1115
- Only show external-user-hint if user is marked as external [#177]

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.1-1" \
78+
VERSION="1.17.2-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.1-1
3+
VERSION=1.17.2-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/pages/Users.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export default function Users() {
7777
{user.displayName}
7878
</ActionTable.Body.Row.Column>
7979
<ActionTable.Body.Row.Column>
80-
<a href={`mailto:${user.mail}`}>{user.mail}</a>
80+
{user.mail}
8181
</ActionTable.Body.Row.Column>
8282
{hasExternal && <ActionTable.Body.Row.Column>{t(`users.table.external.${user.external}`)}</ActionTable.Body.Row.Column>}
8383
<ActionTable.Body.Row.Column className="flex justify-center">

docs/gui/release_notes_de.md

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ Im Folgenden finden Sie die Release Notes für das User Management.
44

55
Technische Details zu einem Release finden Sie im zugehörigen [Changelog](https://docs.cloudogu.com/de/docs/dogus/usermgt/CHANGELOG/).
66

7+
## Release 1.17.2-1
8+
* In der Benutzerliste werden nun keine Mail-To Links mehr angezeigt
9+
710
## Release 1.17.1-1
811
* Behebung eines Bugs: In der 1.17.0-1 werden fälschlicherweise auch nicht-externe Nutzer als externe Nutzer markiert. Ab dieser Version werden nur externe Nutzer als externe Nutzer angegeben.
912

docs/gui/release_notes_en.md

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ Below you will find the release notes for User Management.
44

55
Technical details on a release can be found in the corresponding [Changelog](https://docs.cloudogu.com/en/docs/dogus/usermgt/CHANGELOG/).
66

7+
## Release 1.17.2-1
8+
* Mail-To links are no longer displayed in the user list
9+
710
## Release 1.17.1-1
811
* Bug fix: In 1.17.0-1, non-external users are also incorrectly marked as external users. From this version onwards, only external users are indicated as external users.
912

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.1-1",
3+
"Version": "1.17.2-1",
44
"DisplayName": "User Management",
55
"Description": "User and Group Management.",
66
"Category": "Administration Apps",

0 commit comments

Comments
 (0)