Skip to content

Commit

Permalink
Merge branch 'release-5.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
clausnagel committed Dec 4, 2023
2 parents 8dd8072 + 820ddf9 commit b1f4b65
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 9 deletions.
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Change Log
==========

### 5.3.1 - 2023-09-21

* This release is based on the Importer/Exporter version 5.4.0 libraries, and thus incorporates all bug fixes and updates
introduced in that version ([more information](https://github.com/3dcitydb/importer-exporter/releases/tag/v5.4.0)).
* Updated tomcat docker image to version `9-jdk21-openjdk-slim` with lower vulnerabilities.

### 5.3.0 - 2022-12-15

This release is based on the Importer/Exporter version 5.3.0 libraries, and thus incorporates all bug fixes and updates
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# Fetch & build stage #########################################################
# ARGS
ARG BUILDER_IMAGE_TAG='17-jdk-slim'
ARG RUNTIME_IMAGE_TAG='9-jdk17-openjdk-slim'
ARG RUNTIME_IMAGE_TAG='9-jdk21-openjdk-slim'

# Base image
FROM openjdk:${BUILDER_IMAGE_TAG} AS builder
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ previous release of the 3D City Database Importer/Exporter under Apache License

Latest release
--------------
The latest stable release of the 3D City Database WFS interface is 5.3.0.
The latest stable release of the 3D City Database WFS interface is 5.3.1.

Download a ZIP file of the WFS [here](https://github.com/3dcitydb/web-feature-service/releases/download/v5.3.0/3DCityDB-Web-Feature-Service-5.3.0.zip).
Download a ZIP file of the WFS [here](https://github.com/3dcitydb/web-feature-service/releases/download/v5.3.1/3DCityDB-Web-Feature-Service-5.3.1.zip).
Previous releases are available from the [releases section](https://github.com/3dcitydb/web-feature-service/releases).

System requirements
Expand All @@ -44,7 +44,7 @@ anymore.
Documentation
-------------
A complete and comprehensive user manual on the Web Feature Service is available
[online](https://3dcitydb-docs.readthedocs.io/en/version-2022.2/wfs/).
[online](https://3dcitydb-docs.readthedocs.io/en/version-2023.0/wfs/).

The documentation contains a step-by-step guide for deploying the WFS on a servlet container.

Expand Down Expand Up @@ -98,7 +98,7 @@ When running a Docker container with default settings, the WFS will listen at th
http[s]://[host][:port]/wfs

More details on how to use the 3D City Database WFS with Docker can be found in the
[online documentation](https://3dcitydb-docs.readthedocs.io/en/version-2022.2/wfs/).
[online documentation](https://3dcitydb-docs.readthedocs.io/en/version-2023.0/wfs/).

Developers
----------
Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group 'org.citydb.wfs'
version '5.3.0'
version '5.3.1'

apply from: 'properties.gradle'

Expand Down Expand Up @@ -37,16 +37,16 @@ repositories {
url 'https://repo.osgeo.org/repository/release'
}
maven {
url 'https://citydb.jfrog.io/artifactory/maven'
url 'https://oss.sonatype.org/content/repositories/snapshots/'
}
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots/'
url project.citydbMavenUrl
}
mavenCentral()
}

dependencies {
implementation 'org.citydb:impexp-core:5.3.0'
implementation 'org.citydb:impexp-core:5.4.0'
implementation 'com.github.seancfoley:ipaddress:5.3.4'
implementation 'org.glassfish.jersey.containers:jersey-container-servlet:2.37'
implementation 'org.glassfish.jersey.inject:jersey-hk2:2.37'
Expand Down
1 change: 1 addition & 0 deletions properties.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ ext {
// 3D City Database
citydbShortName = '3DCityDB'
citydbName = '3D City Database'
citydbMavenUrl = 'https://gitlab.lrz.de/api/v4/projects/150792/packages/maven'

// 3D City Database WFS
citydbWfsName = citydbName + ' Web Feature Service'
Expand Down

0 comments on commit b1f4b65

Please sign in to comment.