diff options
Diffstat (limited to 'components')
-rw-r--r-- | components/kpi-computation-ms/Changelog.md | 4 | ||||
-rw-r--r-- | components/kpi-computation-ms/pom.xml | 16 | ||||
-rw-r--r-- | components/kpi-computation-ms/version.properties | 2 | ||||
-rw-r--r-- | components/slice-analysis-ms/ChangeLog.md | 2 | ||||
-rw-r--r-- | components/slice-analysis-ms/pom.xml | 26 |
5 files changed, 34 insertions, 16 deletions
diff --git a/components/kpi-computation-ms/Changelog.md b/components/kpi-computation-ms/Changelog.md index a1530641..a094d17b 100644 --- a/components/kpi-computation-ms/Changelog.md +++ b/components/kpi-computation-ms/Changelog.md @@ -5,6 +5,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.0.4] +### Changed +* Fix security vulnerability issues (DCAEGEN2-3047) + ## [1.0.3] ### Changed * Add KpiComputation for SUMRATIO operation (DCAEGEN2-2989) diff --git a/components/kpi-computation-ms/pom.xml b/components/kpi-computation-ms/pom.xml index a0265c0d..c67ece88 100644 --- a/components/kpi-computation-ms/pom.xml +++ b/components/kpi-computation-ms/pom.xml @@ -2,7 +2,7 @@ <!-- ~ ============LICENSE_START======================================================= ~ Copyright (c) 2021 China Mobile. All rights reserved. - ~ Copyright (c) 2021 Wipro Limited. + ~ Copyright (c) 2021-2022 Wipro Limited. ~ ================================================================================ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. @@ -29,7 +29,7 @@ <groupId>org.onap.dcaegen2.services.components</groupId> <artifactId>kpi-ms</artifactId> - <version>1.0.1-SNAPSHOT</version> + <version>1.0.4-SNAPSHOT</version> <name>dcaegen2-services-kpi-computation-ms</name> <description>Kpi ms</description> <packaging>jar</packaging> @@ -51,11 +51,11 @@ ${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml </sonar.coverage.jacoco.xmlReportPaths> <lombok.version>1.18.4</lombok.version> - <undertow.version>2.2.8.Final</undertow.version> + <undertow.version>2.2.14.Final</undertow.version> <xml.version>2.3.1</xml.version> <jaxb.version>2.3.0.1</jaxb.version> <docker.repository>nexus3.onap.org:10003</docker.repository> - <spring.version>5.3.7</spring.version> + <spring.version>5.3.14</spring.version> <junit.version>5.3.2</junit.version> <mockito.version>2.23.4</mockito.version> <mockito-ju5-ext.version>2.23.4</mockito-ju5-ext.version> @@ -132,7 +132,7 @@ <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> - <version>2.11.0</version> + <version>2.12.6</version> </dependency> <dependency> <groupId>net.javacrumbs.json-unit</groupId> @@ -297,6 +297,12 @@ <artifactId>openpojo</artifactId> <version>0.8.10</version> </dependency> + <!-- https://mvnrepository.com/artifact/ch.qos.logback/logback-core --> + <dependency> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-core</artifactId> + <version>1.2.10</version> + </dependency> </dependencies> <build> diff --git a/components/kpi-computation-ms/version.properties b/components/kpi-computation-ms/version.properties index a6311499..ada000a6 100644 --- a/components/kpi-computation-ms/version.properties +++ b/components/kpi-computation-ms/version.properties @@ -20,7 +20,7 @@ ############################################################################### major=1 minor=0 -patch=1 +patch=4 base_version=${major}.${minor}.${patch} release_version=${base_version} snapshot_version=${base_version}-SNAPSHOT diff --git a/components/slice-analysis-ms/ChangeLog.md b/components/slice-analysis-ms/ChangeLog.md index 8d8a60d6..fa59c34d 100644 --- a/components/slice-analysis-ms/ChangeLog.md +++ b/components/slice-analysis-ms/ChangeLog.md @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - [DCAEGEN2-3025](https://jira.onap.org/browse/DCAEGEN2-3025) - Fix null pointer exception while fetching slice-config + - [DCAEGEN2-3054](https://jira.onap.org/browse/DCAEGEN2-3054) - Remove security vulnerabilities + ## [1.0.6] - 2021/08/28 - [DCAEGEN2-2885](https://jira.onap.org/browse/DCAEGEN2-2885) - DCAE SliceAnalysis MS - CPS Integration diff --git a/components/slice-analysis-ms/pom.xml b/components/slice-analysis-ms/pom.xml index faf60322..f4fde501 100644 --- a/components/slice-analysis-ms/pom.xml +++ b/components/slice-analysis-ms/pom.xml @@ -4,7 +4,7 @@ * ============LICENSE_START======================================================= * slice-analysis-ms * ================================================================================ - * Copyright (C) 2020-2021 Wipro Limited. + * Copyright (C) 2020-2022 Wipro Limited. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -40,6 +40,7 @@ <properties> <java.version>11</java.version> <sdk.version>1.8.7</sdk.version> + <spring.version>5.3.14</spring.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> @@ -70,32 +71,32 @@ <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> - <version>5.3.7</version> + <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> - <version>5.3.7</version> + <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> - <version>5.3.7</version> + <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-expression</artifactId> - <version>5.3.7</version> + <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> - <version>5.3.7</version> + <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> - <version>5.3.7</version> + <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework.data</groupId> @@ -134,7 +135,7 @@ <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> - <version>2.11.0</version> + <version>2.12.6</version> </dependency> <dependency> <groupId>net.javacrumbs.json-unit</groupId> @@ -145,7 +146,7 @@ <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> - <version>2.11.0</version> + <version>2.12.6</version> </dependency> <!-- https://mvnrepository.com/artifact/javax.json/javax.json-api --> <dependency> @@ -268,7 +269,7 @@ <dependency> <groupId>org.apache.tomcat.embed</groupId> <artifactId>tomcat-embed-core</artifactId> - <version>9.0.46</version> + <version>9.0.50</version> </dependency> <!-- https://mvnrepository.com/artifact/nl.jqno.equalsverifier/equalsverifier --> <dependency> @@ -277,6 +278,11 @@ <version>3.5.5</version> <scope>test</scope> </dependency> + <dependency> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-core</artifactId> + <version>1.2.10</version> + </dependency> </dependencies> <build> <plugins> |