Skip to content

Commit

Permalink
Merge pull request #212 from eliasnogueira/updates
Browse files Browse the repository at this point in the history
chore: library update
  • Loading branch information
eliasnogueira authored Dec 22, 2024
2 parents 22c90af + 441f873 commit a5f3a93
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 21 deletions.
15 changes: 12 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ 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).

## [1.3.16] - 22-12-2024

### Changed

- Updated the following libraries
- `spring-boot-starter-parent -> 3.4.1`
- `hibernate-jpamodelgen -> 6.6.4.Final`
- `assertj -> 3.27.0`

## [1.3.15] - 17-12-2024

### Changed
Expand All @@ -16,7 +25,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

- Updated the following libraries
- `junit.version -> 5.11.4`
- `junit.version -> 5.11.4`
- Jib image to `eclipse-temurin:23.0.1_11-jre-nanoserver-ltsc2022`

## [1.3.13] - 10-12-2024
Expand All @@ -38,8 +47,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

- Updated the following libraries
- `maven-surefire-plugin -> 3.5.2`
- `hibernate-jpamodelgen -> 6.6.2.Final`
- `maven-surefire-plugin -> 3.5.2`
- `hibernate-jpamodelgen -> 6.6.2.Final`

## [1.3.10] - 27-10-2024

Expand Down
30 changes: 12 additions & 18 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.4.0</version>
<version>3.4.1</version>
</parent>

<groupId>com.eliasogueira.credit</groupId>
<artifactId>combined-credit-api</artifactId>
<version>1.13.15</version>
<version>1.13.16</version>

<distributionManagement>
<repository>
Expand All @@ -32,20 +32,21 @@
<springdoc-openapi-starter-webmvc-ui.version>2.7.0</springdoc-openapi-starter-webmvc-ui.version>
<modelmapper.version>3.2.2</modelmapper.version>
<lombok.version>1.18.36</lombok.version>
<hibernate-jpamodelgen.version>6.6.3.Final</hibernate-jpamodelgen.version>
<hibernate-jpamodelgen.version>6.6.4.Final</hibernate-jpamodelgen.version>
<jakarta-xml-bind-api.version>4.0.2</jakarta-xml-bind-api.version>
<h2.version>2.3.232</h2.version>
<jib-maven-plugin.version>3.4.4</jib-maven-plugin.version>
<jib.image>eclipse-temurin:23-jdk-alpine</jib.image>

<junit.version>5.11.4</junit.version>
<restassured.version>5.5.0</restassured.version>
<assertj.version>3.26.3</assertj.version>
<assertj.version>3.27.0</assertj.version>
<datafaker.version>2.4.2</datafaker.version>
<testcontainers.version>1.20.4</testcontainers.version>

<!-- transitive vulnerable dependencies -->
<commons-compress>1.27.1</commons-compress>
<logback-core.version>1.5.15</logback-core.version>
<spring-webmvc.version>6.2.1</spring-webmvc.version>

<start-class>com.eliasnogueira.credit.CreditApiApplication</start-class>
</properties>
Expand All @@ -54,6 +55,12 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
<!-- <exclusions>-->
<!-- <exclusion>-->
<!-- <groupId>ch.qos.logback</groupId>-->
<!-- <artifactId>logback-core</artifactId>-->
<!-- </exclusion>-->
<!-- </exclusions>-->
</dependency>

<dependency>
Expand All @@ -74,12 +81,6 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<exclusions>
<exclusion>
<groupId>org.xmlunit</groupId>
<artifactId>xmlunit-core</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
Expand Down Expand Up @@ -178,13 +179,6 @@
</exclusion>
</exclusions>
</dependency>

<!-- transitive vulnerable dependency for testcontainers -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>${commons-compress}</version>
</dependency>
</dependencies>

<build>
Expand Down

0 comments on commit a5f3a93

Please sign in to comment.