Skip to content

Commit be6e166

Browse files
nfranzeckcesmarvin
authored andcommitted
Merge branch 'release/v1.18.0-1'
2 parents c2c4a88 + cf0f7fe commit be6e166

File tree

71 files changed

+4866
-538
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+4866
-538
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [v1.18.0-1] - 2025-01-17
10+
### Changed
11+
- The internal makefiles have been updated to standardize the versioning of the release notes.
12+
### Added
13+
- optional sync query parameter to create user endpoint [#184]
14+
- if supplied, users and groups will be added synchronously to avoid unauthorized errors
15+
16+
### Added
17+
- Add new integration tests [#161]
18+
- New integration tests regarding user import, including the testing of the e-mail dispatch
19+
- Adjust Pipeline to include Mailhog for Testing
20+
921
## [v1.17.2-1] - 2024-11-22
1022
### Removed
1123
- Remove mail-to link from user-list

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ COPY app/.mvn .mvn
1414

1515
RUN ./mvnw dependency:resolve-plugins dependency:resolve
1616
COPY app/ .
17-
RUN ./mvnw package
17+
RUN ./mvnw package -DskipTests
1818

1919

20-
FROM registry.cloudogu.com/official/base:3.20.3-2 as tomcat
20+
FROM registry.cloudogu.com/official/base:3.21.0-1 as tomcat
2121

2222
ARG TOMCAT_MAJOR_VERSION
2323
ARG TOMCAT_VERSION
@@ -70,12 +70,12 @@ RUN set -eux \
7070
RUN chown -R tomcat:tomcat /opt/apache-tomcat
7171

7272

73-
FROM registry.cloudogu.com/official/java:8u402-6
73+
FROM registry.cloudogu.com/official/java:8u432-1
7474

7575
ARG TOMCAT_VERSION
7676

7777
LABEL NAME="official/usermgt" \
78-
VERSION="1.17.2-1" \
78+
VERSION="1.18.0-1" \
7979
maintainer="hello@cloudogu.com"
8080

8181
# mark as webapp for nginx

Jenkinsfile

Lines changed: 207 additions & 177 deletions
Large diffs are not rendered by default.

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Set these to the desired values
22
ARTIFACT_ID=usermgt
3-
VERSION=1.17.2-1
3+
VERSION=1.18.0-1
44
# overwrite ADDITIONAL_LDFLAGS to disable static compilation
55
# this should fix https://github.com/golang/go/issues/13470
66
ADDITIONAL_LDFLAGS=""
77
NPM_REGISTRY_RELEASE=https://ecosystem.cloudogu.com/nexus/repository/npm-releases/
88
NPM_REGISTRY_RC=https://ecosystem.cloudogu.com/nexus/repository/npm-releasecandidates/
99
UI_SRC=app/src/main/ui
10-
MAKEFILES_VERSION=9.1.0
10+
MAKEFILES_VERSION=9.5.0
1111
.DEFAULT_GOAL:=default
1212

1313
include build/make/variables.mk

app/src/main/java/de/triology/universeadm/AbstractManagerResource.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ public abstract class AbstractManagerResource<T> {
2020

2121
public static final int PAGING_MAXIMUM_PAGE_SIZE = 100000;
2222

23-
private static final Logger logger
23+
protected static final Logger logger
2424
= LoggerFactory.getLogger(AbstractManagerResource.class);
2525

26-
private static final String CONSTRAINT_VIOLATION_LOG_MSG = "entity {} violates constraints";
26+
protected static final String CONSTRAINT_VIOLATION_LOG_MSG = "entity {} violates constraints";
2727

2828
@Context
2929
protected UriInfo uriInfo;

0 commit comments

Comments
 (0)