Skip to content
This repository has been archived by the owner on Nov 27, 2023. It is now read-only.

Update dependency net.dv8tion:JDA to v5.0.0-alpha.12 - autoclosed #37

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Feb 22, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
net.dv8tion:JDA 5.0.0-alpha.11 -> 5.0.0-alpha.12 age adoption passing confidence

Release Notes

DV8FromTheWorld/JDA

v5.0.0-alpha.12

Overview

This release contains a few tiny changes to improve the codebase, such as:

  • FileProxy for downloading images and files from discord (replacing Message.Attachments#download)
  • FileUpload for uploading images and files to discord (will be used for Message and Sticker creation)
  • Message#getMentions to replace all the mention handling in message and interactions. (Such as Message#getMentionedUsers)
Example Mentions Changes

Old:

List<TextChannel> channels = message.getMentionedChannels(); // only handles TextChannel mentions
List<User> users = message.getMentionedUsers();

New:

List<GuildChannel> channels = message.getMentions().getChannels(); // handles all channel mentions
List<MessageChannel> messageChannels = message.getMentions().getChannels(MessageChannel.class); // filter by class type
List<User> users = message.getMentions().getUsers();

New Features

Changes

Bug Fixes

Full Changelog: discord-jda/JDA@v5.0.0-alpha.11...v5.0.0-alpha.12

Installation

Gradle

repositories {
    mavenCentral()
}
dependencies {
    implementation("net.dv8tion:JDA:5.0.0-alpha.12")
}

Maven

<dependency>
    <groupId>net.dv8tion</groupId>
    <artifactId>JDA</artifactId>
    <version>5.0.0-alpha.12</version> 
</dependency>

Configuration

📅 Schedule: 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot changed the title Update dependency net.dv8tion:JDA to v5.0.0-alpha.7 Update dependency net.dv8tion:JDA to v5.0.0-alpha.8 Feb 23, 2022
@renovate renovate bot force-pushed the renovate/net.dv8tion-jda-5.x branch 2 times, most recently from 6f7cac3 to ddc5afb Compare February 25, 2022 10:59
@renovate renovate bot changed the title Update dependency net.dv8tion:JDA to v5.0.0-alpha.8 Update dependency net.dv8tion:JDA to v5.0.0-alpha.9 Feb 25, 2022
@renovate renovate bot changed the title Update dependency net.dv8tion:JDA to v5.0.0-alpha.9 Update dependency net.dv8tion:JDA to v5.0.0-alpha.10 Apr 18, 2022
@renovate renovate bot force-pushed the renovate/net.dv8tion-jda-5.x branch from ddc5afb to 23c19b5 Compare April 18, 2022 20:29
@renovate renovate bot changed the title Update dependency net.dv8tion:JDA to v5.0.0-alpha.10 Update dependency net.dv8tion:JDA to v5.0.0-alpha.11 May 16, 2022
@renovate renovate bot force-pushed the renovate/net.dv8tion-jda-5.x branch from 23c19b5 to 1525c1b Compare May 16, 2022 02:54
@renovate renovate bot changed the title Update dependency net.dv8tion:JDA to v5.0.0-alpha.11 Update dependency net.dv8tion:JDA to v5.0.0-alpha.12 Jun 2, 2022
@renovate renovate bot force-pushed the renovate/net.dv8tion-jda-5.x branch from 1525c1b to b021b6b Compare June 2, 2022 01:37
@renovate renovate bot changed the title Update dependency net.dv8tion:JDA to v5.0.0-alpha.12 Update dependency net.dv8tion:JDA to v5.0.0-alpha.12 - autoclosed Jun 2, 2022
@renovate renovate bot closed this Jun 2, 2022
@renovate renovate bot deleted the renovate/net.dv8tion-jda-5.x branch June 2, 2022 04:30
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant