Skip to content

Commit

Permalink
Merge pull request #207 from eliasnogueira/updates
Browse files Browse the repository at this point in the history
chore: library updates
  • Loading branch information
eliasnogueira authored Dec 10, 2024
2 parents b7dcef7 + c409ca1 commit c758225
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 16 deletions.
1 change: 0 additions & 1 deletion .mvn/maven.config
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
-B

24 changes: 18 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,31 @@ 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.12] - 10-12-2024

### Changed

- Updated the following libraries
- `spring-boot-starter-parent -> 3.4.0`
- `maven-surefire-junit5-tree-reporter -> 1.4.0`
- `springdoc-openapi-starter-webmvc-ui -> 2.7.0`
- `modelmapper -> 3.2.2`
- `lombok -> 1.18.36`
- `hibernate-jpamodelgen -> 6.6.3.Final`
- `datafaker -> 2.4.2`
- `testcontainers -> 1.20.4`

## [1.3.12] - 13-10-2024

## Changed
### Changed

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

## [1.3.10] - 16-10-2024

## [1.3.10] - 27-10-2024

## Changed
### Changed

- Removed Lombok
- Java 23 adoption
Expand All @@ -30,14 +42,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [1.3.10] - 16-10-2024

## Changed
### Changed

- Fixed the `Simulation` entity by replacing the `@Min` and `@Max` in the `amount` field by `@DecimalMin` and
`@DecimalMax`

## [1.3.9] - 12-10-2024

## Changed
### Changed

- Project and GitHub workflow updated to Java 23
- Added ` <maven.compiler.proc>full</maven.compiler.proc>` to solve the JDK 23 + Lombok issues
Expand Down
18 changes: 9 additions & 9 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.3.5</version>
<version>3.4.0</version>
</parent>

<groupId>com.eliasogueira.credit</groupId>
<artifactId>combined-credit-api</artifactId>
<version>1.13.12</version>
<version>1.13.13</version>

<distributionManagement>
<repository>
Expand All @@ -27,21 +27,21 @@
<maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
<maven.compiler.proc>full</maven.compiler.proc>
<maven-surefire-plugin.version>3.5.2</maven-surefire-plugin.version>
<maven-surefire-junit5-tree-reporter.version>1.3.0</maven-surefire-junit5-tree-reporter.version>
<maven-surefire-junit5-tree-reporter.version>1.4.0</maven-surefire-junit5-tree-reporter.version>

<springdoc-openapi-starter-webmvc-ui.version>2.6.0</springdoc-openapi-starter-webmvc-ui.version>
<modelmapper.version>3.2.1</modelmapper.version>
<lombok.version>1.18.34</lombok.version>
<hibernate-jpamodelgen.version>6.6.2.Final</hibernate-jpamodelgen.version>
<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>
<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>

<junit.version>5.11.3</junit.version>
<restassured.version>5.5.0</restassured.version>
<assertj.version>3.26.3</assertj.version>
<datafaker.version>2.4.1</datafaker.version>
<testcontainers.version>1.20.3</testcontainers.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>
Expand Down

0 comments on commit c758225

Please sign in to comment.