Skip to content

Commit a50a7ea

Browse files
committed
feat: gradle update plugin 0.52.0, Spring Boot 3.4.2, Spring Modulith 1.3.2
1 parent 09682cb commit a50a7ea

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
* Backend: Hardened configuration of actuator and [improved configuration documentation](./backend/docs/CONFIGURE.md) around it
1010
* Backend: Include H2 in-memory database only when using bootRun (Gradle: developmentOnly) and not when deploying as it is only for local development. Real database drivers (e.g. postgres JDBC) for production should be included using implementation.
1111
* Backend: Configure HTTP Security Header permission policy with .permissionsPolicyHeader as .permissionPolicy is deprecated
12-
* Backend: Gradle Plugins: Spring Dependency Plugin 1.1.7, Spotless 7.0.2, CycloneDX 2.0.0
12+
* Backend: Spring Boot 3.4.2, Spring Modulith 1.3.2
13+
* Backend: Gradle Plugins: Spring Dependency Plugin 1.1.7, Spotless 7.0.2, CycloneDX 2.0.0, Ben Names Update Plugin 0.52.0
1314
* Backend: Build tool Gradle 8.12, BouncyCastle 1.80
1415
* Frontend: Angular 19.1.1
1516
* Container: Remove JDK parameter for generational ZGC as it will be anyway the [only possible in upcoming JDKs](https://openjdk.org/jeps/474).

backend/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ plugins {
22
id 'java'
33
id 'jacoco'
44
id 'maven-publish'
5-
id 'org.springframework.boot' version '3.4.1'
5+
id 'org.springframework.boot' version '3.4.2'
66
id 'io.spring.dependency-management' version '1.1.7'
7-
id 'com.github.ben-manes.versions' version '0.51.0'
7+
id 'com.github.ben-manes.versions' version '0.52.0'
88
id 'com.diffplug.spotless' version '7.0.2'
99
id 'org.cyclonedx.bom' version '2.0.0'
1010
}
@@ -30,10 +30,10 @@ repositories {
3030
}
3131

3232
ext {
33-
set('springModulithVersion', "1.3.1")
33+
set('springModulithVersion', "1.3.2")
3434
set('h2Version','2.3.232')
3535
set('ehcacheVersion','3.10.8')
36-
set('hibernateVersion','6.6.4.Final')
36+
set('hibernateVersion','6.6.5.Final')
3737
set('disruptorVersion','4.0.0')
3838
set('bcVersion','1.80')
3939
set('owaspSanitizerVersion','20240325.1')

0 commit comments

Comments
 (0)