Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 1, 2025

Bumps the versions group with 27 updates:

Package From To
net.dv8tion:JDA 6.0.0-preview 6.1.0
ru.astrainteractive.klibs:kstorage 4.2.3 4.4.1
ru.astrainteractive.klibs:mikro-core 1.14.2 1.16.0
ru.astrainteractive.klibs:mikro-extensions 1.14.2 1.16.0
com.charleskorn.kaml:kaml 0.98.0 0.102.0
io.ktor:ktor-client-cio 3.3.0 3.3.1
io.ktor:ktor-client-content-negotiation 3.3.0 3.3.1
io.ktor:ktor-client-core 3.3.0 3.3.1
io.ktor:ktor-client-json 3.3.0 3.3.1
io.ktor:ktor-client-logging 3.3.0 3.3.1
io.ktor:ktor-serialization-kotlinx-json 3.3.0 3.3.1
net.kyori:adventure-text-serializer-plain 4.24.0 4.25.0
net.kyori:adventure-api 4.24.0 4.25.0
net.kyori:adventure-text-serializer-gson 4.24.0 4.25.0
net.kyori:adventure-text-serializer-legacy 4.24.0 4.25.0
net.kyori:adventure-text-minimessage 4.24.0 4.25.0
com.discordsrv:discordsrv 1.30.1 1.30.2
net.fabricmc.fabric-api:fabric-api 0.134.1+ 0.136.3+1.21.11
net.fabricmc:fabric-language-kotlin 1.13.1+ 1.13.7+kotlin.2.2.21
net.fabricmc:fabric-loader 0.17.2 0.17.3
com.github.retrooper:packetevents-spigot 2.9.5 2.10.0
org.telegram:telegrambots-client 9.1.0 9.2.0
org.telegram:telegrambots-extensions 9.1.0 9.2.0
org.telegram:telegrambots-longpolling 9.1.0 9.2.0
org.junit:junit-bom 6.0.0 6.0.1
org.junit.jupiter:junit-jupiter-api 6.0.0 6.0.1
fabric-loom 1.11.8 1.12.5

Updates net.dv8tion:JDA from 6.0.0-preview to 6.1.0

Release notes

Sourced from net.dv8tion:JDA's releases.

v6.1.0 | Modal File Uploads

Overview

This release primarily adds support for file uploads in modals.

Creating a Modal accepting file uploads

Modal.create("modal-id", "Banner Update")
  .addComponents(Label.of("Banner Image", AttachmentUpload.of("banner-file")))
  .build()

Using the uploaded file

@Override
public void onModalInteraction(@NotNull ModalInteractionEvent event) {
    event.reply("The banner is being updated.").setEphemeral(true).queue();
Message.Attachment attachment = event.getValue("cat-img").getAsAttachmentList().get(0);
attachment.getProxy()
    .downloadAsIcon()
    .thenCompose(icon -> event.getGuild().getSelfMember().getManager().setBanner(icon).submit())
    .exceptionally(e -> {
        RestAction.getDefaultFailure().accept(e);
        return null;
    });

}

New Features

Full Changelog: discord-jda/JDA@v6.0.0...v6.1.0

Installation

Gradle

repositories {
    mavenCentral()
}
dependencies {
    implementation("net.dv8tion:JDA:6.1.0")
</tr></table> 

... (truncated)

Commits

Updates ru.astrainteractive.klibs:kstorage from 4.2.3 to 4.4.1

Commits

Updates ru.astrainteractive.klibs:mikro-core from 1.14.2 to 1.16.0

Commits

Updates ru.astrainteractive.klibs:mikro-extensions from 1.14.2 to 1.16.0

Commits

Updates ru.astrainteractive.klibs:mikro-extensions from 1.14.2 to 1.16.0

Commits

Updates com.charleskorn.kaml:kaml from 0.98.0 to 0.102.0

Release notes

Sourced from com.charleskorn.kaml:kaml's releases.

0.102.0

0.102.0 (2025-10-25)

Dependency Updates

  • update dependency com.squareup.okio:okio to v3.16.2 (#769) (a2f0dfd)

0.101.0

0.101.0 (2025-10-25)

Chores

  • don't trigger release on KSP plugin updates (0c10c5f)

Dependency Updates

0.100.0

0.100.0 (2025-10-25)

Dependency Updates

  • update snakeyaml-engine-kmp to 4.0.1 (#779) (d37a636)

0.99.0

0.99.0 (2025-10-22)

Dependency Updates

  • internal: update actions/setup-node action to v6 (#771) (9a61118)
  • internal: update dependency semantic-release to v25 (#773) (b71f5b2)
  • internal: update dependency semantic-release to v25.0.1 (#775) (01b7753)
  • internal: update kotest to v6.0.4 (#772) (6fcbd4f)
  • internal: update softprops/action-gh-release action to v2.4.1 (#770) (41367a2)
  • update plugin com.google.devtools.ksp to v2.3.0 (#778) (82ad6f3)
Commits
  • a2f0dfd deps: update dependency com.squareup.okio:okio to v3.16.2 (#769)
  • 3840ff8 deps: update kotlin to v2.2.21 (#756)
  • 0c10c5f chore: don't trigger release on KSP plugin updates
  • d37a636 deps: update snakeyaml-engine-kmp to 4.0.1 (#779)
  • 82ad6f3 deps: update plugin com.google.devtools.ksp to v2.3.0 (#778)
  • 01b7753 deps(internal): update dependency semantic-release to v25.0.1 (#775)
  • b71f5b2 deps(internal): update dependency semantic-release to v25 (#773)
  • 6fcbd4f deps(internal): update kotest to v6.0.4 (#772)
  • 9a61118 deps(internal): update actions/setup-node action to v6 (#771)
  • 41367a2 deps(internal): update softprops/action-gh-release action to v2.4.1 (#770)
  • See full diff in compare view

Updates io.ktor:ktor-client-cio from 3.3.0 to 3.3.1

Release notes

Sourced from io.ktor:ktor-client-cio's releases.

3.3.1

Published 8 October 2025

Improvements

  • Add a note about SSE session lifetime in KDoc (KTOR-8440)
  • Update Kotlin to 2.2.20 (KTOR-8896)

Bugfixes

  • NumberFormatException when Content-Length header value contains null bytes (KTOR-4828)
  • SerializationException: Serializer for class 'ClientSSESession' is not found when server responds with JSON (KTOR-7631)
  • Netty: loadConfiguration missing enableHttp2 and enableH2c properties (KTOR-8898)
  • Netty: EmbeddedServer.stop always blocks for twice of shutdownGracePeriod (KTOR-8770)
  • shutdownGracePeriod is used instead of shutdownTimeout in EmbeddedServer.stop() (KTOR-8771)
  • Support serving static resources within bootJar (KTOR-8592)
Changelog

Sourced from io.ktor:ktor-client-cio's changelog.

3.3.1

Published 8 October 2025

Improvements

  • Add a note about SSE session lifetime in KDoc (KTOR-8440)
  • Update Kotlin to 2.2.20 (KTOR-8896)

Bugfixes

  • NumberFormatException when Content-Length header value contains null bytes (KTOR-4828)
  • SerializationException: Serializer for class 'ClientSSESession' is not found when server responds with JSON (KTOR-7631)
  • Netty: loadConfiguration missing enableHttp2 and enableH2c properties (KTOR-8898)
  • Netty: EmbeddedServer.stop always blocks for twice of shutdownGracePeriod (KTOR-8770)
  • shutdownGracePeriod is used instead of shutdownTimeout in EmbeddedServer.stop() (KTOR-8771)
  • Support serving static resources within bootJar (KTOR-8592)
Commits
  • 49fb2bf Add changelog for 3.3.1 (#5120)
  • f905acf Release 3.3.1 (#5117)
  • 57ad521 KTOR-4828 Fix NumberFormatException when Content-Length value is invalid (#5110)
  • cd423ef KTOR-8898: add netty config load: enableHttp2 and enableH2c
  • c21922b KTOR-8440 Add a note about SSE session lifetime in KDoc (#5107)
  • 5ef7cb2 KTOR-8770 Fix double shutdownGracePeriod on Netty (#5102)
  • a3bef60 KTOR-8740 Fill in missing attributes for HTMX DSL (#5097)
  • afe1593 KTOR-8790 Remove apiCheck task (#5096)
  • 8c5903f Resolve flaky test issues with JS (#5098)
  • 2f512cf KTOR-7631 Fix SerializationException when ContentNegotiation installed before...
  • Additional commits viewable in compare view

Updates io.ktor:ktor-client-content-negotiation from 3.3.0 to 3.3.1

Release notes

Sourced from io.ktor:ktor-client-content-negotiation's releases.

3.3.1

Published 8 October 2025

Improvements

  • Add a note about SSE session lifetime in KDoc (KTOR-8440)
  • Update Kotlin to 2.2.20 (KTOR-8896)

Bugfixes

  • NumberFormatException when Content-Length header value contains null bytes (KTOR-4828)
  • SerializationException: Serializer for class 'ClientSSESession' is not found when server responds with JSON (KTOR-7631)
  • Netty: loadConfiguration missing enableHttp2 and enableH2c properties (KTOR-8898)
  • Netty: EmbeddedServer.stop always blocks for twice of shutdownGracePeriod (KTOR-8770)
  • shutdownGracePeriod is used instead of shutdownTimeout in EmbeddedServer.stop() (KTOR-8771)
  • Support serving static resources within bootJar (KTOR-8592)
Changelog

Sourced from io.ktor:ktor-client-content-negotiation's changelog.

3.3.1

Published 8 October 2025

Improvements

  • Add a note about SSE session lifetime in KDoc (KTOR-8440)
  • Update Kotlin to 2.2.20 (KTOR-8896)

Bugfixes

  • NumberFormatException when Content-Length header value contains null bytes (KTOR-4828)
  • SerializationException: Serializer for class 'ClientSSESession' is not found when server responds with JSON (KTOR-7631)
  • Netty: loadConfiguration missing enableHttp2 and enableH2c properties (KTOR-8898)
  • Netty: EmbeddedServer.stop always blocks for twice of shutdownGracePeriod (KTOR-8770)
  • shutdownGracePeriod is used instead of shutdownTimeout in EmbeddedServer.stop() (KTOR-8771)
  • Support serving static resources within bootJar (KTOR-8592)
Commits
  • 49fb2bf Add changelog for 3.3.1 (#5120)
  • f905acf Release 3.3.1 (#5117)
  • 57ad521 KTOR-4828 Fix NumberFormatException when Content-Length value is invalid (#5110)
  • cd423ef KTOR-8898: add netty config load: enableHttp2 and enableH2c
  • c21922b KTOR-8440 Add a note about SSE session lifetime in KDoc (#5107)
  • 5ef7cb2 KTOR-8770 Fix double shutdownGracePeriod on Netty (#5102)
  • a3bef60 KTOR-8740 Fill in missing attributes for HTMX DSL (#5097)
  • afe1593 KTOR-8790 Remove apiCheck task (#5096)
  • 8c5903f Resolve flaky test issues with JS (#5098)
  • 2f512cf KTOR-7631 Fix SerializationException when ContentNegotiation installed before...
  • Additional commits viewable in compare view

Updates io.ktor:ktor-client-core from 3.3.0 to 3.3.1

Release notes

Sourced from io.ktor:ktor-client-core's releases.

3.3.1

Published 8 October 2025

Improvements

  • Add a note about SSE session lifetime in KDoc (KTOR-8440)
  • Update Kotlin to 2.2.20 (KTOR-8896)

Bugfixes

  • NumberFormatException when Content-Length header value contains null bytes (KTOR-4828)
  • SerializationException: Serializer for class 'ClientSSESession' is not found when server responds with JSON (KTOR-7631)
  • Netty: loadConfiguration missing enableHttp2 and enableH2c properties (KTOR-8898)
  • Netty: EmbeddedServer.stop always blocks for twice of shutdownGracePeriod (KTOR-8770)
  • shutdownGracePeriod is used instead of shutdownTimeout in EmbeddedServer.stop() (KTOR-8771)
  • Support serving static resources within bootJar (KTOR-8592)
Changelog

Sourced from io.ktor:ktor-client-core's changelog.

3.3.1

Published 8 October 2025

Improvements

  • Add a note about SSE session lifetime in KDoc (KTOR-8440)
  • Update Kotlin to 2.2.20 (KTOR-8896)

Bugfixes

  • NumberFormatException when Content-Length header value contains null bytes (KTOR-4828)
  • SerializationException: Serializer for class 'ClientSSESession' is not found when server responds with JSON (KTOR-7631)
  • Netty: loadConfiguration missing enableHttp2 and enableH2c properties (KTOR-8898)
  • Netty: EmbeddedServer.stop always blocks for twice of shutdownGracePeriod (KTOR-8770)
  • shutdownGracePeriod is used instead of shutdownTimeout in EmbeddedServer.stop() (KTOR-8771)
  • Support serving static resources within bootJar (KTOR-8592)
Commits
  • 49fb2bf Add changelog for 3.3.1 (#5120)
  • f905acf Release 3.3.1 (#5117)
  • 57ad521 KTOR-4828 Fix NumberFormatException when Content-Length value is invalid (#5110)
  • cd423ef KTOR-8898: add netty config load: enableHttp2 and enableH2c
  • c21922b KTOR-8440 Add a note about SSE session lifetime in KDoc (#5107)
  • 5ef7cb2 KTOR-8770 Fix double shutdownGracePeriod on Netty (#5102)
  • a3bef60 KTOR-8740 Fill in missing attributes for HTMX DSL (#5097)
  • afe1593 KTOR-8790 Remove apiCheck task (#5096)
  • 8c5903f Resolve flaky test issues with JS (#5098)
  • 2f512cf KTOR-7631 Fix SerializationException when ContentNegotiation installed before...
  • Additional commits viewable in compare view

Updates io.ktor:ktor-client-json from 3.3.0 to 3.3.1

Release notes

Sourced from io.ktor:ktor-client-json's releases.

3.3.1

Published 8 October 2025

Improvements

  • Add a note about SSE session lifetime in KDoc (KTOR-8440)
  • Update Kotlin to 2.2.20 (KTOR-8896)

Bugfixes

  • NumberFormatException when Content-Length header value contains null bytes (KTOR-4828)
  • SerializationException: Serializer for class 'ClientSSESession' is not found when server responds with JSON (KTOR-7631)
  • Netty: loadConfiguration missing enableHttp2 and enableH2c properties (KTOR-8898)
  • Netty: EmbeddedServer.stop always blocks for twice of shutdownGracePeriod (KTOR-8770)
  • shutdownGracePeriod is used instead of shutdownTimeout in EmbeddedServer.stop() (KTOR-8771)
  • Support serving static resources within bootJar (KTOR-8592)
Changelog

Sourced from io.ktor:ktor-client-json's changelog.

3.3.1

Published 8 October 2025

Improvements

  • Add a note about SSE session lifetime in KDoc (KTOR-8440)
  • Update Kotlin to 2.2.20 (KTOR-8896)

Bugfixes

  • NumberFormatException when Content-Length header value contains null bytes (KTOR-4828)
  • SerializationException: Serializer for class 'ClientSSESession' is not found when server responds with JSON (KTOR-7631)
  • Netty: loadConfiguration missing enableHttp2 and enableH2c properties (KTOR-8898)
  • Netty: EmbeddedServer.stop always blocks for twice of shutdownGracePeriod (KTOR-8770)
  • shutdownGracePeriod is used instead of shutdownTimeout in EmbeddedServer.stop() (KTOR-8771)
  • Support serving static resources within bootJar (KTOR-8592)
Commits
  • 49fb2bf Add changelog for 3.3.1 (#5120)
  • f905acf Release 3.3.1 (#5117)
  • 57ad521 KTOR-4828 Fix NumberFormatException when Content-Length value is invalid (#5110)
  • cd423ef KTOR-8898: add netty config load: enableHttp2 and enableH2c
  • c21922b KTOR-8440 Add a note about SSE session lifetime in KDoc (#5107)
  • 5ef7cb2 KTOR-8770 Fix double shutdownGracePeriod on Netty (#5102)
  • a3bef60 KTOR-8740 Fill in missing attributes for HTMX DSL (#5097)
  • afe1593 KTOR-8790 Remove apiCheck task (#5096)
  • 8c5903f Resolve flaky test issues with JS (#5098)
  • 2f512cf KTOR-7631 Fix SerializationException when ContentNegotiation installed before...
  • Additional commits viewable in compare view

Updates io.ktor:ktor-client-logging from 3.3.0 to 3.3.1

Release notes

Sourced from io.ktor:ktor-client-logging's releases.

3.3.1

Published 8 October 2025

Improvements

  • Add a note about SSE session lifetime in KDoc (KTOR-8440)
  • Update Kotlin to 2.2.20 (KTOR-8896)

Bugfixes

  • NumberFormatException when Content-Length header value contains null bytes (KTOR-4828)
  • SerializationException: Serializer for class 'ClientSSESession' is not found when server responds with JSON (KTOR-7631)
  • Netty: loadConfiguration missing enableHttp2 and enableH2c properties (KTOR-8898)
  • Netty: EmbeddedServer.stop always blocks for twice of shutdownGracePeriod (KTOR-8770)
  • shutdownGracePeriod is used instead of shutdownTimeout in EmbeddedServer.stop() (KTOR-8771)
  • Support serving static resources within bootJar (KTOR-8592)
Changelog

Sourced from io.ktor:ktor-client-logging's changelog.

3.3.1

Published 8 October 2025

Improvements

  • Add a note about SSE session lifetime in KDoc (KTOR-8440)
  • Update Kotlin to 2.2.20 (KTOR-8896)

Bugfixes

  • NumberFormatException when Content-Length header value contains null bytes (KTOR-4828)
  • SerializationException: Serializer for class 'ClientSSESession' is not found when server responds with JSON (KTOR-7631)
  • Netty: loadConfiguration missing enableHttp2 and enableH2c properties (KTOR-8898)
  • Netty: EmbeddedServer.stop always blocks for twice of shutdownGracePeriod (KTOR-8770)
  • shutdownGracePeriod is used instead of shutdownTimeout in EmbeddedServer.stop() (KTOR-8771)
  • Support serving static resources within bootJar (KTOR-8592)
Commits
  • 49fb2bf Add changelog for 3.3.1 (#5120)
  • f905acf Release 3.3.1 (#5117)
  • 57ad521 KTOR-4828 Fix NumberFormatException when Content-Length value is invalid (#5110)
  • cd423ef KTOR-8898: add netty config load: enableHttp2 and enableH2c
  • c21922b KTOR-8440 Add a note about SSE session lifetime in KDoc (#5107)
  • 5ef7cb2 KTOR-8770 Fix double shutdownGracePeriod on Netty (#5102)
  • a3bef60 KTOR-8740 Fill in missing attributes for HTMX DSL (#5097)
  • afe1593 KTOR-8790 Remove apiCheck task (#5096)
  • 8c5903f Resolve flaky test issues with JS (#5098)
  • 2f512cf KTOR-7631 Fix SerializationException when ContentNegotiation installed before...
  • Additional commits viewable in compare view

Updates io.ktor:ktor-serialization-kotlinx-json from 3.3.0 to 3.3.1

Release notes

Sourced from io.ktor:ktor-serialization-kotlinx-json's releases.

3.3.1

Published 8 October 2025

Improvements

  • Add a note about SSE session lifetime in KDoc (KTOR-8440)
  • Update Kotlin to 2.2.20 (KTOR-8896)

Bugfixes

  • NumberFormatException when Content-Length header value contains null bytes (KTOR-4828)
  • SerializationException: Serializer for class 'ClientSSESession' is not found when server responds with JSON (KTOR-7631)
  • Netty: loadConfiguration missing enableHttp2 and enableH2c properties (KTOR-8898)
  • Netty: EmbeddedServer.stop always blocks for twice of shutdownGracePeriod (KTOR-8770)
  • shutdownGracePeriod is used instead of shutdownTimeout in EmbeddedServer.stop() (KTOR-8771)
  • Support serving static resources within bootJar (KTOR-8592)
Changelog

Sourced from io.ktor:ktor-serialization-kotlinx-json's changelog.

3.3.1

Published 8 October 2025

Improvements

  • Add a note about SSE session lifetime in KDoc (KTOR-8440)
  • Update Kotlin to 2.2.20 (KTOR-8896)

Bugfixes

  • NumberFormatException when Content-Length header value contains null bytes (KTOR-4828)
  • SerializationException: Serializer for class 'ClientSSESession' is not found when server responds with JSON (KTOR-7631)
  • Netty: loadConfiguration missing enableHttp2 and enableH2c properties (KTOR-8898)
  • Netty: EmbeddedServer.stop always blocks for twice of shutdownGracePeriod (KTOR-8770)
  • shutdownGracePeriod is used instead of shutdownTimeout in EmbeddedServer.stop() (KTOR-8771)
  • Support serving static resources within bootJar (KTOR-8592)
Commits
  • 49fb2bf Add changelog for 3.3.1 (#5120)
  • f905acf Release 3.3.1 (#5117)
  • 57ad521 KTOR-4828 Fix NumberFormatException when Content-Length value is invalid (#5110)
  • cd423ef KTOR-8898: add netty config load: enableHttp2 and enableH2c
  • c21922b KTOR-8440 Add a note about SSE session lifetime in KDoc (#5107)
  • 5ef7cb2 KTOR-8770 Fix double shutdownGracePeriod on Netty (#5102)
  • a3bef60 KTOR-8740 Fill in missing attributes for HTMX DSL (#5097)
  • afe1593 KTOR-8790 Remove apiCheck task (#5096)
  • 8c5903f Resolve flaky test issues with JS (#5098)
  • 2f512cf KTOR-7631 Fix SerializationException when ContentNegotiation installed before...
  • Additional commits viewable in compare view

Updates io.ktor:ktor-client-content-negotiation from 3.3.0 to 3.3.1

Release notes

Sourced from io.ktor:ktor-client-content-negotiation's releases.

3.3.1

Published 8 October 2025

Improvements

  • Add a note about SSE session lifetime in KDoc (KTOR-8440)
  • Update Kotlin to 2.2.20 (KTOR-8896)

Bugfixes

  • NumberFormatException when Content-Length header value contains null bytes (KTOR-4828)
  • SerializationException: Serializer for class 'ClientSSESession' is not found when server responds with JSON (KTOR-7631)
  • Netty: loadConfiguration missing enableHttp2 and enableH2c properties (KTOR-8898)
  • Netty: EmbeddedServer.stop always blocks for twice of shutdownGracePeriod (KTOR-8770)
  • shutdownGracePeriod is used instead of shutdownTimeout in EmbeddedServer.stop() (KTOR-8771)
  • Support serving static resources within bootJar (KTOR-8592)
Changelog

Sourced from io.ktor:ktor-client-content-negotiation's changelog.

3.3.1

Published 8 October 2025

Improvements

  • Add a note about SSE session lifetime in KDoc (KTOR-8440)
  • Update Kotlin to 2.2.20 (KTOR-8896)

Bugfixes

  • NumberFormatException when Content-Length header value contains null bytes (KTOR-4828)
  • SerializationException: Serializer for class 'ClientSSESession' is not found when server responds with JSON (KTOR-7631)
  • Netty: loadConfiguration missing enableHttp2 and enableH2c properties (KTOR-8898)
  • Netty: EmbeddedServer.stop always blocks for twice of shutdownGracePeriod (KTOR-8770)
  • shutdownGracePeriod is used instead of shutdownTimeout in EmbeddedServer.stop() (KTOR-8771)
  • Support serving static resources within bootJar (KTOR-8592)
Commits
  • 49fb2bf Add changelog for 3.3.1 (#5120)
  • f905acf Release 3.3.1 (#5117)
  • 57ad521 KTOR-4828 Fix NumberFormatException when Content-Length value is invalid (#5110)
  • cd423ef KTOR-8898: add netty config load: enableHttp2 and enableH2c
  • c21922b KTOR-8440 Add a note about SSE session lifetime in KDoc (#5107)
  • 5ef7cb2 KTOR-8770 Fix double shutdownGracePeriod on Netty (#5102)
  • a3bef60 KTOR-8740 Fill in missing attributes for HTMX DSL (#5097)
  • afe1593 KTOR-8790 Remove apiCheck task (#5096)
  • 8c5903f Resolve flaky test issues with JS (#5098)
  • 2f512cf KTOR-7631 Fix SerializationException when ContentNegotiation installed before...
  • Additional commits viewable in compare view

Updates io.ktor:ktor-client-core from 3.3.0 to 3.3.1

Release notes

Sourced from io.ktor:ktor-client-core's releases.

3.3.1

Published 8 October 2025

Improvements

  • Add a note about SSE session lifetime in KDoc (KTOR-8440)
  • Update Kotlin to 2.2.20 (KTOR-8896)

Bugfixes

  • NumberFormatException when Content-Length header value contains null bytes (KTOR-4828)
  • SerializationException: Serializer for class 'ClientSSESession' is not found when server responds with JSON (KTOR-7631)
  • Netty: loadConfiguration missing enableHttp2 and enableH2c properties (KTOR-8898)
  • Netty: EmbeddedServer.stop always blocks for twice of shutdownGracePeriod (KTOR-8770)
  • shutdownGracePeriod is used instead of shutdownTimeout in EmbeddedServer.stop() (KTOR-8771)
  • Support serving static resources within bootJar (KTOR-8592)
Changelog

Sourced from io.ktor:ktor-client-core's changelog.

3.3.1

Published 8 October 2025

Improvements

  • Add a note about SSE session lifetime in KDoc (KTOR-8440)
  • Update Kotlin to 2.2.20 (KTOR-8896)

Bugfixes

  • NumberFormatException when Content-Length header value contains null bytes (KTOR-4828)
  • SerializationException: Serializer for class 'ClientSSESession' is not found when server responds with JSON (KTOR-7631)
  • Netty: loadConfiguration missing enableHttp2 and enableH2c properties (KTOR-8898)
  • Netty: EmbeddedServer.stop always blocks for twice of shutdownGracePeriod (KTOR-8770)
  • shutdownGracePeriod is used instead of shutdownTimeout in EmbeddedServer.stop() (KTOR-8771)
  • Support serving static resources within bootJar (KTOR-8592)
Commits
  • 49fb2bf Add changelog for 3.3.1 (#5120)
  • f905acf Release 3.3.1 (#5117)
  • 57ad521 KTOR-4828 Fix NumberFormatException when Content-Length value is invalid (#5110)
  • cd423ef KTOR-8898: add netty config load: enableHttp2 and enableH2c
  • c21922b KTOR-8440 Add a note about SSE session lifetime in KDoc (#5107)
  • 5ef7cb2 KTOR-8770 Fix double shutdownGracePeriod on Netty (#5102)
  • a3bef60 KTOR-8740 Fill in missing attributes for HTMX DSL (#5097)
  • afe1593 KTOR-8790 Remove apiCheck task (#5096)
  • 8c5903f Resolve flaky test issues with JS (#5098)
  • 2f512cf KTOR-7631 Fix SerializationException when ContentNegotiation installed before...
  • Additional commits viewable in compare view

Updates io.ktor:ktor-client-json from 3.3.0 to 3.3.1

Release notes

Sourced from io.ktor:ktor-client-json's releases.

3.3.1

Published 8 October 2025

Improvements

  • Add a note about SSE session lifetime in KDoc (KTOR-8440)
  • Update Kotlin to 2.2.20 (KTOR-8896)

Bugfixes

  • NumberFormatException when Content-Length header value contains null bytes (KTOR-4828)
  • SerializationException: Serializer for class 'ClientSSESession' is not found when server responds with JSON (KTOR-7631)
  • Netty: loadConfiguration missing enableHttp2 and enableH2c properties (KTOR-8898)
  • Netty: EmbeddedServer.stop always blocks for twice of shutdownGracePeriod (KTOR-8770)
  • shutdownGracePeriod is used instead of shutdownTimeout in EmbeddedServer.stop() (KTOR-8771)
  • Support serving static resources within bootJar (KTOR-8592)
Changelog

Sourced from io.ktor:ktor-client-json's changelog.

3.3.1

Published 8 October 2025

Improvements

  • Add a note about SSE session lifetime in KDoc (KTOR-8440)
  • Update Kotlin to 2.2.20 (KTOR-8896)

Bugfixes

  • NumberFormatException when Content-Length header value contains null bytes (KTOR-4828)
  • SerializationException: Serializer for class 'ClientSSESession' is not found when server responds with JSON (KTOR-7631)
  • Netty: loadConfiguration missing enableHttp2 and enableH2c properties (KTOR-8898)
  • Netty: EmbeddedServer.stop always blocks for twice of shutdownGracePeriod (KTOR-8770)
  • shutdownGracePeriod is used instead of shutdownTimeout in EmbeddedServer.stop() (KTOR-8771)
  • Support serving static resources within bootJar (KTOR-8592)
Commits
  • 49fb2bf Add changelog for 3.3.1 (#5120)
  • f905acf Release 3.3.1 (#5117)
  • 57ad521 KTOR-4828 Fix NumberFormatException when Content-Length value is invalid (#5110)
  • cd423ef KTOR-8898: add netty config load: enableHttp2 and enableH2c
  • c21922b KTOR-8440 Add a note about SSE session lifetime in KDoc (#5107)
  • 5ef7cb2 KTOR-8770 Fix double shutdownGracePeriod on Netty (#5102)
  • a3bef60 KTOR-8740 Fill in missing attributes for HTMX DSL (#5097)
  • afe1593 KTOR-8790 Remove apiCheck task (#5096)
  • 8c5903f Resolve flaky test issues with JS (#5098)
  • 2f512cf KTOR-7631 Fix SerializationException when ContentNegotiation installed before...
  • Additional commits viewable in compare view

Updates io.ktor:ktor-client-logging from 3.3.0 to 3.3.1

Release notes

Sourced from Description has been truncated

Bumps the versions group with 27 updates:

| Package | From | To |
| --- | --- | --- |
| [net.dv8tion:JDA](https://github.com/discord-jda/JDA) | `6.0.0-preview` | `6.1.0` |
| [ru.astrainteractive.klibs:kstorage](https://github.com/makeevrserg/klibs.kstorage) | `4.2.3` | `4.4.1` |
| [ru.astrainteractive.klibs:mikro-core](https://github.com/makeevrserg/klibs.mikro) | `1.14.2` | `1.16.0` |
| [ru.astrainteractive.klibs:mikro-extensions](https://github.com/makeevrserg/klibs.mikro) | `1.14.2` | `1.16.0` |
| [com.charleskorn.kaml:kaml](https://github.com/charleskorn/kaml) | `0.98.0` | `0.102.0` |
| [io.ktor:ktor-client-cio](https://github.com/ktorio/ktor) | `3.3.0` | `3.3.1` |
| [io.ktor:ktor-client-content-negotiation](https://github.com/ktorio/ktor) | `3.3.0` | `3.3.1` |
| [io.ktor:ktor-client-core](https://github.com/ktorio/ktor) | `3.3.0` | `3.3.1` |
| [io.ktor:ktor-client-json](https://github.com/ktorio/ktor) | `3.3.0` | `3.3.1` |
| [io.ktor:ktor-client-logging](https://github.com/ktorio/ktor) | `3.3.0` | `3.3.1` |
| [io.ktor:ktor-serialization-kotlinx-json](https://github.com/ktorio/ktor) | `3.3.0` | `3.3.1` |
| [net.kyori:adventure-text-serializer-plain](https://github.com/KyoriPowered/adventure) | `4.24.0` | `4.25.0` |
| [net.kyori:adventure-api](https://github.com/KyoriPowered/adventure) | `4.24.0` | `4.25.0` |
| [net.kyori:adventure-text-serializer-gson](https://github.com/KyoriPowered/adventure) | `4.24.0` | `4.25.0` |
| [net.kyori:adventure-text-serializer-legacy](https://github.com/KyoriPowered/adventure) | `4.24.0` | `4.25.0` |
| [net.kyori:adventure-text-minimessage](https://github.com/KyoriPowered/adventure) | `4.24.0` | `4.25.0` |
| com.discordsrv:discordsrv | `1.30.1` | `1.30.2` |
| [net.fabricmc.fabric-api:fabric-api](https://github.com/FabricMC/fabric) | `0.134.1+` | `0.136.3+1.21.11` |
| net.fabricmc:fabric-language-kotlin | `1.13.1+` | `1.13.7+kotlin.2.2.21` |
| net.fabricmc:fabric-loader | `0.17.2` | `0.17.3` |
| [com.github.retrooper:packetevents-spigot](https://github.com/retrooper/packetevents) | `2.9.5` | `2.10.0` |
| [org.telegram:telegrambots-client](https://github.com/rubenlagus/TelegramBots) | `9.1.0` | `9.2.0` |
| [org.telegram:telegrambots-extensions](https://github.com/rubenlagus/TelegramBots) | `9.1.0` | `9.2.0` |
| [org.telegram:telegrambots-longpolling](https://github.com/rubenlagus/TelegramBots) | `9.1.0` | `9.2.0` |
| [org.junit:junit-bom](https://github.com/junit-team/junit-framework) | `6.0.0` | `6.0.1` |
| [org.junit.jupiter:junit-jupiter-api](https://github.com/junit-team/junit-framework) | `6.0.0` | `6.0.1` |
| fabric-loom | `1.11.8` | `1.12.5` |


Updates `net.dv8tion:JDA` from 6.0.0-preview to 6.1.0
- [Release notes](https://github.com/discord-jda/JDA/releases)
- [Commits](https://github.com/discord-jda/JDA/commits/v6.1.0)

Updates `ru.astrainteractive.klibs:kstorage` from 4.2.3 to 4.4.1
- [Release notes](https://github.com/makeevrserg/klibs.kstorage/releases)
- [Commits](makeevrserg/klibs.kstorage@4.2.3...4.4.1)

Updates `ru.astrainteractive.klibs:mikro-core` from 1.14.2 to 1.16.0
- [Release notes](https://github.com/makeevrserg/klibs.mikro/releases)
- [Commits](makeevrserg/klibs.mikro@1.14.2...1.16.0)

Updates `ru.astrainteractive.klibs:mikro-extensions` from 1.14.2 to 1.16.0
- [Release notes](https://github.com/makeevrserg/klibs.mikro/releases)
- [Commits](makeevrserg/klibs.mikro@1.14.2...1.16.0)

Updates `ru.astrainteractive.klibs:mikro-extensions` from 1.14.2 to 1.16.0
- [Release notes](https://github.com/makeevrserg/klibs.mikro/releases)
- [Commits](makeevrserg/klibs.mikro@1.14.2...1.16.0)

Updates `com.charleskorn.kaml:kaml` from 0.98.0 to 0.102.0
- [Release notes](https://github.com/charleskorn/kaml/releases)
- [Changelog](https://github.com/charleskorn/kaml/blob/main/.releaserc.yml)
- [Commits](charleskorn/kaml@0.98.0...0.102.0)

Updates `io.ktor:ktor-client-cio` from 3.3.0 to 3.3.1
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.3.0...3.3.1)

Updates `io.ktor:ktor-client-content-negotiation` from 3.3.0 to 3.3.1
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.3.0...3.3.1)

Updates `io.ktor:ktor-client-core` from 3.3.0 to 3.3.1
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.3.0...3.3.1)

Updates `io.ktor:ktor-client-json` from 3.3.0 to 3.3.1
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.3.0...3.3.1)

Updates `io.ktor:ktor-client-logging` from 3.3.0 to 3.3.1
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.3.0...3.3.1)

Updates `io.ktor:ktor-serialization-kotlinx-json` from 3.3.0 to 3.3.1
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.3.0...3.3.1)

Updates `io.ktor:ktor-client-content-negotiation` from 3.3.0 to 3.3.1
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.3.0...3.3.1)

Updates `io.ktor:ktor-client-core` from 3.3.0 to 3.3.1
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.3.0...3.3.1)

Updates `io.ktor:ktor-client-json` from 3.3.0 to 3.3.1
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.3.0...3.3.1)

Updates `io.ktor:ktor-client-logging` from 3.3.0 to 3.3.1
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.3.0...3.3.1)

Updates `io.ktor:ktor-serialization-kotlinx-json` from 3.3.0 to 3.3.1
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.3.0...3.3.1)

Updates `net.kyori:adventure-text-serializer-plain` from 4.24.0 to 4.25.0
- [Release notes](https://github.com/KyoriPowered/adventure/releases)
- [Commits](PaperMC/adventure@v4.24.0...v4.25.0)

Updates `net.kyori:adventure-api` from 4.24.0 to 4.25.0
- [Release notes](https://github.com/KyoriPowered/adventure/releases)
- [Commits](PaperMC/adventure@v4.24.0...v4.25.0)

Updates `net.kyori:adventure-text-serializer-gson` from 4.24.0 to 4.25.0
- [Release notes](https://github.com/KyoriPowered/adventure/releases)
- [Commits](PaperMC/adventure@v4.24.0...v4.25.0)

Updates `net.kyori:adventure-text-serializer-legacy` from 4.24.0 to 4.25.0
- [Release notes](https://github.com/KyoriPowered/adventure/releases)
- [Commits](PaperMC/adventure@v4.24.0...v4.25.0)

Updates `net.kyori:adventure-text-minimessage` from 4.24.0 to 4.25.0
- [Release notes](https://github.com/KyoriPowered/adventure/releases)
- [Commits](PaperMC/adventure@v4.24.0...v4.25.0)

Updates `net.kyori:adventure-text-serializer-gson` from 4.24.0 to 4.25.0
- [Release notes](https://github.com/KyoriPowered/adventure/releases)
- [Commits](PaperMC/adventure@v4.24.0...v4.25.0)

Updates `net.kyori:adventure-text-serializer-legacy` from 4.24.0 to 4.25.0
- [Release notes](https://github.com/KyoriPowered/adventure/releases)
- [Commits](PaperMC/adventure@v4.24.0...v4.25.0)

Updates `net.kyori:adventure-text-minimessage` from 4.24.0 to 4.25.0
- [Release notes](https://github.com/KyoriPowered/adventure/releases)
- [Commits](PaperMC/adventure@v4.24.0...v4.25.0)

Updates `com.discordsrv:discordsrv` from 1.30.1 to 1.30.2

Updates `net.fabricmc.fabric-api:fabric-api` from 0.134.1+ to 0.136.3+1.21.11
- [Release notes](https://github.com/FabricMC/fabric/releases)
- [Commits](https://github.com/FabricMC/fabric/commits)

Updates `net.fabricmc:fabric-language-kotlin` from 1.13.1+ to 1.13.7+kotlin.2.2.21

Updates `net.fabricmc:fabric-loader` from 0.17.2 to 0.17.3

Updates `com.github.retrooper:packetevents-spigot` from 2.9.5 to 2.10.0
- [Release notes](https://github.com/retrooper/packetevents/releases)
- [Changelog](https://github.com/retrooper/packetevents/blob/2.0/CHANGELOG.md)
- [Commits](retrooper/packetevents@v2.9.5...v2.10.0)

Updates `org.telegram:telegrambots-client` from 9.1.0 to 9.2.0
- [Release notes](https://github.com/rubenlagus/TelegramBots/releases)
- [Commits](rubenlagus/TelegramBots@v9.1.0...v9.2.0)

Updates `org.telegram:telegrambots-extensions` from 9.1.0 to 9.2.0
- [Release notes](https://github.com/rubenlagus/TelegramBots/releases)
- [Commits](rubenlagus/TelegramBots@v9.1.0...v9.2.0)

Updates `org.telegram:telegrambots-longpolling` from 9.1.0 to 9.2.0
- [Release notes](https://github.com/rubenlagus/TelegramBots/releases)
- [Commits](rubenlagus/TelegramBots@v9.1.0...v9.2.0)

Updates `org.telegram:telegrambots-extensions` from 9.1.0 to 9.2.0
- [Release notes](https://github.com/rubenlagus/TelegramBots/releases)
- [Commits](rubenlagus/TelegramBots@v9.1.0...v9.2.0)

Updates `org.telegram:telegrambots-longpolling` from 9.1.0 to 9.2.0
- [Release notes](https://github.com/rubenlagus/TelegramBots/releases)
- [Commits](rubenlagus/TelegramBots@v9.1.0...v9.2.0)

Updates `org.junit:junit-bom` from 6.0.0 to 6.0.1
- [Release notes](https://github.com/junit-team/junit-framework/releases)
- [Commits](junit-team/junit-framework@r6.0.0...r6.0.1)

Updates `org.junit.jupiter:junit-jupiter-api` from 6.0.0 to 6.0.1
- [Release notes](https://github.com/junit-team/junit-framework/releases)
- [Commits](junit-team/junit-framework@r6.0.0...r6.0.1)

Updates `fabric-loom` from 1.11.8 to 1.12.5

---
updated-dependencies:
- dependency-name: net.dv8tion:JDA
  dependency-version: 6.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.klibs:kstorage
  dependency-version: 4.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.klibs:mikro-core
  dependency-version: 1.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.klibs:mikro-extensions
  dependency-version: 1.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.klibs:mikro-extensions
  dependency-version: 1.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: com.charleskorn.kaml:kaml
  dependency-version: 0.102.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: io.ktor:ktor-client-cio
  dependency-version: 3.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: io.ktor:ktor-client-content-negotiation
  dependency-version: 3.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: io.ktor:ktor-client-core
  dependency-version: 3.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: io.ktor:ktor-client-json
  dependency-version: 3.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: io.ktor:ktor-client-logging
  dependency-version: 3.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: io.ktor:ktor-serialization-kotlinx-json
  dependency-version: 3.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: io.ktor:ktor-client-content-negotiation
  dependency-version: 3.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: io.ktor:ktor-client-core
  dependency-version: 3.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: io.ktor:ktor-client-json
  dependency-version: 3.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: io.ktor:ktor-client-logging
  dependency-version: 3.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: io.ktor:ktor-serialization-kotlinx-json
  dependency-version: 3.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: net.kyori:adventure-text-serializer-plain
  dependency-version: 4.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: net.kyori:adventure-api
  dependency-version: 4.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: net.kyori:adventure-text-serializer-gson
  dependency-version: 4.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: net.kyori:adventure-text-serializer-legacy
  dependency-version: 4.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: net.kyori:adventure-text-minimessage
  dependency-version: 4.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: net.kyori:adventure-text-serializer-gson
  dependency-version: 4.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: net.kyori:adventure-text-serializer-legacy
  dependency-version: 4.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: net.kyori:adventure-text-minimessage
  dependency-version: 4.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: com.discordsrv:discordsrv
  dependency-version: 1.30.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: net.fabricmc.fabric-api:fabric-api
  dependency-version: 0.136.3+1.21.11
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: net.fabricmc:fabric-language-kotlin
  dependency-version: 1.13.7+kotlin.2.2.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: net.fabricmc:fabric-loader
  dependency-version: 0.17.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: com.github.retrooper:packetevents-spigot
  dependency-version: 2.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: org.telegram:telegrambots-client
  dependency-version: 9.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: org.telegram:telegrambots-extensions
  dependency-version: 9.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: org.telegram:telegrambots-longpolling
  dependency-version: 9.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: org.telegram:telegrambots-extensions
  dependency-version: 9.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: org.telegram:telegrambots-longpolling
  dependency-version: 9.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: org.junit:junit-bom
  dependency-version: 6.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: org.junit.jupiter:junit-jupiter-api
  dependency-version: 6.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: fabric-loom
  dependency-version: 1.12.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
...

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 Nov 1, 2025
@makeevrserg makeevrserg closed this Nov 1, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 1, 2025

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot bot deleted the dependabot/gradle/versions-7f95d516e6 branch November 1, 2025 13:54
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.

2 participants