From d22c9c195a5c55f3775745924d48429713a7ceff Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Jul 2026 23:13:49 +0000 Subject: [PATCH] Bump the dependencies group with 5 updates Bumps the dependencies group with 5 updates: | Package | From | To | | --- | --- | --- | | [org.jline:jline](https://github.com/jline/jline3) | `4.2.1` | `4.3.1` | | [org.postgresql:postgresql](https://github.com/pgjdbc/pgjdbc) | `42.7.12` | `42.7.13` | | [org.jdbi:jdbi3-postgres](https://github.com/jdbi/jdbi) | `3.53.0` | `3.54.0` | | [org.graalvm.sdk:nativeimage](https://github.com/oracle/graal) | `25.0.3` | `25.1.3` | | [com.gradleup.shadow](https://github.com/GradleUp/shadow) | `9.4.3` | `9.5.1` | Updates `org.jline:jline` from 4.2.1 to 4.3.1 - [Release notes](https://github.com/jline/jline3/releases) - [Commits](https://github.com/jline/jline3/compare/4.2.1...4.3.1) Updates `org.postgresql:postgresql` from 42.7.12 to 42.7.13 - [Release notes](https://github.com/pgjdbc/pgjdbc/releases) - [Changelog](https://github.com/pgjdbc/pgjdbc/blob/master/CHANGELOG.md) - [Commits](https://github.com/pgjdbc/pgjdbc/compare/REL42.7.12...REL42.7.13) Updates `org.jdbi:jdbi3-postgres` from 3.53.0 to 3.54.0 - [Release notes](https://github.com/jdbi/jdbi/releases) - [Changelog](https://github.com/jdbi/jdbi/blob/master/RELEASE_NOTES.md) - [Commits](https://github.com/jdbi/jdbi/compare/v3.53.0...v3.54.0) Updates `org.graalvm.sdk:nativeimage` from 25.0.3 to 25.1.3 - [Release notes](https://github.com/oracle/graal/releases) - [Commits](https://github.com/oracle/graal/compare/vm-25.0.3...vm-25.1.3) Updates `com.gradleup.shadow` from 9.4.3 to 9.5.1 - [Release notes](https://github.com/GradleUp/shadow/releases) - [Commits](https://github.com/GradleUp/shadow/compare/9.4.3...9.5.1) --- updated-dependencies: - dependency-name: org.jline:jline dependency-version: 4.3.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: org.postgresql:postgresql dependency-version: 42.7.13 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: org.jdbi:jdbi3-postgres dependency-version: 3.54.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: org.graalvm.sdk:nativeimage dependency-version: 25.1.3 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: com.gradleup.shadow dependency-version: 9.5.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies ... Signed-off-by: dependabot[bot] --- build.gradle.kts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 59ed3251e..ad8983123 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,7 +1,7 @@ plugins { `java-library` id("org.graalvm.buildtools.native") version "1.1.3" - id("com.gradleup.shadow") version "9.4.3" + id("com.gradleup.shadow") version "9.5.1" id("io.freefair.lombok") version "9.5.0" `maven-publish` } @@ -77,11 +77,11 @@ dependencies { api("com.viaversion:viaversion-common:5.10.0") api("com.viaversion:viabackwards-common:5.10.0") api("com.viaversion:viarewind-common:4.1.2") - api("org.jline:jline:4.2.1") + api("org.jline:jline:4.3.1") api("ar.com.hjg:pngj:2.1.0") api("com.zaxxer:HikariCP:7.1.0") - api("org.postgresql:postgresql:42.7.12") - api("org.jdbi:jdbi3-postgres:3.53.0") + api("org.postgresql:postgresql:42.7.13") + api("org.jdbi:jdbi3-postgres:3.54.0") api("com.google.guava:guava:33.6.0-jre") api("ch.qos.logback:logback-classic:1.5.37") api("org.slf4j:slf4j-api:2.0.18") @@ -100,7 +100,7 @@ dependencies { testRuntimeOnly("org.junit.platform:junit-platform-launcher") compileOnly("com.google.auto.service:auto-service-annotations:1.1.1") annotationProcessor("com.google.auto.service:auto-service:1.1.1") - compileOnly("org.graalvm.sdk:nativeimage:25.0.3") + compileOnly("org.graalvm.sdk:nativeimage:25.1.3") } lombok {