Skip to content

Commit

Permalink
Bump the dependencies group with 6 updates
Browse files Browse the repository at this point in the history
Bumps the dependencies group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [org.redisson:redisson](https://github.com/redisson/redisson) | `3.39.0` | `3.40.2` |
| [org.jline:jline](https://github.com/jline/jline3) | `3.27.1` | `3.28.0` |
| [org.jline:jline-terminal-jni](https://github.com/jline/jline3) | `3.27.1` | `3.28.0` |
| [com.google.guava:guava](https://github.com/google/guava) | `33.3.1-jre` | `33.4.0-jre` |
| [org.junit.jupiter:junit-jupiter](https://github.com/junit-team/junit5) | `5.11.3` | `5.11.4` |
| [org.graalvm.buildtools.native](https://github.com/graalvm/native-build-tools) | `0.10.3` | `0.10.4` |


Updates `org.redisson:redisson` from 3.39.0 to 3.40.2
- [Release notes](https://github.com/redisson/redisson/releases)
- [Changelog](https://github.com/redisson/redisson/blob/master/CHANGELOG.md)
- [Commits](redisson/redisson@redisson-3.39.0...redisson-3.40.2)

Updates `org.jline:jline` from 3.27.1 to 3.28.0
- [Release notes](https://github.com/jline/jline3/releases)
- [Changelog](https://github.com/jline/jline3/blob/master/changelog.md)
- [Commits](jline/jline3@jline-3.27.1...jline-3.28.0)

Updates `org.jline:jline-terminal-jni` from 3.27.1 to 3.28.0
- [Release notes](https://github.com/jline/jline3/releases)
- [Changelog](https://github.com/jline/jline3/blob/master/changelog.md)
- [Commits](jline/jline3@jline-3.27.1...jline-3.28.0)

Updates `com.google.guava:guava` from 33.3.1-jre to 33.4.0-jre
- [Release notes](https://github.com/google/guava/releases)
- [Commits](https://github.com/google/guava/commits)

Updates `org.junit.jupiter:junit-jupiter` from 5.11.3 to 5.11.4
- [Release notes](https://github.com/junit-team/junit5/releases)
- [Commits](junit-team/junit5@r5.11.3...r5.11.4)

Updates `org.graalvm.buildtools.native` from 0.10.3 to 0.10.4
- [Release notes](https://github.com/graalvm/native-build-tools/releases)
- [Commits](graalvm/native-build-tools@0.10.3...0.10.4)

---
updated-dependencies:
- dependency-name: org.redisson:redisson
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: org.jline:jline
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: org.jline:jline-terminal-jni
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: com.google.guava:guava
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: org.junit.jupiter:junit-jupiter
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.graalvm.buildtools.native
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Dec 17, 2024
1 parent 7e39374 commit efa65ce
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import java.nio.file.Files

plugins {
java
id("org.graalvm.buildtools.native") version "0.10.3"
id("org.graalvm.buildtools.native") version "0.10.4"
id("com.gradleup.shadow") version "8.3.5"
`maven-publish`
}
Expand Down Expand Up @@ -71,7 +71,7 @@ dependencies {
implementation("io.netty:netty-resolver-dns-native-macos:$nettyVersion:osx-aarch_64")
implementation("org.cloudburstmc.math:api:2.0")
implementation("org.cloudburstmc.math:immutable:2.0")
implementation("org.redisson:redisson:3.39.0") {
implementation("org.redisson:redisson:3.40.2") {
exclude(group = "io.netty")
}
implementation("com.github.rfresh2:SimpleEventBus:1.2")
Expand All @@ -86,22 +86,22 @@ dependencies {
implementation("net.raphimc:ViaLoader:3.0.4")
implementation("com.viaversion:viaversion:5.2.0")
implementation("com.viaversion:viabackwards:5.2.0")
implementation("org.jline:jline:3.27.1")
implementation("org.jline:jline-terminal-jni:3.27.1")
implementation("org.jline:jline:3.28.0")
implementation("org.jline:jline-terminal-jni:3.28.0")
implementation("ar.com.hjg:pngj:2.1.0")
implementation("com.zaxxer:HikariCP:6.2.1")
implementation("org.postgresql:postgresql:42.7.4")
// todo: 3.46.0 introduces JFR support
// but it causes a runtime exception in graalvm native image if we do not build with JFR support
// which adds about 10mb to the binary size for zero benefit because we do not use jfr
implementation("org.jdbi:jdbi3-postgres:3.45.4")
implementation("com.google.guava:guava:33.3.1-jre")
implementation("com.google.guava:guava:33.4.0-jre")
implementation("ch.qos.logback:logback-classic:1.5.12")
implementation("org.slf4j:slf4j-api:2.0.16")
implementation("org.slf4j:jul-to-slf4j:2.0.16")
implementation("com.mojang:brigadier:1.3.10")
implementation("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.18.2")
testImplementation("org.junit.jupiter:junit-jupiter:5.11.3")
testImplementation("org.junit.jupiter:junit-jupiter:5.11.4")
val lombokVersion = "1.18.36"
compileOnly("org.projectlombok:lombok:$lombokVersion")
testCompileOnly("org.projectlombok:lombok:$lombokVersion")
Expand Down

0 comments on commit efa65ce

Please sign in to comment.