Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'java'
id 'org.springframework.boot' version '4.1.0'
id 'org.springframework.boot' version '4.1.1'
id 'io.spring.dependency-management' version '1.1.7'
id "com.github.ben-manes.versions" version "0.61.0"

Expand All @@ -15,6 +15,12 @@ java {
}
}

// Force the patched PostgreSQL JDBC driver ahead of the Spring Boot 4.1.1 BOM (which still manages
// 42.7.11). 42.7.12 fixes GHSA-j92g-9f8w-j867 (silent channel-binding auth downgrade). The demo defaults
// to MariaDB and never opens a Postgres connection, so this is supply-chain hygiene rather than an active
// fix; drop this override once a future Boot BOM manages 42.7.12+.
ext['postgresql.version'] = '42.7.12'

// Define the configurations used in the project
configurations {
// Keep developmentOnly out of runtimeOnly, and so out of the boot jar. spring-boot-docker-compose
Expand Down
Loading