File tree Expand file tree Collapse file tree 8 files changed +37
-12
lines changed Expand file tree Collapse file tree 8 files changed +37
-12
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,25 @@ Please refer to the respective repositories for a more in depth changelog of sin
17
17
| TORCH| <https://github.com/medizininformatik-initiative/torch |
18
18
| Blaze FHIR server| < https://github.com/samply/blaze > |
19
19
20
+ ## [ 5.1.1] - 2025-03-03
21
+
22
+ ** minor fixes in v5.1.1**
23
+
24
+ - Backend Bugfixes: Improve elastic search query for better results, fix initial counter value of remaining result details views
25
+
26
+ ### known bugs
27
+
28
+ - Encounter Module faulty at sq2cql translation and therefore non functioning (CQL)
29
+
30
+ ### Ontology
31
+
32
+ This Release is based on ontology Version [ v3.1.0] ( https://github.com/medizininformatik-initiative/fhir-ontology-generator/releases/tag/v3.1.0 )
33
+
34
+ ### Updates to
35
+
36
+ - backend
37
+
38
+
20
39
## [ 5.1.0] - 2025-02-18
21
40
22
41
** minor fixes in v5.1.0**
Original file line number Diff line number Diff line change 1
1
services :
2
2
dataportal-backend :
3
3
restart : unless-stopped
4
- image : ghcr.io/medizininformatik-initiative/feasibility-backend:6.1.0
4
+ image : ghcr.io/medizininformatik-initiative/feasibility-backend:6.1.1
5
5
ports :
6
6
- ${DATAPORTAL_BACKEND_PORT:-127.0.0.1:8091}:8090
7
7
depends_on :
@@ -144,4 +144,4 @@ volumes:
144
144
dataportal-deploy-postgres-data :
145
145
name : " dataportal-deploy-postgres-data"
146
146
dataportal-deploy-elastic-data :
147
- name : " dataportal-deploy-elastic-data"
147
+ name : " dataportal-deploy-elastic-data"
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ COMPOSE_PROJECT=${FEASIBILITY_COMPOSE_PROJECT:-feasibility-deploy}
4
4
5
5
BASE_DIR=" $( cd -- " $( dirname " $0 " ) " > /dev/null 2>&1 || exit 1 ; pwd -P ) "
6
6
7
- docker compose -p " $COMPOSE_PROJECT " -f " $BASE_DIR " /keycloak/docker-compose.yml down
7
+ docker compose -p " $COMPOSE_PROJECT " -f " $BASE_DIR " /keycloak/docker-compose.yml down
8
8
9
9
10
10
docker compose -p " $COMPOSE_PROJECT " -f " $BASE_DIR " /backend/docker-compose.yml down
Original file line number Diff line number Diff line change 9
9
"baseUrl": "https://api.datenportal.localhost/api/v4"
10
10
},
11
11
"auth": {
12
- "baseUrl": "https://example.org/ auth",
12
+ "baseUrl": "https://auth.datenportal.localhost ",
13
13
"realm": "feasibility",
14
14
"clientId": "feasibility-webapp",
15
15
"roles": ["FeasibilityUser"]
52
52
"dataset": "codex",
53
53
"queryVersion": "v2",
54
54
"proposalPortalLink": "https://antrag.dev.forschen-fuer-gesundheit.de"
55
- }
55
+ }
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- envfiles=( " gui/deploy-config.json" " backend/.env" " keycloak/.env" " proxy/.env" )
3
+ BASE_DIR=" $( cd -- " $( dirname " $0 " ) " > /dev/null 2>&1 || exit 1 ; pwd -P ) "
4
+ envfiles=( " $BASE_DIR /gui/deploy-config.json" " $BASE_DIR /backend/.env" " $BASE_DIR /keycloak/.env" " $BASE_DIR /proxy/.env" )
4
5
5
6
for file in " ${envfiles[@]} "
6
7
do
Original file line number Diff line number Diff line change @@ -4,8 +4,9 @@ FEASIBILITY_KC_DB_PW=keycloakdbpw
4
4
FEASIBILITY_KC_ADMIN_USER=admin
5
5
FEASIBILITY_KC_ADMIN_PW=admin
6
6
FEASIBILITY_KC_HTTP_RELATIVE_PATH=/auth
7
- FEASIBILITY_KC_HOSTNAME_URL=https://example.org/ auth
8
- FEASIBILITY_KC_HOSTNAME_ADMIN_URL=https://example.org/ auth
7
+ FEASIBILITY_KC_HOSTNAME_URL=https://auth.datenportal.localhost
8
+ FEASIBILITY_KC_HOSTNAME_ADMIN_URL=https://auth.datenportal.localhost
9
9
FEASIBILITY_KC_LOG_LEVEL=info
10
10
FEASIBILITY_KC_PROXY=edge
11
+ FEASIBILITY_BACKEND_BASE_URL=https:/api.datenportal.localhost
11
12
Original file line number Diff line number Diff line change 78
78
add_header X-Content-Type-Options nosniff;
79
79
add_header X-Frame-Options SAMEORIGIN;
80
80
81
+ port_in_redirect off;
82
+
81
83
# redirect server error pages to the static page /50x.html
82
84
#
83
85
error_page 500 502 503 504 /50x.html;
@@ -91,15 +93,17 @@ http {
91
93
proxy_set_header X-Forwarded-Port $x_forwarded_port;
92
94
93
95
location /api {
94
- set $backend_upstream http://feasibility-gui -backend:8090;
96
+ set $backend_upstream http://dataportal -backend:8090;
95
97
proxy_pass $backend_upstream;
96
98
97
99
proxy_buffer_size 8k;
98
100
proxy_request_buffering off;
99
101
client_max_body_size 100M;
100
102
}
101
103
102
- location /auth {
104
+ rewrite ^/auth$ /auth/ permanent;
105
+
106
+ location /auth/ {
103
107
set $auth_upstream http://auth:8080;
104
108
proxy_pass $auth_upstream;
105
109
}
Original file line number Diff line number Diff line change 73
73
# Header Options
74
74
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains" always;
75
75
add_header X-Content-Type-Options nosniff;
76
- add_header X-Frame-Options SAMEORIGIN;
77
-
76
+ add_header X-Frame-Options SAMEORIGIN;
77
+
78
78
include /etc/nginx/conf.d/*.conf;
79
79
}
You can’t perform that action at this time.
0 commit comments