diff options
-rw-r--r-- | components/slice-analysis-ms/ChangeLog.md | 3 | ||||
-rw-r--r-- | components/slice-analysis-ms/pom.xml | 17 | ||||
-rw-r--r-- | components/slice-analysis-ms/version.properties | 5 |
3 files changed, 15 insertions, 10 deletions
diff --git a/components/slice-analysis-ms/ChangeLog.md b/components/slice-analysis-ms/ChangeLog.md index aa92c9cd..3c61b9f0 100644 --- a/components/slice-analysis-ms/ChangeLog.md +++ b/components/slice-analysis-ms/ChangeLog.md @@ -4,6 +4,9 @@ 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.0] - 2023/02/22 + - [DCAEGEN2-3355](https://jira.onap.org/browse/DCAEGEN2-3355) - Slice-Analysis-Ms vulnerability updates + ## [1.1.5] - 2022/09/14 - [DCAEGEN2-3221](https://jira.onap.org/browse/DCAEGEN2-3221) - Slice-Analysis-Ms vulnerability updates diff --git a/components/slice-analysis-ms/pom.xml b/components/slice-analysis-ms/pom.xml index 15ae6ed7..cf4de61b 100644 --- a/components/slice-analysis-ms/pom.xml +++ b/components/slice-analysis-ms/pom.xml @@ -8,6 +8,7 @@ * Copyright (C) 2022 Huawei Canada Limited. * Copyright (C) 2022 CTC, Inc. * Copyright (C) 2022 Huawei Technologies Co., Ltd. + * Copyright (C) 2023 Deutsche Telekom AG. All rights reserved. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -36,14 +37,14 @@ </parent> <groupId>org.onap.dcaegen2.services.components</groupId> <artifactId>slice-analysis-ms</artifactId> - <version>1.1.5-SNAPSHOT</version> + <version>1.2.0-SNAPSHOT</version> <name>dcaegen2-services-slice-analysis-ms</name> <description>Network slice PM analyser</description> <packaging>jar</packaging> <properties> <java.version>11</java.version> <sdk.version>1.8.7</sdk.version> - <spring.version>5.3.20</spring.version> + <spring.version>5.3.25</spring.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> @@ -183,7 +184,7 @@ <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> - <version>2.13.3</version> + <version>2.14.1</version> </dependency> <dependency> <groupId>net.javacrumbs.json-unit</groupId> @@ -194,7 +195,7 @@ <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> - <version>2.13.3</version> + <version>2.14.1</version> </dependency> <!-- https://mvnrepository.com/artifact/javax.json/javax.json-api --> <dependency> @@ -216,7 +217,7 @@ <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> - <version>42.3.6</version> + <version>42.5.1</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> @@ -294,7 +295,7 @@ <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-server</artifactId> - <version>9.4.41.v20210516</version> + <version>11.0.12</version> </dependency> <!-- https://mvnrepository.com/artifact/org.webjars/bootstrap --> <dependency> @@ -317,7 +318,7 @@ <dependency> <groupId>org.apache.tomcat.embed</groupId> <artifactId>tomcat-embed-core</artifactId> - <version>9.0.65</version> + <version>10.1.2</version> </dependency> <!-- https://mvnrepository.com/artifact/nl.jqno.equalsverifier/equalsverifier --> <dependency> @@ -329,7 +330,7 @@ <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> - <version>1.2.10</version> + <version>1.4.5</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> diff --git a/components/slice-analysis-ms/version.properties b/components/slice-analysis-ms/version.properties index 672d9b5f..f8e93847 100644 --- a/components/slice-analysis-ms/version.properties +++ b/components/slice-analysis-ms/version.properties @@ -6,6 +6,7 @@ # Copyright (C) 2022 Huawei Canada Limited. # Copyright (C) 2022 CTC, Inc. # Copyright (c) 2022 Wipro Limited. +# Copyright (C) 2023 Deutsche Telekom AG. All rights reserved. # ============================================================================== # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -22,8 +23,8 @@ # ############################################################################### major=1 -minor=1 -patch=5 +minor=2 +patch=0 base_version=${major}.${minor}.${patch} release_version=${base_version} snapshot_version=${base_version}-SNAPSHOT |