Skip to content

Commit e62d9de

Browse files
committed
feat: Update Spring Boot 3.5.0, Spring Modulith 1.3.5, Hibernate 7.0.0.Final, Gradle Plugins: Spotless 7.0.3, CycloneDX 2.3.1
1 parent 11275ce commit e62d9de

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
## [Unreleased]
88
* Backend: Update to [Gradle 8.14.1](https://docs.gradle.org/8.14.1/release-notes.html)
99
* Backend: Provide an example how to [configure Codeberg.org as an OIDC IdP for the application](./backend/docs/EXAMPLE-CODEBERG-OIDC.md)
10+
* Backend: Update [Spring Boot 3.5.0](https://spring.io/blog/2025/05/22/spring-boot-3-5-0-available-now), Spring Modulith 1.3.5, Hibernate 7.0.0.Final, Gradle Plugins: Spotless 7.0.3, CycloneDX 2.3.1
1011

1112
## [0.0.9] - 2025-03-25
1213
* Backend: Hardened configuration of actuator and [improved configuration documentation](./backend/docs/CONFIGURE.md) around it

backend/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ plugins {
22
id 'java'
33
id 'jacoco'
44
id 'maven-publish'
5-
id 'org.springframework.boot' version '3.4.3'
5+
id 'org.springframework.boot' version '3.5.0'
66
id 'io.spring.dependency-management' version '1.1.7'
77
id 'com.github.ben-manes.versions' version '0.52.0'
8-
id 'com.diffplug.spotless' version '7.0.2'
9-
id 'org.cyclonedx.bom' version '2.1.0'
8+
id 'com.diffplug.spotless' version '7.0.3'
9+
id 'org.cyclonedx.bom' version '2.3.1'
1010
}
1111

1212
group = 'eu.zuinnote.example.springangular'
@@ -30,10 +30,10 @@ repositories {
3030
}
3131

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

backend/gradlew

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ fi
205205
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
206206

207207
# Collect all arguments for the java command:
208-
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
208+
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
209209
# and any embedded shellness will be escaped.
210210
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
211211
# treated as '${Hostname}' itself on the command line.

0 commit comments

Comments
 (0)