Skip to content

Commit ce8ab5b

Browse files
author
Dominick Leppich
committed
Merge pull request 'release_1.1.10' (#14) from release_1.1.10 into master
Reviewed-on: https://gitea.intranda.com/intranda/goobi-vocabulary-server/pulls/14
2 parents 8d81e1e + da72071 commit ce8ab5b

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ COPY module-core/target/vocabulary-server-core.jar /opt/digiverso/vocabulary/
1212
COPY module-core/src/main/resources/application.properties /opt/digiverso/vocabulary/
1313
RUN sed -re "s|^(server.port=).*|\1${VOCABULARY_SERVER_PORT}|" \
1414
-e "s|^#?(security.token=).*|\1${VOCABULARY_SERVER_TOKEN}|" \
15+
-e "s|^#?(server.forward-headers-strategy.*)|\1|" \
1516
-e "s|^(spring.datasource.username=).*|\1${VOCABULARY_DB_USER}|" \
1617
-e "s|^(spring.datasource.password=).*|\1${VOCABULARY_DB_PASSWORD}|" \
1718
-e "s|^(spring.datasource.url=).*|\1jdbc:mariadb://$VOCABULARY_DB_SERVER:3306/${VOCABULARY_DB_DATABASE}|" \

module-core/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.3.3</version>
8+
<version>3.3.5</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>io.goobi.vocabulary</groupId>
1212
<artifactId>vocabulary-server-core</artifactId>
13-
<version>1.1.9</version>
13+
<version>1.1.10</version>
1414
<name>Vocabulary-Server-Core</name>
1515
<description>Spring Boot based RESTful web service for vocabulary management</description>
1616
<packaging>jar</packaging>
@@ -35,7 +35,7 @@
3535
<dependency>
3636
<groupId>io.goobi.vocabulary</groupId>
3737
<artifactId>vocabulary-server-exchange</artifactId>
38-
<version>1.1.9</version>
38+
<version>1.1.10</version>
3939
<scope>compile</scope>
4040
</dependency>
4141

module-core/src/main/resources/application.properties

+6
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@
1010
# Control anonymous read operations. If set to false or not set, anonymous readers will not get access
1111
#security.anonymous.read-allowed=true
1212

13+
# Proxy / Gateway configuration
14+
# If the vocabulary server is behind a proxy, it will possibly generate wrong URLs because it is called with an internal
15+
# IP or hostname. This can be controlled by X-Forwarded-* Headers (e. g. X-Forwarded-Host: example.com). To enable this,
16+
# uncomment the following line.
17+
#server.forward-headers-strategy=framework
18+
1319
# Basic configuration
1420
# The port the vocabulary server should listen on
1521
server.port=8081

module-exchange/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>io.goobi.vocabulary</groupId>
66
<artifactId>vocabulary-server-exchange</artifactId>
7-
<version>1.1.9</version>
7+
<version>1.1.10</version>
88
<name>Vocabulary Exchange</name>
99
<description>Vocabulary data exchange classes</description>
1010
<packaging>jar</packaging>
@@ -34,7 +34,7 @@
3434
<dependency>
3535
<groupId>com.fasterxml.jackson.dataformat</groupId>
3636
<artifactId>jackson-dataformat-xml</artifactId>
37-
<version>2.15.4</version>
37+
<version>2.17.0</version>
3838
<scope>compile</scope>
3939
</dependency>
4040
</dependencies>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>io.goobi.vocabulary</groupId>
66
<artifactId>vocabulary-server</artifactId>
7-
<version>1.1.9</version>
7+
<version>1.1.10</version>
88
<name>Vocabulary-Server</name>
99
<packaging>pom</packaging>
1010
<description>RESTful webservice for vocabulary management</description>

0 commit comments

Comments
 (0)