Skip to content

Bump the dependencies group across 1 directory with 28 updates - #20

Open
dependabot[bot] wants to merge 1 commit into
1.21.4from
dependabot/gradle/dependencies-5235eaf0f9
Open

Bump the dependencies group across 1 directory with 28 updates#20
dependabot[bot] wants to merge 1 commit into
1.21.4from
dependabot/gradle/dependencies-5235eaf0f9

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 23, 2026

Copy link
Copy Markdown
Contributor

Bumps the dependencies group with 27 updates in the / directory:

Package From To
com.github.rfresh2:JDA 6.4.31 6.5.35
com.github.rfresh2:MCProtocolLib 1.21.4.45 26.2.0.10
io.netty:netty-bom 4.2.12.Final 4.2.17.Final
org.redisson:redisson 4.3.1 4.7.0
com.github.rfresh2.fastutil.maps:object-object-maps 8.5.16 8.5.19
com.github.rfresh2.fastutil.maps:int-object-maps 8.5.16 8.5.19
com.github.rfresh2.fastutil.maps:object-int-maps 8.5.16 8.5.19
com.github.rfresh2.fastutil.maps:long-object-maps 8.5.16 8.5.19
com.github.rfresh2.fastutil.maps:int-int-maps 8.5.16 8.5.19
com.github.rfresh2.fastutil.maps:int-double-maps 8.5.16 8.5.19
com.github.rfresh2.fastutil.maps:reference-object-maps 8.5.16 8.5.19
com.github.rfresh2.fastutil.maps:long-double-maps 8.5.16 8.5.19
com.github.rfresh2.fastutil.queues:int-queues 8.5.16 8.5.19
org.jline:jline 4.0.10 4.3.1
com.zaxxer:HikariCP 7.0.2 7.1.0
org.postgresql:postgresql 42.7.10 42.7.13
org.jdbi:jdbi3-postgres 3.52.0 3.54.0
com.google.guava:guava 33.5.0-jre 33.7.1-jre
ch.qos.logback:logback-classic 1.5.32 1.6.3
tools.jackson:jackson-bom 3.1.1 3.2.2
org.junit:junit-bom 6.0.3 6.1.3
org.testcontainers:testcontainers 2.0.4 2.0.5
org.graalvm.sdk:nativeimage 25.0.2 25.2.4
org.graalvm.buildtools.native 1.0.0 1.1.10
com.gradleup.shadow 9.4.1 9.6.1
io.freefair.lombok 9.2.0 9.5.0
gradle-wrapper 9.4.1 9.7.1

Updates com.github.rfresh2:JDA from 6.4.31 to 6.5.35

Release notes

Sourced from com.github.rfresh2:JDA's releases.

v6.5.0 | Message Search API

Overview

This release adds support for the Message Search API, which allows bots to search messages in a guild. See Guild#searchMessages and MessageSearchAction for detailed documentation.

Example:

guild.searchMessages()
     .attachmentFilenames("cat.png")
     .includeAuthorTypes(MessageSearchAction.AuthorType.USER)
     .queue(response -> {
         if (response.isNotReady()) {
             int retryAfter = response.asNotReady().getRetryAfter();
             event.reply("The server is still indexing messages, try again later").queue();
             return;
         }
     List<Message> messages = response.asResults().getMessages();
     event.reply("Found %s messages of cats!".formatted(messages.size())).queue();
 });

Additionally, we made a minor change in the handling for received messages. For messages received in guilds JDA now handles events with missing member objects, which is necessary to handle messages that arrive shortly after a user is banned from the guild. These messages will contain members which are not added to cache and have no roles.

New Features

Changes

Full Changelog: discord-jda/JDA@v6.4.2...v6.5.0

Installation

Gradle

repositories {
    mavenCentral()
}
dependencies {
    implementation("net.dv8tion:JDA:6.5.0")
}

... (truncated)

Commits

Updates com.github.rfresh2:MCProtocolLib from 1.21.4.45 to 26.2.0.10

Updates io.netty:netty-bom from 4.2.12.Final to 4.2.17.Final

Release notes

Sourced from io.netty:netty-bom's releases.

netty-4.2.17.Final

What's Changed

New Contributors

... (truncated)

Commits
  • e0789d3 [maven-release-plugin] prepare release netty-4.2.17.Final
  • 1b5abc6 Merge changes from forks (#17213)
  • 36fbf57 Update surefire plugin to latest version (#17210)
  • a96226c Add .editorconfig to enforce consistent coding style (#17052)
  • 14a4e6a OpenSSL: Allow to obtain used named group via OpenSslSession (#17058)
  • 26255b1 Weakly reference engines from the OpenSSL engine map (#17199)
  • ae41417 HttpServerCodec: do not consume the method queue for 1xx interim responses ...
  • 41f1db5 Do not write WebSocket handshake response to the tail of the pipeline (#17192)
  • 035d76e Update compress-lzf to 1.2.1 (#17194)
  • 7681aff Fix JdkZlibDecompressor losing the tail of highly compressible streams (#17191)
  • Additional commits viewable in compare view

Updates org.redisson:redisson from 4.3.1 to 4.7.0

Release notes

Sourced from org.redisson:redisson's releases.

redisson-4.7.0

Feature - RMaps object added for mass operations with Map objects
Feature - Array based Circular Buffer object added
Feature - readNewest(), readOldest() and peekLast() methods added to RRingBuffer
Feature - countUnion(), countUnionApprox() and countDiff() methods added to RSet
Feature - maxCount() and maxSize() params added to RStream.read() and RStream.readGroup() methods
Feature - getAliases() method added to RSearch
Feature - move() method added to RQueue and RBlockingQueue
Feature - SetExpiredListener added for RSetCache
Feature - @RGetter and @RSetter annotations added instead of deprecated @RFieldAccessor
Feature - WorkerOptions.taskLateThreshold setting added
Feature - Hibernate 7.4.x support
Feature - trySetRate(), setRate(), getConfig() and tryAcquire() methods added to RGcra, old tryAcquire() methods deprecated (thanks to @​wushiyuanmaimob)
Feature - KeySetViewSerializer used by Kryo5Codec (thanks to @​olewehrmeyer)
Feature - Netty updated to 4.2.16.Final
Feature - Fory lib upgraded to 1.4.0

Improvement - RoundRobinLoadBalancer is now load balancing pubsub subscriptions
Improvement - failedSlaveNodeDetector setting is now applied only to slave nodes (thanks to @​rahulrane50)
Improvement - FailedNodeDetector instance is now copied per client instead of being shared (thanks to @​rahulrane50)
Improvement - redundant junit-bom import removed from redisson-spring-boot-starter (thanks to @​Develop-KIM)
Improvement - protobuf-java lib updated to 4.35.1
Improvement - zstd-jni lib updated to 1.5.7-12
Improvement - lz4-java lib updated to 1.11.1
Improvement - jackson-dataformat-msgpack lib updated to 0.9.12
Improvement - micronaut-inject lib updated to 3.10.6 in redisson-micronaut-30 module

Fixed - JCache fallback mode doesn't work for some methods
Fixed - JCache fallback mode doesn't handle incorrect password encryption format Fixed - EvictionTask cancellation race condition
Fixed - master should be registered even if slaves can't be reached (regression since 4.6.1)
Fixed - cluster lazy initialization parks caller threads indefinitely (thanks to @​yipeng09)
Fixed - cluster lazy initialization self-deadlocks if stale master entry is re-registered (thanks to @​yipeng09)
Fixed - cluster monitor spams "added slaves detected" if slaves aren't used (thanks to @​wushiyuanmaimob)
Fixed - username isn't inherited from cluster config endpoint by discovered nodes (thanks to @​wushiyuanmaimob)
Fixed - pubsub semaphore leak if subscription entry is missing (thanks to @​AliasJeff)
Fixed - read lock renewal entry leak (thanks to @​wushiyuanmaimob)
Fixed - tryLock() method throws timeout exception and redisson_lock_queue, redisson_lock_timeout keys aren't removed (thanks to @​seakider)
Fixed - codec mismatch isn't detected if the same name is reused in a transaction (thanks to @​fudianchn)
Fixed - ByteBuf leak in RedissonTransactionalBucket.isEquals() method (thanks to @​vasiliy-mikhailov)
Fixed - RMap.entrySet().contains() method always returns false (thanks to @​vasiliy-mikhailov)
Fixed - RSetMultimap.fastRemoveValueAsync() method always returns 0 (thanks to @​vasiliy-mikhailov)
Fixed - RReliableTopic.removeAllListeners() method throws NPE if there is no subscription (thanks to @​wushiyuanmaimob)
Fixed - isMinimalPutsEnabledByDefault() method should return false in redisson-hibernate-72 module

redisson-4.6.1

Fixed - ConnectionsHolder init-connection double release (thanks to @​yipeng09)
Fixed - AsyncSemaphore.tryRun() over-increment on cancelled waiters (thanks to @​yipeng09)
Fixed - AsyncSemaphore race condition
Fixed - non-cluster lazy initialization can park caller threads indefinitely (thanks to @​yipeng09)

... (truncated)

Changelog

Sourced from org.redisson:redisson's changelog.

04-August-2026 - 4.7.0 released

Feature - RMaps object added for mass operations with Map objects
Feature - Array based Circular Buffer object added
Feature - readNewest(), readOldest() and peekLast() methods added to RRingBuffer
Feature - countUnion(), countUnionApprox() and countDiff() methods added to RSet
Feature - maxCount() and maxSize() params added to RStream.read() and RStream.readGroup() methods
Feature - getAliases() method added to RSearch
Feature - move() method added to RQueue and RBlockingQueue
Feature - SetExpiredListener added for RSetCache
Feature - @RGetter and @RSetter annotations added instead of deprecated @RFieldAccessor
Feature - WorkerOptions.taskLateThreshold setting added
Feature - Hibernate 7.4.x support
Feature - trySetRate(), setRate(), getConfig() and tryAcquire() methods added to RGcra, old tryAcquire() methods deprecated (thanks to @​wushiyuanmaimob)
Feature - KeySetViewSerializer used by Kryo5Codec (thanks to @​olewehrmeyer)
Feature - Netty updated to 4.2.16.Final
Feature - Fory lib upgraded to 1.4.0

Improvement - RoundRobinLoadBalancer is now load balancing pubsub subscriptions
Improvement - failedSlaveNodeDetector setting is now applied only to slave nodes (thanks to @​rahulrane50)
Improvement - FailedNodeDetector instance is now copied per client instead of being shared (thanks to @​rahulrane50)
Improvement - redundant junit-bom import removed from redisson-spring-boot-starter (thanks to @​Develop-KIM)
Improvement - protobuf-java lib updated to 4.35.1
Improvement - zstd-jni lib updated to 1.5.7-12
Improvement - lz4-java lib updated to 1.11.1
Improvement - jackson-dataformat-msgpack lib updated to 0.9.12
Improvement - micronaut-inject lib updated to 3.10.6 in redisson-micronaut-30 module

Fixed - JCache fallback mode doesn't work for some methods
Fixed - JCache fallback mode doesn't handle incorrect password encryption format Fixed - EvictionTask cancellation race condition
Fixed - master should be registered even if slaves can't be reached (regression since 4.6.1)
Fixed - cluster lazy initialization parks caller threads indefinitely (thanks to @​yipeng09)
Fixed - cluster lazy initialization self-deadlocks if stale master entry is re-registered (thanks to @​yipeng09)
Fixed - cluster monitor spams "added slaves detected" if slaves aren't used (thanks to @​wushiyuanmaimob)
Fixed - username isn't inherited from cluster config endpoint by discovered nodes (thanks to @​wushiyuanmaimob)
Fixed - pubsub semaphore leak if subscription entry is missing (thanks to @​AliasJeff)
Fixed - read lock renewal entry leak (thanks to @​wushiyuanmaimob)
Fixed - tryLock() method throws timeout exception and redisson_lock_queue, redisson_lock_timeout keys aren't removed (thanks to @​seakider)
Fixed - codec mismatch isn't detected if the same name is reused in a transaction (thanks to @​fudianchn)
Fixed - ByteBuf leak in RedissonTransactionalBucket.isEquals() method (thanks to @​vasiliy-mikhailov)
Fixed - RMap.entrySet().contains() method always returns false (thanks to @​vasiliy-mikhailov)
Fixed - RSetMultimap.fastRemoveValueAsync() method always returns 0 (thanks to @​vasiliy-mikhailov)
Fixed - RReliableTopic.removeAllListeners() method throws NPE if there is no subscription (thanks to @​wushiyuanmaimob)
Fixed - isMinimalPutsEnabledByDefault() method should return false in redisson-hibernate-72 module

18-June-2026 - 4.6.1 released

Fixed - ConnectionsHolder init-connection double release (thanks to @​yipeng09)
Fixed - AsyncSemaphore.tryRun() over-increment on cancelled waiters (thanks to @​yipeng09)

... (truncated)

Commits
  • 0c286e8 [maven-release-plugin] prepare release redisson-4.7.0
  • 080df2c tests fixed
  • 0638773 Merge pull request #7270 from rahulrane50/rrane_failed_slave_detector_scope
  • 881ca6e Reuse default failed connection detector
  • d0ee4a1 Feature - RMaps object added. #7284
  • 1af28ca Feature - RMaps object added. #7284
  • 2c2beab refactoring
  • f699099 Merge branch 'master' of github.com:redisson/redisson
  • 118aa0a Merge pull request #7278 from AliasJeff/fix/redisson-7264-pubsub-semaphore
  • 55a8398 Merge pull request #7279 from fudianchn/fix/rtx-codec-mismatch-5127
  • Additional commits viewable in compare view

Updates com.github.rfresh2.fastutil.maps:object-object-maps from 8.5.16 to 8.5.19

Changelog

Sourced from com.github.rfresh2.fastutil.maps:object-object-maps's changelog.

8.5.19

  • Fixed BigArrays.getAndIncrement() for atomic big arrays, which was actually decrementing.

  • Fixed skip() for concatenated iterators, which could leave the iterator positioned on an exhausted component.

  • Fixed skip() for concatenated spliterators, which could throw an ArrayIndexOutOfBoundsException.

  • Fixed removal from the entry set of tree-map submaps, which ignored the submap range and the entry value.

  • Fixed deserialization of open-addressing big hash sets with load factor 1, which could produce a table without free entries.

  • Fixed decoding of lengths greater than or equal to 2^15 in short front-coded lists.

  • Fixed bounds checking in getElements() for immutable-list sublists.

  • Fixed changed(int) for array-based indirect priority queues, which could leave a stale cached minimum.

  • binarySearch() for floats and doubles is now consistent with the sorting order (-0 less than 0, NaN greatest).

  • Fixed integer overflow in trySplit() for wide int interval spliterators.

  • Fixed integer overflow in skip() and back() for int interval iterators near the extremal values.

  • Fixed file-descriptor leaks in the File-based BinIO loaders: the byte loadBytes(File...) methods leaked on every call, and the multi-byte loaders leaked on the end-of-file error path.

  • Fixed serialization of big-array big lists with more than 2^31 elements.

  • Fixed integer overflow in the swap phase of big-array sorting for more than 2^31 elements.

  • The expected-size argument of the big hash set constructor is now correctly checked for negativity.

  • Fixed a garbled index in an exception message of abstract-list sublists.

  • Fixed the upper-bound symbol in the out-of-range exception messages of tree-map and tree-set submaps and subsets.

... (truncated)

Commits

Updates com.github.rfresh2.fastutil.maps:int-object-maps from 8.5.16 to 8.5.19

Changelog

Sourced from com.github.rfresh2.fastutil.maps:int-object-maps's changelog.

8.5.19

  • Fixed BigArrays.getAndIncrement() for atomic big arrays, which was actually decrementing.

  • Fixed skip() for concatenated iterators, which could leave the iterator positioned on an exhausted component.

  • Fixed skip() for concatenated spliterators, which could throw an ArrayIndexOutOfBoundsException.

  • Fixed removal from the entry set of tree-map submaps, which ignored the submap range and the entry value.

  • Fixed deserialization of open-addressing big hash sets with load factor 1, which could produce a table without free entries.

  • Fixed decoding of lengths greater than or equal to 2^15 in short front-coded lists.

  • Fixed bounds checking in getElements() for immutable-list sublists.

  • Fixed changed(int) for array-based indirect priority queues, which could leave a stale cached minimum.

  • binarySearch() for floats and doubles is now consistent with the sorting order (-0 less than 0, NaN greatest).

  • Fixed integer overflow in trySplit() for wide int interval spliterators.

  • Fixed integer overflow in skip() and back() for int interval iterators near the extremal values.

  • Fixed file-descriptor leaks in the File-based BinIO loaders: the byte loadBytes(File...) methods leaked on every call, and the multi-byte loaders leaked on the end-of-file error path.

  • Fixed serialization of big-array big lists with more than 2^31 elements.

  • Fixed integer overflow in the swap phase of big-array sorting for more than 2^31 elements.

  • The expected-size argument of the big hash set constructor is now correctly checked for negativity.

  • Fixed a garbled index in an exception message of abstract-list sublists.

  • Fixed the upper-bound symbol in the out-of-range exception messages of tree-map and tree-set submaps and subsets.

... (truncated)

Commits

Updates com.github.rfresh2.fastutil.maps:object-int-maps from 8.5.16 to 8.5.19

Changelog

Sourced from com.github.rfresh2.fastutil.maps:object-int-maps's changelog.

8.5.19

  • Fixed BigArrays.getAndIncrement() for atomic big arrays, which was actually decrementing.

  • Fixed skip() for concatenated iterators, which could leave the iterator positioned on an exhausted component.

  • Fixed skip() for concatenated spliterators, which could throw an ArrayIndexOutOfBoundsException.

  • Fixed removal from the entry set of tree-map submaps, which ignored the submap range and the entry value.

  • Fixed deserialization of open-addressing big hash sets with load factor 1, which could produce a table without free entries.

  • Fixed decoding of lengths greater than or equal to 2^15 in short front-coded lists.

  • Fixed bounds checking in getElements() for immutable-list sublists.

  • Fixed changed(int) for array-based indirect priority queues, which could leave a stale cached minimum.

  • binarySearch() for floats and doubles is now consistent with the sorting order (-0 less than 0, NaN greatest).

  • Fixed integer overflow in trySplit() for wide int interval spliterators.

  • Fixed integer overflow in skip() and back() for int interval iterators near the extremal values.

  • Fixed file-descriptor leaks in the File-based BinIO loaders: the byte loadBytes(File...) methods leaked on every call, and the multi-byte loaders leaked on the end-of-file error path.

  • Fixed serialization of big-array big lists with more than 2^31 elements.

  • Fixed integer overflow in the swap phase of big-array sorting for more than 2^31 elements.

  • The expected-size argument of the big hash set constructor is now correctly checked for negativity.

  • Fixed a garbled index in an exception message of abstract-list sublists.

  • Fixed the upper-bound symbol in the out-of-range exception messages of tree-map and tree-set submaps and subsets.

... (truncated)

Commits

Updates com.github.rfresh2.fastutil.maps:long-object-maps from 8.5.16 to 8.5.19

Changelog

Sourced from com.github.rfresh2.fastutil.maps:long-object-maps's changelog.

8.5.19

  • Fixed BigArrays.getAndIncrement() for atomic big arrays, which was actually decrementing.

  • Fixed skip() for concatenated iterators, which could leave the iterator positioned on an exhausted component.

  • Fixed skip() for concatenated spliterators, which could throw an ArrayIndexOutOfBoundsException.

  • Fixed removal from the entry set of tree-map submaps, which ignored the submap range and the entry value.

  • Fixed deserialization of open-addressing big hash sets with load factor 1, which could produce a table without free entries.

  • Fixed decoding of lengths greater than or equal to 2^15 in short front-coded lists.

  • Fixed bounds checking in getElements() for immutable-list sublists.

  • Fixed changed(int) for array-based indirect priority queues, which could leave a stale cached minimum.

  • binarySearch() for floats and doubles is now consistent with the sorting order (-0 less than 0, NaN greatest).

  • Fixed integer overflow in trySplit() for wide int interval spliterators.

  • Fixed integer overflow in skip() and back() for int interval iterators near the extremal values.

  • Fixed file-descriptor leaks in the File-based BinIO loaders: the byte loadBytes(File...) methods leaked on every call, and the multi-byte loaders leaked on the end-of-file error path.

  • Fixed serialization of big-array big lists with more than 2^31 elements.

  • Fixed integer overflow in the swap phase of big-array sorting for more than 2^31 elements.

  • The expected-size argument of the big hash set constructor is now correctly checked for negativity.

  • Fixed a garbled index in an exception message of abstract-list sublists.

  • Fixed the upper-bound symbol in the out-of-range exception messages of tree-map and tree-set submaps and subsets.

... (truncated)

Commits

Updates com.github.rfresh2.fastutil.maps:int-int-maps from 8.5.16 to 8.5.19

Changelog

Sourced from com.github.rfresh2.fastutil.maps:int-int-maps's changelog.

8.5.19

  • Fixed BigArrays.getAndIncrement() for atomic big arrays, which was actually decrementing.

  • Fixed skip() for concatenated iterators, which could leave the iterator positioned on an exhausted component.

  • Fixed skip() for concatenated spliterators, which could throw an ArrayIndexOutOfBoundsException.

  • Fixed removal from the entry set of tree-map submaps, which ignored the submap range and the entry value.

  • Fixed deserialization of open-addressing big hash sets with load factor 1, which could produce a table without free entries.

  • Fixed decoding of lengths greater than or equal to 2^15 in short front-coded lists.

  • Fixed bounds checking in getElements() for immutable-list sublists.

  • Fixed changed(int) for array-based indirect priority queues, which could leave a stale cached minimum.

  • binarySearch() for floats and doubles is now consistent with the sorting order (-0 less than 0, NaN greatest).

  • Fixed integer overflow in trySplit() for wide int interval spliterators.

  • Fixed integer overflow in skip() and back() for int interval iterators near the extremal values.

  • Fixed file-descriptor leaks in the File-based BinIO loaders: the byte loadBytes(File...) methods leaked on every call, and the multi-byte loaders leaked on the end-of-file error path.

  • Fixed serialization of big-array big lists with more than 2^31 elements.

  • Fixed integer overflow in the swap phase of big-array sorting for more than 2^31 elements.

  • The expected-size argument of the big hash set constructor is now correctly checked for negativity.

  • Fixed a garbled index in an exception message of abstract-list sublists.

  • Fixed the upper-bound symbol in the out-of-range exception messages of tree-map and tree-set submaps and subsets.

... (truncated)

Commits

Updates com.github.rfresh2.fastutil.maps:int-double-maps from 8.5.16 to 8.5.19

Changelog

Sourced from com.github.rfresh2.fastutil.maps:int-double-maps's changelog.

8.5.19

  • Fixed BigArrays.getAndIncrement() for atomic big arrays, which was actually decrementing.

  • Fixed skip() for concatenated iterators, which could leave the iterator positioned on an exhausted component.

  • Fixed skip() for concatenated spliterators, which could throw an ArrayIndexOutOfBoundsException.

  • Fixed removal from the entry set of tree-map submaps, which ignored the submap range and the entry value.

  • Fixed deserialization of open-addressing big hash sets with load factor 1, which could produce a table without free entries.

  • Fixed decoding of lengths greater than or equal to 2^15 in short front-coded lists.

  • Fixed bounds checking in getElements() for immutable-list sublists.

  • Fixed changed(int) for array-based indirect priority queues, which could leave a stale cached minimum.

  • binarySearch() for floats and doubles is now consistent with the sorting order (-0 less than 0, NaN greatest).

  • Fixed integer overflow in trySplit() for wide int interval spliterators.

  • Fixed integer overflow in skip() and back() for int interval iterators near the extremal values.

  • Fixed file-descriptor leaks in the File-based BinIO loaders: the byte loadBytes(File...) methods leaked on every call, and the multi-byte loaders leaked on the end-of-file error path.

  • Fixed serialization of big-array big lists with more than 2^31 elements.

  • Fixed integer overflow in the swap phase of big-array sorting for more than 2^31 elements.

  • The expected-size argument of the big hash set constructor is now correctly checked for negativity.

  • Fixed a garbled index in an exception message of abstract-list sublists.

  • Fixed the upper-bound symbol in the out-of-range exception messages of tree-map and tree-set submaps and subsets.

... (truncated)

Commits

Updates com.github.rfresh2.fastutil.maps:reference-object-maps from 8.5.16 to 8.5.19

Changelog

Sourced from com.github.rfresh2.fastutil.maps:reference-object-maps's changelog.

8.5.19

  • Fixed BigArrays.getAndIncrement() for atomic big arrays, which was actually decrementing.

  • Fixed skip() for concatenated iterators, which could leave the iterator positioned on an exhausted component.

  • Fixed skip() for concatenated spliterators, which could throw an ArrayIndexOutOfBoundsException.

  • Fixed removal from the entry set of tree-map submaps, which ignored the submap range and the entry value.

  • Fixed deserialization of open-addressing big hash sets with load factor 1, which could produce a table without free entries.

  • Fixed decoding of lengths greater than or equal to 2^15 in short front-coded lists.

  • Fixed bounds checking in getElements() for immutable-list sublists.

  • Fixed changed(int) for array-based indirect priority queues, which could leave a stale cached minimum.

  • binarySearch() for floats and doubles is now consistent with the sorting order (-0 less than 0, NaN greatest).

  • Fixed integer overflow in trySplit() for wide int interval spliterators.

  • Fixed integer overflow in skip() and back() for int interval iterators near the extremal values.

  • Fixed file-descriptor leaks in the File-based BinIO loaders: the byte loadBytes(File...) methods leaked on every call, and the multi-byte loaders leaked on the end-of-file error path.

  • Fixed serialization of big-array big lists with more than 2^31 elements.

  • Fixed integer overflow in the swap phase of big-array sorting for more than 2^31 elements.

  • The expected-size argument of the big hash set constructor is now correctly checked for negativity.

  • Fixed a garbled index in an exception message of abstract-list sublists.

  • Fixed the upper-bound symbol in the out-of-range exception messages of tree-map and tree-set submaps and subsets.

... (truncated)

Commits

Updates com.github.rfresh2.fastutil.maps:long-double-maps from 8.5.16 to 8.5.19

Changelog

Sourced from com.github.rfresh2.fastutil.maps:long-double-maps's changelog.

8.5.19

  • Fixed BigArrays.getAndIncrement() for atomic big arrays, which was actually decrementing.

  • Fixed skip() for concatenated iterators, which could leave the iterator positioned on an exhausted component.

  • Fixed skip() for concatenated spliterators, which could throw an ArrayIndexOutOfBoundsException.

  • Fixed removal from the entry set of tree-map submaps, which ignored the submap range and the entry value.

  • Fixed deserialization of open-addressing big hash sets with load factor 1, which could produce a table without free entries.

  • Fixed decoding of lengths greater than or equal to 2^15 in short front-coded lists.

  • Fixed bounds checking in getElements() for immutable-list sublists.

  • Fixed changed(int) for array-based indirect priority queues, which could leave a stale cached minimum.

  • binarySearch() for floats and doubles is now consistent with the sorting order (-0 less than 0, NaN greatest).

  • Fixed integer overflow in trySplit() for wide int interval spliterators.

  • Fixed integer overflow in skip() and back() for int interval iterators near the extremal values.

  • Fixed file-descriptor leaks in the File-based BinIO loaders: the byte loadBytes(File...) methods leaked on every call, and the multi-byte loaders leaked on the end-of-file error path.

  • Fixed serialization of big-array big lists with more than 2^31 elements.

  • Fixed integer overflow in the swap phase of big-array sorting for more than 2^31 elements.

  • The expected-size argument of the big hash set constructor is now correctly checked for negativity.

  • Fixed a garbled index in an exception message of abstract-list sublists.

  • Fixed the upper-bound symbol in the out-of-range exception messages of tree-map and tree-set submaps and subsets.

... (truncated)

Commits

Updates com.github.rfresh2.fastutil.queues:int-queues from 8.5.16 to 8.5.19

Changelog

Sourced from com.github.rfresh2.fastutil.queues:int-queues's changelog.

8.5.19

  • Fixed BigArrays.getAndIncrement() for atomic big arrays, which was actually decrementing.

  • Fixed skip() for concatenated iterators, which could leave the iterator positioned on an exhausted component.

  • Fixed skip() for concatenated spliterators, which could throw an ArrayIndexOutOfBoundsException.

  • Fixed removal from the entry set of tree-map submaps, which ignored the submap range and the entry value.

  • Fixed deserialization of open-addressing big hash sets with load factor 1, which could produce a table without free entries.

  • Fixed decoding of lengths greater than or equal to 2^15 in short front-coded lists.

  • Fixed bounds checking in getElements() for immutable-list sublists.

  • Fixed changed(int) for array-based indirect priority queues, which could leave a stale cached minimum.

  • binarySearch() for floats and doubles is now consistent with the sorting order (-0 less than 0, NaN greatest).

  • Fixed integer overflow in trySplit() for wide int interval spliterators.

  • Fixed integer overflow in skip() and back() for int interval iterators near the extremal values.

  • Fixed file-descriptor leaks in the File-based BinIO loaders: the byte loadBytes(File...) methods leaked on every call, and the multi-byte loaders leaked on the end-of-file error path.

  • Fixed serialization of big-array big lists with more than 2^31 elements.

  • Fixed integer overflow in the swap phase of big-array sorting for more than 2^31 elements.

  • The expected-size argument of the big hash set constructor is now correctly checked for negativity.

  • Fixed a garbled index in an exception message of abstract-list sublists.

  • Fixed the upper-bound symbol in the out-of-range exception messages of tree-map and tree-set submaps and subsets.

... (truncated)

Commits

Updates com.github.rfresh2.fastutil.maps:int-object-maps from 8.5.16 to 8.5.19

Changelog

Sourced from com.github.rfresh2.fastutil.maps:int-object-maps's changelog.

8.5.19

  • Fixed BigArrays.getAndIncrement() for atomic big arrays, which was actually decrementing.

  • Fixed skip() for concatenated iterators, which could leave the iterator positioned on an exhausted component.

  • Fixed skip() for concatenated spliterators, which could throw an ArrayIndexOutOfBoundsException.

  • Fixed removal from the entry set of tree-map submaps, which ignored the submap range and the entry value.

  • Fixed deserialization of open-addressing big hash sets with load factor 1, which could produce a table without free entries.

  • Fixed decoding of lengths greater than or equal to 2^15 in short front-coded lists.

  • Fixed bounds checking in getElements() for immutable-list sublists.

  • Fixed changed(int) for array-based indirect priority queues, which could leave a stale cached minimum.

  • binarySearch() for floats and doubles is now consistent with the sorting order (-0 less than 0, NaN greatest).

  • Fixed integer overflow in trySplit() for wide int interval spliterators.

  • Fixed integer overflow in skip() and back() for int interval iterators near the extremal values.

  • Fixed file-descriptor leaks in the File-based BinIO loaders: the byte loadBytes(File...) methods leaked on every call, and the multi-byte loaders leaked on the end-of-file error path.

  • Fixed serialization of big-array big lists with more than 2^31 elements.

  • Fixed integer overflow in the swap phase of big-array sorting for more than 2^31 elements.

  • The expected-size argument of the big hash set constructor is now correctly checked for negativity.

  • Fixed a garbled index in an exception message of abstract-list sublists.

  • Fixed the upper-bound symbol in the out-of-range exception messages of tree-map and tree-set submaps and subsets.

... (truncated)

Commits

Updates com.github.rfresh2.fastutil.maps:object-int-maps from 8.5.16 to 8.5.19

Changelog

Sourced from com.github.rfresh2.fastutil.maps:object-int-maps's changelog.

8.5.19

  • Fixed BigArrays.getAndIncrement() for atomic big arrays, which was actually decrementing.

  • Fixed skip() for concatenated iterators, which could leave the iterator positioned on an exhausted component.

  • Fixed skip() for concatenated spliterators, which could throw an ArrayIndexOutOfBoundsException.

  • Fixed removal from the entry set of tree-map submaps, which ignored the submap range and the entry value.

  • Fixed deserialization of open-addressing big hash sets with load factor 1, which could produce a table without free entries.

  • Fixed decoding of lengths greater than or equal to 2^15 in short front-coded lists.

  • Fixed bounds checking in getElements() for immutable-list sublists.

  • Fixed changed(int) for array-based indirect priority queues, which could leave a stale cached minimum.

  • binarySearch() for floats and doubles is now consistent with the sorting order (-0 less than 0, NaN greatest).

  • Fixed integer overflow in trySplit() for wide int interval spliterators.

  • Fixed integer overflow in skip() and back() for int interval iterators near the extremal values.

  • Fixed file-descriptor leaks in the File-based BinIO loaders: the byte loadBytes(File...) methods leaked on every call, and the multi-byte loaders leaked on the end-of-file error path.

  • Fixed serialization of big-array big lists with more than 2^31 elements.

  • Fixed integer overflow in the swap phase of big-array sorting for more than 2^31 elements.

  • The expected-size argument of the big hash set constructor is now correctly checked for negativity.

  • Fixed a garbled index in an exception message of abstract-list sublists.

  • Fixed the upper-bound symbol in the out-of-range exception messages of tree-map and tree-set submaps and subsets.

... (truncated)

Commits

Updates com.github.rfresh2.fastutil.maps:long-object-maps from 8.5.16 to 8.5.19

Changelog

Sourced from com.github.rfresh2.fastutil.maps:long-object-maps's changelog.

8.5.19

  • Fixed BigArrays.getAndIncrement() for atomic big arrays, which was actually decrementing.

  • Fixed skip() for concatenated iterators, which could leave the iterator positioned on an exhausted component.

  • Fixed skip() for concatenated spliterators, which could throw an ArrayIndexOutOfBoundsException.

  • Fixed removal from the entry set of tree-map submaps, which ignored the submap range and the entry value.

  • Fixed deserialization of open-addressing big hash sets with load factor 1, which could produce a table without free entries.

  • Fixed decoding of lengths greater than or equal to 2^15 in short front-coded lists.

  • Fixed bounds checking in getElements() for immutable-list sublists.

  • Fixed changed(int) for array-based indirect priority queues, which could leave a stale cached minimum.

  • binarySearch() for floats and doubles is now consistent with the sorting order (-0 less than 0, NaN greatest).

  • Fixed integer overflow in trySplit() for wide int interval spliterators.

  • Fixed integer overflow in skip() and back() for int interval iterators near the extremal values.

  • Fixed file-descriptor leaks in the File-based BinIO loaders: the byte loadBytes(File...) methods leaked on every call, and the multi-byte loaders leaked on the end-of-file error path.

  • Fixed serialization of big-array big lists with more than 2^31 elements.

  • Fixed integer overflow in the swap phase of big-array sorting for more than 2^31 elements.

  • The expected-size argument of the big hash set constructor is now correctly checked for negativity.

  • Fixed a garbled index in an exception message of abstract-list sublists.

  • Fixed the upper-bound symbol in the out-of-range exception messages of tree-map and tree-set submaps and subsets.

... (truncated)

Commits

Updates com.github.rfresh2.fastutil.maps:int-int-maps from 8.5.16 to 8.5.19

Changelog

Sourced from com.github.rfresh2.fastutil.maps:int-int-maps's changelog.

8.5.19

  • Fixed BigArrays.getAndIncrement() for atomic big arrays, which was actually decrementing.

  • Fixed skip() for concatenated iterators, which could leave the iterator positioned on an exhausted component.

  • Fixed skip() for concatenated spliterators, which could throw an ArrayIndexOutOfBoundsException.

  • Fixed removal from the entry set of tree-map submaps, which ignored the submap range and the entry value.

  • Fixed deserialization of open-addressing big hash sets with load factor 1, which could produce a table without free entries.

  • Fixed decoding of lengths greater than or equal to 2^15 in short front-coded lists.

  • Description has been truncated

Bumps the dependencies group with 27 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [com.github.rfresh2:JDA](https://github.com/discord-jda/JDA) | `6.4.31` | `6.5.35` |
| com.github.rfresh2:MCProtocolLib | `1.21.4.45` | `26.2.0.10` |
| [io.netty:netty-bom](https://github.com/netty/netty) | `4.2.12.Final` | `4.2.17.Final` |
| [org.redisson:redisson](https://github.com/redisson/redisson) | `4.3.1` | `4.7.0` |
| [com.github.rfresh2.fastutil.maps:object-object-maps](https://github.com/rfresh2/fastutil) | `8.5.16` | `8.5.19` |
| [com.github.rfresh2.fastutil.maps:int-object-maps](https://github.com/rfresh2/fastutil) | `8.5.16` | `8.5.19` |
| [com.github.rfresh2.fastutil.maps:object-int-maps](https://github.com/rfresh2/fastutil) | `8.5.16` | `8.5.19` |
| [com.github.rfresh2.fastutil.maps:long-object-maps](https://github.com/rfresh2/fastutil) | `8.5.16` | `8.5.19` |
| [com.github.rfresh2.fastutil.maps:int-int-maps](https://github.com/rfresh2/fastutil) | `8.5.16` | `8.5.19` |
| [com.github.rfresh2.fastutil.maps:int-double-maps](https://github.com/rfresh2/fastutil) | `8.5.16` | `8.5.19` |
| [com.github.rfresh2.fastutil.maps:reference-object-maps](https://github.com/rfresh2/fastutil) | `8.5.16` | `8.5.19` |
| [com.github.rfresh2.fastutil.maps:long-double-maps](https://github.com/rfresh2/fastutil) | `8.5.16` | `8.5.19` |
| [com.github.rfresh2.fastutil.queues:int-queues](https://github.com/rfresh2/fastutil) | `8.5.16` | `8.5.19` |
| [org.jline:jline](https://github.com/jline/jline3) | `4.0.10` | `4.3.1` |
| [com.zaxxer:HikariCP](https://github.com/brettwooldridge/HikariCP) | `7.0.2` | `7.1.0` |
| [org.postgresql:postgresql](https://github.com/pgjdbc/pgjdbc) | `42.7.10` | `42.7.13` |
| [org.jdbi:jdbi3-postgres](https://github.com/jdbi/jdbi) | `3.52.0` | `3.54.0` |
| [com.google.guava:guava](https://github.com/google/guava) | `33.5.0-jre` | `33.7.1-jre` |
| [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) | `1.5.32` | `1.6.3` |
| [tools.jackson:jackson-bom](https://github.com/FasterXML/jackson-bom) | `3.1.1` | `3.2.2` |
| [org.junit:junit-bom](https://github.com/junit-team/junit-framework) | `6.0.3` | `6.1.3` |
| [org.testcontainers:testcontainers](https://github.com/testcontainers/testcontainers-java) | `2.0.4` | `2.0.5` |
| [org.graalvm.sdk:nativeimage](https://github.com/oracle/graal) | `25.0.2` | `25.2.4` |
| [org.graalvm.buildtools.native](https://github.com/graalvm/native-build-tools) | `1.0.0` | `1.1.10` |
| [com.gradleup.shadow](https://github.com/GradleUp/shadow) | `9.4.1` | `9.6.1` |
| [io.freefair.lombok](https://github.com/freefair/gradle-plugins) | `9.2.0` | `9.5.0` |
| [gradle-wrapper](https://github.com/gradle/gradle) | `9.4.1` | `9.7.1` |



Updates `com.github.rfresh2:JDA` from 6.4.31 to 6.5.35
- [Release notes](https://github.com/discord-jda/JDA/releases)
- [Commits](https://github.com/discord-jda/JDA/commits)

Updates `com.github.rfresh2:MCProtocolLib` from 1.21.4.45 to 26.2.0.10

Updates `io.netty:netty-bom` from 4.2.12.Final to 4.2.17.Final
- [Release notes](https://github.com/netty/netty/releases)
- [Commits](netty/netty@netty-4.2.12.Final...netty-4.2.17.Final)

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

Updates `com.github.rfresh2.fastutil.maps:object-object-maps` from 8.5.16 to 8.5.19
- [Changelog](https://github.com/rfresh2/fastutil/blob/develop/CHANGES)
- [Commits](https://github.com/rfresh2/fastutil/commits)

Updates `com.github.rfresh2.fastutil.maps:int-object-maps` from 8.5.16 to 8.5.19
- [Changelog](https://github.com/rfresh2/fastutil/blob/develop/CHANGES)
- [Commits](https://github.com/rfresh2/fastutil/commits)

Updates `com.github.rfresh2.fastutil.maps:object-int-maps` from 8.5.16 to 8.5.19
- [Changelog](https://github.com/rfresh2/fastutil/blob/develop/CHANGES)
- [Commits](https://github.com/rfresh2/fastutil/commits)

Updates `com.github.rfresh2.fastutil.maps:long-object-maps` from 8.5.16 to 8.5.19
- [Changelog](https://github.com/rfresh2/fastutil/blob/develop/CHANGES)
- [Commits](https://github.com/rfresh2/fastutil/commits)

Updates `com.github.rfresh2.fastutil.maps:int-int-maps` from 8.5.16 to 8.5.19
- [Changelog](https://github.com/rfresh2/fastutil/blob/develop/CHANGES)
- [Commits](https://github.com/rfresh2/fastutil/commits)

Updates `com.github.rfresh2.fastutil.maps:int-double-maps` from 8.5.16 to 8.5.19
- [Changelog](https://github.com/rfresh2/fastutil/blob/develop/CHANGES)
- [Commits](https://github.com/rfresh2/fastutil/commits)

Updates `com.github.rfresh2.fastutil.maps:reference-object-maps` from 8.5.16 to 8.5.19
- [Changelog](https://github.com/rfresh2/fastutil/blob/develop/CHANGES)
- [Commits](https://github.com/rfresh2/fastutil/commits)

Updates `com.github.rfresh2.fastutil.maps:long-double-maps` from 8.5.16 to 8.5.19
- [Changelog](https://github.com/rfresh2/fastutil/blob/develop/CHANGES)
- [Commits](https://github.com/rfresh2/fastutil/commits)

Updates `com.github.rfresh2.fastutil.queues:int-queues` from 8.5.16 to 8.5.19
- [Changelog](https://github.com/rfresh2/fastutil/blob/develop/CHANGES)
- [Commits](https://github.com/rfresh2/fastutil/commits)

Updates `com.github.rfresh2.fastutil.maps:int-object-maps` from 8.5.16 to 8.5.19
- [Changelog](https://github.com/rfresh2/fastutil/blob/develop/CHANGES)
- [Commits](https://github.com/rfresh2/fastutil/commits)

Updates `com.github.rfresh2.fastutil.maps:object-int-maps` from 8.5.16 to 8.5.19
- [Changelog](https://github.com/rfresh2/fastutil/blob/develop/CHANGES)
- [Commits](https://github.com/rfresh2/fastutil/commits)

Updates `com.github.rfresh2.fastutil.maps:long-object-maps` from 8.5.16 to 8.5.19
- [Changelog](https://github.com/rfresh2/fastutil/blob/develop/CHANGES)
- [Commits](https://github.com/rfresh2/fastutil/commits)

Updates `com.github.rfresh2.fastutil.maps:int-int-maps` from 8.5.16 to 8.5.19
- [Changelog](https://github.com/rfresh2/fastutil/blob/develop/CHANGES)
- [Commits](https://github.com/rfresh2/fastutil/commits)

Updates `com.github.rfresh2.fastutil.maps:int-double-maps` from 8.5.16 to 8.5.19
- [Changelog](https://github.com/rfresh2/fastutil/blob/develop/CHANGES)
- [Commits](https://github.com/rfresh2/fastutil/commits)

Updates `com.github.rfresh2.fastutil.maps:reference-object-maps` from 8.5.16 to 8.5.19
- [Changelog](https://github.com/rfresh2/fastutil/blob/develop/CHANGES)
- [Commits](https://github.com/rfresh2/fastutil/commits)

Updates `com.github.rfresh2.fastutil.maps:long-double-maps` from 8.5.16 to 8.5.19
- [Changelog](https://github.com/rfresh2/fastutil/blob/develop/CHANGES)
- [Commits](https://github.com/rfresh2/fastutil/commits)

Updates `com.github.rfresh2.fastutil.queues:int-queues` from 8.5.16 to 8.5.19
- [Changelog](https://github.com/rfresh2/fastutil/blob/develop/CHANGES)
- [Commits](https://github.com/rfresh2/fastutil/commits)

Updates `org.jline:jline` from 4.0.10 to 4.3.1
- [Release notes](https://github.com/jline/jline3/releases)
- [Commits](jline/jline3@4.0.10...4.3.1)

Updates `com.zaxxer:HikariCP` from 7.0.2 to 7.1.0
- [Changelog](https://github.com/brettwooldridge/HikariCP/blob/dev/CHANGES)
- [Commits](brettwooldridge/HikariCP@HikariCP-7.0.2...HikariCP-7.1.0)

Updates `org.postgresql:postgresql` from 42.7.10 to 42.7.13
- [Release notes](https://github.com/pgjdbc/pgjdbc/releases)
- [Changelog](https://github.com/pgjdbc/pgjdbc/blob/master/CHANGELOG.md)
- [Commits](pgjdbc/pgjdbc@REL42.7.10...REL42.7.13)

Updates `org.jdbi:jdbi3-postgres` from 3.52.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](jdbi/jdbi@v3.52.0...v3.54.0)

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

Updates `ch.qos.logback:logback-classic` from 1.5.32 to 1.6.3
- [Release notes](https://github.com/qos-ch/logback/releases)
- [Commits](qos-ch/logback@v_1.5.32...v_1.6.3)

Updates `tools.jackson:jackson-bom` from 3.1.1 to 3.2.2
- [Commits](FasterXML/jackson-bom@jackson-bom-3.1.1...jackson-bom-3.2.2)

Updates `org.junit:junit-bom` from 6.0.3 to 6.1.3
- [Release notes](https://github.com/junit-team/junit-framework/releases)
- [Commits](junit-team/junit-framework@r6.0.3...r6.1.3)

Updates `org.testcontainers:testcontainers` from 2.0.4 to 2.0.5
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/main/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-java@2.0.4...2.0.5)

Updates `org.testcontainers:testcontainers-junit-jupiter` from 2.0.4 to 2.0.5
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/main/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-java@2.0.4...2.0.5)

Updates `org.graalvm.sdk:nativeimage` from 25.0.2 to 25.2.4
- [Release notes](https://github.com/oracle/graal/releases)
- [Commits](oracle/graal@vm-25.0.2...vm-25.2.4)

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

Updates `com.gradleup.shadow` from 9.4.1 to 9.6.1
- [Release notes](https://github.com/GradleUp/shadow/releases)
- [Commits](GradleUp/shadow@9.4.1...9.6.1)

Updates `io.freefair.lombok` from 9.2.0 to 9.5.0
- [Release notes](https://github.com/freefair/gradle-plugins/releases)
- [Commits](freefair/gradle-plugins@9.2.0...9.5.0)

Updates `gradle-wrapper` from 9.4.1 to 9.7.1
- [Release notes](https://github.com/gradle/gradle/releases)
- [Commits](gradle/gradle@v9.4.1...v9.7.1)

---
updated-dependencies:
- dependency-name: com.github.rfresh2:JDA
  dependency-version: 6.5.35
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: com.github.rfresh2:MCProtocolLib
  dependency-version: 26.2.0.10
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: io.netty:netty-bom
  dependency-version: 4.2.17.Final
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.redisson:redisson
  dependency-version: 4.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: com.github.rfresh2.fastutil.maps:object-object-maps
  dependency-version: 8.5.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: com.github.rfresh2.fastutil.maps:int-object-maps
  dependency-version: 8.5.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: com.github.rfresh2.fastutil.maps:object-int-maps
  dependency-version: 8.5.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: com.github.rfresh2.fastutil.maps:long-object-maps
  dependency-version: 8.5.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: com.github.rfresh2.fastutil.maps:int-int-maps
  dependency-version: 8.5.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: com.github.rfresh2.fastutil.maps:int-double-maps
  dependency-version: 8.5.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: com.github.rfresh2.fastutil.maps:reference-object-maps
  dependency-version: 8.5.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: com.github.rfresh2.fastutil.maps:long-double-maps
  dependency-version: 8.5.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: com.github.rfresh2.fastutil.queues:int-queues
  dependency-version: 8.5.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: com.github.rfresh2.fastutil.maps:int-object-maps
  dependency-version: 8.5.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: com.github.rfresh2.fastutil.maps:object-int-maps
  dependency-version: 8.5.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: com.github.rfresh2.fastutil.maps:long-object-maps
  dependency-version: 8.5.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: com.github.rfresh2.fastutil.maps:int-int-maps
  dependency-version: 8.5.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: com.github.rfresh2.fastutil.maps:int-double-maps
  dependency-version: 8.5.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: com.github.rfresh2.fastutil.maps:reference-object-maps
  dependency-version: 8.5.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: com.github.rfresh2.fastutil.maps:long-double-maps
  dependency-version: 8.5.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: com.github.rfresh2.fastutil.queues:int-queues
  dependency-version: 8.5.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: 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: com.zaxxer:HikariCP
  dependency-version: 7.1.0
  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: com.google.guava:guava
  dependency-version: 33.7.1-jre
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: ch.qos.logback:logback-classic
  dependency-version: 1.6.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: tools.jackson:jackson-bom
  dependency-version: 3.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: org.junit:junit-bom
  dependency-version: 6.1.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: org.testcontainers:testcontainers
  dependency-version: 2.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.testcontainers:testcontainers-junit-jupiter
  dependency-version: 2.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.graalvm.sdk:nativeimage
  dependency-version: 25.2.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: org.graalvm.buildtools.native
  dependency-version: 1.1.10
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: com.gradleup.shadow
  dependency-version: 9.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: io.freefair.lombok
  dependency-version: 9.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: gradle-wrapper
  dependency-version: 9.7.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update java code labels Aug 23, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file java Pull requests that update java code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants