Skip to content

fix(deps): update all non-major dependencies for maven - #197

Merged
Siroshun09 merged 1 commit into
masterfrom
renovate/maven-all-minor-patch
Jul 16, 2026
Merged

fix(deps): update all non-major dependencies for maven#197
Siroshun09 merged 1 commit into
masterfrom
renovate/maven-all-minor-patch

Conversation

@renovate

@renovate renovate Bot commented Jul 13, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
net.dv8tion:JDA 6.4.26.5.0 age confidence
io.papermc.paper:paper-api 26.1.2.build.72-stable26.1.2.build.74-stable age confidence

Release Notes

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

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>

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Between 12:00 AM and 03:59 AM (* 0-3 * * *)
  • 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 requested a review from a team July 13, 2026 00:05
@renovate
renovate Bot force-pushed the renovate/maven-all-minor-patch branch from a466b75 to 413d172 Compare July 13, 2026 21:40
@renovate renovate Bot changed the title fix(deps): update dependency net.dv8tion:jda to v6.5.0 fix(deps): update all non-major dependencies for maven Jul 13, 2026
@Siroshun09
Siroshun09 merged commit 3b5adb7 into master Jul 16, 2026
3 checks passed
@renovate
renovate Bot deleted the renovate/maven-all-minor-patch branch July 16, 2026 14:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant