Skip to content

Commit

Permalink
Update dependency org.postgresql:postgresql to v42.7.5 (#244)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Jan 14, 2025
1 parent 5447f99 commit 48f38cd
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion sadu-examples/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dependencies {

// database driver
compileOnly("org.xerial", "sqlite-jdbc", "3.47.2.0")
compileOnly("org.postgresql", "postgresql", "42.7.4")
compileOnly("org.postgresql", "postgresql", "42.7.5")
compileOnly("org.mariadb.jdbc", "mariadb-java-client", "3.5.1")
compileOnly("mysql", "mysql-connector-java", "8.0.33")
}
2 changes: 1 addition & 1 deletion sadu-mapper/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description = "SADU module to map values received from a database to java object
dependencies {
api(project(":sadu-core"))

testImplementation("org.postgresql", "postgresql", "42.7.4")
testImplementation("org.postgresql", "postgresql", "42.7.5")
testImplementation(testlibs.bundles.junit)
testImplementation(project(":sadu-queries"))
testImplementation(project(":sadu-datasource"))
Expand Down
2 changes: 1 addition & 1 deletion sadu-postgresql/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dependencies {
api(project(":sadu-updater"))
api(project(":sadu-mapper"))

testImplementation("org.postgresql", "postgresql", "42.7.4")
testImplementation("org.postgresql", "postgresql", "42.7.5")
testImplementation(testlibs.bundles.junit)
testImplementation(project(":sadu-queries"))
testImplementation(project(":sadu-datasource"))
Expand Down
2 changes: 1 addition & 1 deletion sadu-queries/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
dependencies {
api(project(":sadu-core"))
api(project(":sadu-mapper"))
testImplementation("org.postgresql", "postgresql", "42.7.4")
testImplementation("org.postgresql", "postgresql", "42.7.5")
testImplementation(testlibs.bundles.junit)
testImplementation(project(":sadu-datasource"))
testImplementation(project(":sadu-postgresql"))
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ dependencyResolutionManagement {
library("slf4j-noop", "org.slf4j", "slf4j-nop").versionRef("slf4j")
library("slf4j-simple", "org.slf4j", "slf4j-simple").versionRef("slf4j")

library("driver-postgres", "org.postgresql:postgresql:42.7.4")
library("driver-postgres", "org.postgresql:postgresql:42.7.5")
library("driver-mariadb", "org.mariadb.jdbc:mariadb-java-client:3.5.1")
library("driver-sqlite", "org.xerial:sqlite-jdbc:3.47.2.0")
library("driver-mysql", "com.mysql:mysql-connector-j:9.1.0")
Expand Down

0 comments on commit 48f38cd

Please sign in to comment.