aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoanna Jeremicz <joanna.jeremicz@nokia.com>2021-08-02 12:16:46 +0200
committerJoanna Jeremicz <joanna.jeremicz@nokia.com>2021-08-02 12:25:33 +0200
commit446889e337834556f9852f513a33d7622d065c07 (patch)
tree9d3d97c69bf1dcf3ab14c855cc0a6d84d41bee88
parent7d7929303ea5091390087d62f0f533d26aef3d97 (diff)
Fix Sdc Helm Validator vulnerabilities
spring.version 2.4.3 -> 2.5.3 apache.commons.compress.version 1.20 -> 1.21 Issue-ID: SDC-3647 Signed-off-by: Joanna Jeremicz <joanna.jeremicz@nokia.com> Change-Id: I33760924b3236b03144a53e26751cb5690f965c3
-rw-r--r--Changelog.md6
-rw-r--r--pom.xml6
-rw-r--r--version.properties2
3 files changed, 10 insertions, 4 deletions
diff --git a/Changelog.md b/Changelog.md
index 836eb31..7f0502c 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -4,6 +4,12 @@ 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.2.2] - 02/08/2021
+
+- SDC-3647 Fix vulnerabilities
+ - spring.version 2.4.3 -> 2.5.3
+ - apache.commons.compress.version 1.20 -> 1.21
+
## [1.2.1] - 07/06/2021
- Add logging validation response in debug mode
diff --git a/pom.xml b/pom.xml
index 96cf0ff..a3447b8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -10,7 +10,7 @@
</parent>
<groupId>org.onap.sdc</groupId>
<artifactId>sdc-helm-validator</artifactId>
- <version>1.2.1-SNAPSHOT</version>
+ <version>1.2.2-SNAPSHOT</version>
<name>helmvalidator</name>
<description>Spring-Boot application for validating helm charts</description>
@@ -20,8 +20,8 @@
<maven.build.timestamp.format>yyyyMMdd'T'HHmmss</maven.build.timestamp.format>
<docker-maven-plugin.version>0.34.1</docker-maven-plugin.version>
- <spring.version>2.4.3</spring.version>
- <apache.commons.compress.version>1.20</apache.commons.compress.version>
+ <spring.version>2.5.3</spring.version>
+ <apache.commons.compress.version>1.21</apache.commons.compress.version>
<docker.dockerfile>Dockerfile</docker.dockerfile>
<docker-image.name>onap/${project.groupId}.${project.artifactId}</docker-image.name>
diff --git a/version.properties b/version.properties
index 755adf7..152260f 100644
--- a/version.properties
+++ b/version.properties
@@ -1,6 +1,6 @@
major=1
minor=2
-patch=1
+patch=2
base_version=${major}.${minor}.${patch}
release_version=${base_version}
snapshot_version=${base_version}-SNAPSHOT