Skip to content

Commit fb1e123

Browse files
committed
Merge branch 'master' into develop
2 parents 7bbb5d9 + e7fb889 commit fb1e123

3 files changed

Lines changed: 8 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project are documented in this file following the [K
44
Issues reported on [GitHub](https://github.com/authzforce/server/issues) are referenced in the form of `[GH-N]`, where N is the issue number. Issues reported on [OW2](https://jira.ow2.org/browse/AUTHZFORCE/) are mentioned in the form of `[OW2-N]`, where N is the issue number.
55

66

7+
## 11.0.1
8+
### Fixed
9+
- [GH-22]: replaced vulnerable Tomcat base image with latest official (tomcat:9-jre11-temurin-focal) for Docker.
10+
11+
712
## 11.0.0
813
### Changed
914
- **Supported PDP configuration schema version is now 8.0 minimum: if you are already using AuthzForce Server 10.x or older and wish to migrate to this new version, follow the [Upgrader tool instructions](upgrader/src/README.md)**

dist/src/docker/Dockerfile.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
# The alternative is to use FROM ubuntu:* then install tomcat ubuntu package and use upstart/sysctl init script but this is not the way to go:
2525
# https://github.com/docker/docker/issues/6800
26-
FROM tomcat:9-jre11-slim
26+
FROM tomcat:9-jre11-temurin-focal
2727
MAINTAINER AuthzForce Team
2828

2929
ENV DEBIAN_FRONTEND noninteractive

dist/src/docker/release.sh.tmpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
set -ex
22

3-
docker build -t authzforce/server:${project.version} .
3+
docker build -t authzforce/server:release-${project.version} .
44
docker login
5-
docker push authzforce/server:${project.version}
5+
docker push authzforce/server:release-${project.version}

0 commit comments

Comments
 (0)