Skip to content

Commit

Permalink
fix(deps): update dependency org.postgresql:postgresql to v42.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored and rainbowdashlabs committed Jan 23, 2024
1 parent 3560c24 commit a16f1ab
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sadu-examples/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ dependencies {

// database driver
compileOnly("org.xerial", "sqlite-jdbc", "3.44.0.0")
compileOnly("org.postgresql", "postgresql", "42.7.0")
compileOnly("org.postgresql", "postgresql", "42.7.1")
compileOnly("org.mariadb.jdbc", "mariadb-java-client", "3.3.0")
compileOnly("mysql", "mysql-connector-java", "8.0.33")
}
2 changes: 1 addition & 1 deletion sadu-postgresql/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description = "SADU module for interaction with a PostgreSQL database"
dependencies {
api(project(":sadu-updater"))

testImplementation("org.postgresql", "postgresql", "42.7.0")
testImplementation("org.postgresql", "postgresql", "42.7.1")
testImplementation(testlibs.bundles.junit)
testImplementation(project(":sadu-queries"))
testImplementation(project(":sadu-datasource"))
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ dependencyResolutionManagement {
version("slf4j", "2.0.9")
library("slf4j-noop", "org.slf4j", "slf4j-nop").versionRef("slf4j")

library("driver-postgres", "org.postgresql:postgresql:42.7.0")
library("driver-postgres", "org.postgresql:postgresql:42.7.1")
library("driver-mariadb", "org.mariadb.jdbc:mariadb-java-client:3.3.0")
library("driver-sqlite", "org.xerial:sqlite-jdbc:3.44.0.0")
library("driver-mysql", "com.mysql:mysql-connector-j:8.2.0")
Expand Down

0 comments on commit a16f1ab

Please sign in to comment.