diff options
author | Tomasz Wrobel <tomasz.wrobel@nokia.com> | 2021-07-29 10:54:02 +0200 |
---|---|---|
committer | Tomasz Wrobel <tomasz.wrobel@nokia.com> | 2021-07-29 10:54:02 +0200 |
commit | e78716438110650898bd35de8cfe69822157a8f5 (patch) | |
tree | 1b44882eb9c98d0f7fff6e53a38433f1bea87cbf | |
parent | 7e42a4b54f4f2ea4dbc8725b8089008aefcbecec (diff) |
Fix vulnerabilities1.6.1
- Top up spring-boot to 2.4.8
Issue-ID: DCAEGEN2-2808
Signed-off-by: Tomasz Wrobel <tomasz.wrobel@nokia.com>
Change-Id: Ia8b5d99fab23e7523a2871d8305c27b7c9858a19
-rw-r--r-- | Changelog.md | 4 | ||||
-rw-r--r-- | README.md | 6 | ||||
-rw-r--r-- | pom.xml | 4 | ||||
-rw-r--r-- | prh-app-server/pom.xml | 2 | ||||
-rw-r--r-- | prh-commons/pom.xml | 2 | ||||
-rw-r--r-- | version.properties | 2 |
6 files changed, 15 insertions, 5 deletions
diff --git a/Changelog.md b/Changelog.md index 704e46a9..e92367c2 100644 --- a/Changelog.md +++ b/Changelog.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [1.6.1] - 29/07/2021 +### Changed +- Fix vulnerabilities (top up spring-boot version to 2.4.8) + ## [1.6.0] - 25/02/2021 ### Changed - Change Docker's base image to integration-java11 @@ -16,6 +16,12 @@ PRH is delivered as one **Docker container** which hosts application server and Whole project (top level of PRH directory) and each module (sub module directory) can be compiled using `mvn clean install` command. +### Build docker image +In main project directory run: +``` +mvn clean package docker:build +``` + ## Main API Endpoints Running with dev-mode of PRH @@ -33,7 +33,7 @@ <groupId>org.onap.dcaegen2.services</groupId> <artifactId>prh</artifactId> - <version>1.6.0-SNAPSHOT</version> + <version>1.6.1-SNAPSHOT</version> <name>dcaegen2-services-prh</name> <description>PNF Registration Handler</description> @@ -48,7 +48,7 @@ <properties> <java.version>11</java.version> - <spring-boot.version>2.4.2</spring-boot.version> + <spring-boot.version>2.4.8</spring-boot.version> <spring-cloud.version>2020.0.1</spring-cloud.version> <springfox.version>3.0.0</springfox.version> <immutables.version>2.7.5</immutables.version> diff --git a/prh-app-server/pom.xml b/prh-app-server/pom.xml index 9173ed39..c01a5a6e 100644 --- a/prh-app-server/pom.xml +++ b/prh-app-server/pom.xml @@ -27,7 +27,7 @@ <parent> <groupId>org.onap.dcaegen2.services</groupId> <artifactId>prh</artifactId> - <version>1.6.0-SNAPSHOT</version> + <version>1.6.1-SNAPSHOT</version> </parent> <groupId>org.onap.dcaegen2.services.prh</groupId> diff --git a/prh-commons/pom.xml b/prh-commons/pom.xml index 9cc3539f..5cb5165e 100644 --- a/prh-commons/pom.xml +++ b/prh-commons/pom.xml @@ -27,7 +27,7 @@ <parent> <groupId>org.onap.dcaegen2.services</groupId> <artifactId>prh</artifactId> - <version>1.6.0-SNAPSHOT</version> + <version>1.6.1-SNAPSHOT</version> </parent> <groupId>org.onap.dcaegen2.services.prh</groupId> diff --git a/version.properties b/version.properties index eabef1f2..30223800 100644 --- a/version.properties +++ b/version.properties @@ -1,6 +1,6 @@ major=1 minor=6 -patch=0 +patch=1 base_version=${major}.${minor}.${patch} release_version=${base_version} snapshot_version=${base_version}-SNAPSHOT |