Skip to content

Commit

Permalink
Update all non-major dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Nov 19, 2024
1 parent a419fc3 commit 5047e53
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
services:
db:
image: postgres:17.0
image: postgres:17.1
ports:
- 5432:5432
env:
Expand Down
12 changes: 6 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
val kotlinVersion = "2.0.21"
kotlin("jvm") version kotlinVersion
application
id("org.flywaydb.flyway") version "10.20.1"
id("org.flywaydb.flyway") version "10.21.0"
id("org.jetbrains.kotlin.plugin.serialization") version kotlinVersion
id("com.adarshr.test-logger") version "4.0.0"
id("com.expediagroup.graphql") version "8.2.1"
Expand All @@ -31,13 +31,13 @@ val ktorVersion = "3.0.1"
val logbackVersion = "1.5.12"
val coroutineVersion = "1.9.0"
val graphQLKotlinVersion = "8.2.1"
val flywayVersion = "10.20.1"
val sentryVersion = "7.16.0"
val flywayVersion = "10.21.0"
val sentryVersion = "7.17.0"

buildscript {
dependencies {
classpath("io.github.cdimascio:dotenv-kotlin:6.4.2")
classpath("org.flywaydb:flyway-database-postgresql:10.20.1")
classpath("org.flywaydb:flyway-database-postgresql:10.21.0")
}
}

Expand Down Expand Up @@ -89,12 +89,12 @@ dependencies {
implementation("mysql:mysql-connector-java:8.0.33")
implementation("org.postgresql:postgresql:42.7.4")
implementation("p6spy:p6spy:3.9.1")
implementation("com.zaxxer:HikariCP:6.1.0")
implementation("com.zaxxer:HikariCP:6.2.1")
implementation("io.insert-koin:koin-core:$koinVersion")
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.6.1")
implementation("io.github.cdimascio:dotenv-kotlin:6.4.2")
implementation("de.svenkubiak:jBCrypt:0.4.3")
implementation("io.konform:konform:0.8.0")
implementation("io.konform:konform:0.10.0")
implementation("io.lettuce:lettuce-core:6.5.0.RELEASE")
implementation("org.flywaydb:flyway-core:$flywayVersion")
implementation("org.flywaydb:flyway-mysql:$flywayVersion")
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3.9"
services:
postgres:
image: postgres:17.0
image: postgres:17.1
ports:
- "5432:5432"
volumes:
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down

0 comments on commit 5047e53

Please sign in to comment.