Skip to content

Commit de42195

Browse files
committed
feat: Gradle Plugins Spotless 7.2.1, BouncyCastle 1.81, Google Java Format 1.28.0, Jacoco 0.8.13
1 parent f12a24f commit de42195

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
## [0.0.10] - 2025-08-18
1010
* Backend: Update to [Gradle 9.0.0](https://docs.gradle.org/9.0.0/release-notes.html). Also enabling the new [configuration cache feature](https://docs.gradle.org/current/userguide/configuration_cache.html)
1111
* Backend: Provide an example how to [configure Codeberg.org as an OIDC IdP for the application](./backend/docs/EXAMPLE-CODEBERG-OIDC.md)
12-
* Backend: Update [Spring Boot 3.5.4](https://spring.io/blog/2025/05/22/spring-boot-3-5-0-available-now), Spring Modulith 1.4.2, Hibernate 7.1.0.Final, Gradle Plugins: Spotless 7.0.3, CycloneDX 2.3.1
12+
* Backend: Update [Spring Boot 3.5.4](https://spring.io/blog/2025/05/22/spring-boot-3-5-0-available-now), Spring Modulith 1.4.2, Hibernate 7.1.0.Final, Gradle Plugins: Spotless 7.2.1, CycloneDX 2.3.1, BouncyCastle 1.81, Google Java Format 1.28.0, Jacoco 0.8.13
1313
* Backend: Fixed SPACspNonceFilter - it originally omitted the end of line character when parsing static HTML files to insert CSPNonce. This lead to obscure bugs in the Angular frontend ("Unexpected end of input")
1414
* Backend: Added documentation how to generate Software Bill of Material (SBOM) for backend using [CycloneDX for Gradle](https://github.com/CycloneDX/cyclonedx-gradle-plugin)
1515
* Frontend: Update [Angular 20](https://blog.angular.dev/announcing-angular-v20-b5c9c06cf301)

backend/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
id 'org.springframework.boot' version '3.5.4'
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.3'
8+
id 'com.diffplug.spotless' version '7.2.1'
99
id 'org.cyclonedx.bom' version '2.3.1'
1010
}
1111

@@ -35,7 +35,7 @@ ext {
3535
set('ehcacheVersion','3.10.8')
3636
set('hibernateVersion','7.1.0.Final')
3737
set('disruptorVersion','4.0.0')
38-
set('bcVersion','1.80')
38+
set('bcVersion','1.81')
3939
set('owaspSanitizerVersion','20240325.1')
4040
}
4141

@@ -176,7 +176,7 @@ tasks.named('javadoc') {
176176

177177
// jacoco coverage reporting
178178
jacoco {
179-
toolVersion = "0.8.12"
179+
toolVersion = "0.8.13"
180180
}
181181

182182
// code formatting
@@ -195,7 +195,7 @@ spotless {
195195
// don't need to set target, it is inferred from java
196196

197197
// apply a specific flavor of google-java-format
198-
googleJavaFormat('1.25.2').aosp().reflowLongStrings()
198+
googleJavaFormat('1.28.0').aosp().reflowLongStrings()
199199
// make sure every file has the following copyright header.
200200
// optionally, Spotless can set copyright years by digging
201201
// through git history (see "license" section below)

0 commit comments

Comments
 (0)