Skip to content

Commit 3da0e55

Browse files
committed
Merge branch 'main' into develop
2 parents b442014 + 09f4e1e commit 3da0e55

File tree

11 files changed

+27
-10
lines changed

11 files changed

+27
-10
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [1.1.1](https://github.com/iris-connect/iris-client/compare/v1.1.0...v1.1.1) (2021-11-17)
4+
5+
6+
### Bug Fixes
7+
8+
* The configuration for the private proxy now contains the necessary variable declarations again. Thanks to [@jl-sitnrw](https://github.com/jl-sitnrw) ([71ea823](https://github.com/iris-connect/iris-client/commit/71ea8239b07729729c9b4916e0b8ba28eef1222d)), closes [#467](https://github.com/iris-connect/iris-client/issues/467)
9+
* The endpoint of the JSONRPC client is set to the right variable now. ([9d598bc](https://github.com/iris-connect/iris-client/commit/9d598bc3267f69ceeaa4e84d34d8abfe4f0ffd33))
10+
* With the stand alone installation, there is no longer an error at startup because a property is set with the wrong name. Thanks to [@jl-sitnrw](https://github.com/jl-sitnrw) ([8aa669d](https://github.com/iris-connect/iris-client/commit/8aa669d392db703828b3e588ab708ef5e74fb073)), closes [#466](https://github.com/iris-connect/iris-client/issues/466)
11+
312
# [1.1.0](https://github.com/iris-connect/iris-client/compare/v1.0.1...v1.1.0) (2021-11-03)
413

514

infrastructure/deployment/docker-compose-ext-postgres.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ services:
2424
SECURITY_AUTH_DB_ADMIN_USER_NAME:
2525
SECURITY_AUTH_DB_ADMIN_USER_PASSWORD:
2626
SECURITY_JWT_JWT_SHARED_SECRET:
27-
IRIS_LOCATION_SERVICE_ENDPOINT: ${EPS_LS_NAME}
27+
IRIS_BACKEND_SERVICE_ENDPOINT: ${EPS_LS_NAME}
2828
IRIS_CLIENT_BASEPATH: "https://${IRIS_CLIENT_DOMAIN}"
2929
EXT_APP_DW_BASEURL:
3030
restart: unless-stopped

infrastructure/deployment/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ services:
5353
SECURITY_AUTH_DB_ADMIN_USER_NAME:
5454
SECURITY_AUTH_DB_ADMIN_USER_PASSWORD:
5555
SECURITY_JWT_JWT_SHARED_SECRET:
56-
IRIS_BACKEND-SERVICE_ENDPOINT: ${EPS_LS_NAME}
56+
IRIS_BACKEND_SERVICE_ENDPOINT: ${EPS_LS_NAME}
5757
IRIS_CLIENT_BASEPATH: "https://${IRIS_CLIENT_DOMAIN}"
5858
EXT_APP_DW_BASEURL:
5959
depends_on:

infrastructure/dev/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ services:
5555
EPS_CLIENT_PROXY_CLIENT_URL: https://private-proxy-1:7766/jsonrpc
5656
PROXY_SERVICE_TARGET_SUBDOMAIN: proxy.dev.test-gesundheitsamt.de
5757
IRIS_CLIENT_BASEPATH: https://iris-frontend:28080
58-
IRIS_BACKEND-SERVICE_ENDPOINT: ls-1
58+
IRIS_BACKEND_SERVICE_ENDPOINT: ls-1
5959
SPRING_MAIL_PROPERTIES_RECIPIENT_CASE_DATA_RECEIVED_NAME: "Tester"
6060
SPRING_MAIL_PROPERTIES_RECIPIENT_CASE_DATA_RECEIVED_EMAIL: "[email protected]"
6161
SPRING_MAIL_PROPERTIES_RECIPIENT_EVENT_DATA_RECEIVED_NAME: "Tester"

infrastructure/stand-alone-deployment/conf/proxy/roles/live/private-proxy/001_default.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,14 @@ vars:
2323
source: env
2424
variable: PROXY_TLS_CERT_KEY
2525
type: string
26+
IRIS_CLIENT_BFF_ENDPOINT:
27+
source: env
28+
variable: IRIS_CLIENT_BFF_ENDPOINT
29+
type: string
30+
PRIVATE_PROXY_EPS_ENDPOINT:
31+
source: env
32+
variable: PRIVATE_PROXY_EPS_ENDPOINT
33+
type: string
2634

2735
private:
2836
name: "$PROXY_OP"
@@ -44,7 +52,7 @@ private:
4452
key_file: "$DIR/../../../certs/$PROXY_TLS_CERT_KEY"
4553

4654
jsonrpc_client:
47-
endpoint: https://private-proxy-eps:7766/jsonrpc
55+
endpoint: "$PRIVATE_PROXY_EPS_ENDPOINT"
4856
tls:
4957
server_name: "$PROXY_OP"
5058
ca_certificate_files:

infrastructure/stand-alone-deployment/scripts/start-iris-client-bff.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export SECURITY_AUTH_DB_ADMIN_USER_NAME=$SECURITY_AUTH_DB_ADMIN_USER_NAME
1111
export SECURITY_AUTH_DB_ADMIN_USER_PASSWORD=$SECURITY_AUTH_DB_ADMIN_USER_PASSWORD
1212
export PROXY_SERVICE_TARGET_SUBDOMAIN=$PROXY_SUBDOMAIN
1313
export PROXY_SERVICE_TARGET_PROXY=$EPS_PP_NAME
14-
export IRIS_BACKEND-SERVICE_ENDPOINT=$EPS_LS_NAME
14+
export IRIS_BACKEND_SERVICE_ENDPOINT=$EPS_LS_NAME
1515

1616
## Fixed Variables
1717
export SPRING_PROFILES_ACTIVE=prod

iris-client-bff/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</parent>
1313
<groupId>iris-gateway</groupId>
1414
<artifactId>iris-client-bff</artifactId>
15-
<version>1.1.0-POST_RELEASE</version>
15+
<version>1.1.1-POST_RELEASE</version>
1616
<name>IRIS Client Backend for Frontend</name>
1717
<description>Backend for frontend (BFF) of the client for the health departments. Communicates directly with the SORMAS of this department.</description>
1818
<licenses>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
EventDataReceivedEmail.subject=Neue Event Daten sind verfügbar auf dem IRIS Portal
22
CaseDataReceivedEmail.subject=Neue Indexfall Daten sind verfügbar auf dem IRIS Portal
3-
missing.property.iris.backend-service.endpoint=Über die Umgebungsvariable IRIS_BACKEND-SERVICE_ENDPOINT oder die entsprechende Property muss der Endpunkt des Backend-Service konfiguriert sein!
3+
missing.property.iris.backend-service.endpoint=Über die Umgebungsvariable IRIS_BACKEND_SERVICE_ENDPOINT oder die entsprechende Property muss der Endpunkt des Backend-Service konfiguriert sein!
44
UserController.username.notunique=Der Nutzername wird bereits verwendet!
55
UserController.oldpassword.wrong=Das bisherige Passwort stimmt nicht!
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
EventDataReceivedEmail.subject=Neue Event Daten sind verfügbar auf dem IRIS Portal
22
CaseDataReceivedEmail.subject=Neue Indexfall Daten sind verfügbar auf dem IRIS Portal
3-
missing.property.iris.backend-service.endpoint=Über die Umgebungsvariable IRIS_BACKEND-SERVICE_ENDPOINT oder die entsprechende Property muss der Endpunkt des Backend-Service konfiguriert sein!
3+
missing.property.iris.backend-service.endpoint=Über die Umgebungsvariable IRIS_BACKEND_SERVICE_ENDPOINT oder die entsprechende Property muss der Endpunkt des Backend-Service konfiguriert sein!
44
UserController.username.notunique=Der Nutzername wird bereits verwendet!
55
UserController.oldpassword.wrong=Das bisherige Passwort stimmt nicht!
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
EventDataReceivedEmail.subject=New Event data is available in the IRIS portal
22
CaseDataReceivedEmail.subject=New Index Case data is available in the IRIS portal
3-
missing.property.iris.backend-service.endpoint=Via the environment variable IRIS_BACKEND-SERVICE_ENDPOINT or the corresponding property the endpoint of the backend service must be configured!
3+
missing.property.iris.backend-service.endpoint=Via the environment variable IRIS_BACKEND_SERVICE_ENDPOINT or the corresponding property the endpoint of the backend service must be configured!
44
UserController.username.notunique=The username is already used!
55
UserController.oldpassword.wrong=The previous password is not correct!

0 commit comments

Comments
 (0)