Skip to content

fix(deps): update maven - #41

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/maven
Open

fix(deps): update maven#41
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/maven

Conversation

@renovate

@renovate renovate Bot commented May 27, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
ch.qos.logback:logback-classic (source, changelog) 1.5.321.6.3 age confidence
net.dv8tion:JDA 6.4.16.6.0 age confidence
org.jetbrains.kotlin.jvm 2.3.212.4.10 age confidence

Release Notes

discord-jda/JDA (net.dv8tion:JDA)

v6.6.0

Overview

This is a minor release adding a few new features before a bigger change coming in 6.7.0 which will introduce handling for Obfuscated Channels.

If you can, please try out and give feedback on Add handling for obfuscated channels #​3042. To enable obfuscated channels early for testing purposes, you can toggle a switch in your application dashboard as described here.

New Features

Changes

Bug Fixes

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

Installation

Gradle

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

Maven

<dependency>
    <groupId>net.dv8tion</groupId>
    <artifactId>JDA</artifactId>
    <version>6.6.0</version> 
</dependency>

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")
}

Maven

<dependency>
    <groupId>net.dv8tion</groupId>
    <artifactId>JDA</artifactId>
    <version>6.5.0</version> 
</dependency>

v6.4.2

New Features

Changes

  • Improve error messages caused by entities relying on the cache to find themselves by @​freya022 in #​3067
  • Component options: Prevent setting an out-of-range number of default values by @​freya022 in #​3068
  • Fix deserialization of components without unfurled media by @​freya022 in #​3078

Bug Fixes

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

Installation

Gradle

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

Maven

<dependency>
    <groupId>net.dv8tion</groupId>
    <artifactId>JDA</artifactId>
    <version>6.4.2</version> 
</dependency>

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot changed the title fix(deps): update dependency ch.qos.logback:logback-classic to v1.5.33 fix(deps): update dependency ch.qos.logback:logback-classic to v1.5.34 Jun 1, 2026
@renovate
renovate Bot force-pushed the renovate/maven branch from 4f02343 to 43e79ea Compare June 1, 2026 22:16
@renovate renovate Bot changed the title fix(deps): update dependency ch.qos.logback:logback-classic to v1.5.34 fix(deps): update maven to v1.5.34 Jun 2, 2026
@renovate
renovate Bot force-pushed the renovate/maven branch from 43e79ea to 9933723 Compare June 3, 2026 11:02
@renovate renovate Bot changed the title fix(deps): update maven to v1.5.34 fix(deps): update maven Jun 3, 2026
@renovate
renovate Bot force-pushed the renovate/maven branch from 9933723 to adfedbe Compare June 6, 2026 13:48
@renovate
renovate Bot force-pushed the renovate/maven branch 3 times, most recently from ba5ed0a to 6ad7315 Compare June 26, 2026 16:12
@renovate
renovate Bot force-pushed the renovate/maven branch 2 times, most recently from 112a270 to 4946855 Compare July 9, 2026 10:53
@renovate
renovate Bot force-pushed the renovate/maven branch from 4946855 to 5353fdb Compare July 14, 2026 09:45
@renovate
renovate Bot force-pushed the renovate/maven branch 2 times, most recently from 722d6db to c60fa96 Compare July 29, 2026 19:47
@renovate
renovate Bot force-pushed the renovate/maven branch 2 times, most recently from 0ae2e17 to 5b31213 Compare August 16, 2026 11:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Development

Successfully merging this pull request may close these issues.

0 participants