Handle Spring Boot 4.1 modules in changelog generation

Closes gh-49273
This commit is contained in:
Stéphane Nicoll
2026-02-20 14:38:22 +01:00
parent 66841ddb3a
commit cfee3f10f4
@@ -43,8 +43,7 @@ nullability {
}
def dependenciesOf(String version) {
if (version.startsWith("4.0")) {
return [
def springBoot40Modules = [
"spring-boot",
"spring-boot-activemq",
"spring-boot-actuator",
@@ -148,17 +147,23 @@ def dependenciesOf(String version) {
"spring-boot-webservices",
"spring-boot-webservices-test",
"spring-boot-zipkin"
]
]
if (version.startsWith("4.0")) {
return springBoot40Modules
}
else if (version.startsWith("4.1")) {
// Alter Spring Boot 4.0 modules if necessary
return springBoot40Modules
}
return [
"spring-boot",
"spring-boot-actuator",
"spring-boot-actuator-autoconfigure",
"spring-boot-autoconfigure",
"spring-boot-devtools",
"spring-boot-docker-compose",
"spring-boot-test-autoconfigure",
"spring-boot-testcontainers"
"spring-boot",
"spring-boot-actuator",
"spring-boot-actuator-autoconfigure",
"spring-boot-autoconfigure",
"spring-boot-devtools",
"spring-boot-docker-compose",
"spring-boot-test-autoconfigure",
"spring-boot-testcontainers"
]
}