Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix CVEs (update springboot to version 3.1.0) #12

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,12 @@
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.2.0-M1
### Added
- Provide APIs to create, delete and update discovery-endpoints
-
## fixed
- fix CVE-2023-20862
- fix CVE-2023-20873
2 changes: 1 addition & 1 deletion charts/discoveryfinder/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ description: Tractus-X Discovery Finder Helm Chart

type: application
version: 0.1.2
appVersion: 0.1.0-M1
appVersion: 0.2.0-M1

dependencies:
- repository: https://charts.bitnami.com/bitnami
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.0.5</version> <!-- need to be repeated in properties section for technical purposes -->
<version>3.1.0</version> <!-- need to be repeated in properties section for technical purposes -->
<relativePath/> <!-- lookup parent from repository and not the filesystem -->
</parent>

Expand Down Expand Up @@ -64,7 +64,7 @@

<!-- version properties -->
<!-- framework and base stuff -->
<spring.boot.version>3.0.5</spring.boot.version>
<spring.boot.version>3.1.0</spring.boot.version>
<lombok.version>1.18.24</lombok.version>
<openapi-starter-webmvc-ui.version>2.0.2</openapi-starter-webmvc-ui.version>
<swagger-annotations.version>1.5.20</swagger-annotations.version>
Expand All @@ -73,8 +73,8 @@
<jakarta.validation.version>3.0.2</jakarta.validation.version>
<snakeyaml.version>2.0</snakeyaml.version>
<!-- logging -->
<slf4j.version>2.0.6</slf4j.version>
<logback.version>1.4.5</logback.version>
<slf4j.version>2.0.7</slf4j.version>
<logback.version>1.4.7</logback.version>
<!-- persistence-->
<h2.version>2.1.214</h2.version>
<postgresql.version>42.5.4</postgresql.version>
Expand All @@ -83,7 +83,7 @@
<liquibase.version>4.19.1</liquibase.version>
<!-- test libs -->
<assertj.version>3.24.2</assertj.version>
<junit.version>5.9.2</junit.version>
<junit.version>5.9.3</junit.version>
<!-- build -->
<maven.compiler.version>3.8.1</maven.compiler.version>
</properties>
Expand Down