Update dependency net.dv8tion:JDA to v5.0.2
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| net.dv8tion:JDA | 5.0.0-beta.23 -> 5.0.2 |
[!WARNING] Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
discord-jda/JDA (net.dv8tion:JDA)
v5.0.2: | Single time event listener
Overview
This release includes some bug fixes as well as a new event listener feature to add a one-time-use event listener.
Once Event Listener (#2683)
A common problem that developers run into, is "waiting" for a specific event in the context of some command. For instance, waiting for a user to add a reaction or reply with a message in response to some prompt.
This can now be achieved using the new listenOnce event listener:
// listen for a message event
jda.listenOnce(MessageReceivedEvent.class)
// filter for specific event
.filter(event -> event.getChannel().equals(channel))
.filter(event -> event.getAuthor().equals(user))
// handle timeout
.timeout(timeout, () -> hook.editOriginal("Timeout!").queue())
// subscribe to first event that matches filters
.subscribe(event -> {
hook.editOriginal("You sent: " + event.getMessage().getContentRaw()).queue();
});
New Features
- Add
TeamMember.RoleTypeby @freya022 in https://github.com/discord-jda/JDA/pull/2703 - Add abstract
createCopymethod inSelectMenuby @Kaktushose in https://github.com/discord-jda/JDA/pull/2684 - Add
JDA#listenOnceby @freya022 in https://github.com/discord-jda/JDA/pull/2683 - Add support for profile automod by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2580
Changes
- Expand list of retried http error codes by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2710
- Update to Jackson 2.17.2 by @freya022 in https://github.com/discord-jda/JDA/pull/2695
Bug Fixes
- Fix deserialization of interaction components by @WitchBoo in https://github.com/discord-jda/JDA/pull/2711
Full Changelog: https://github.com/discord-jda/JDA/compare/v5.0.1...v5.0.2
Installation
Gradle
repositories {
mavenCentral()
}
dependencies {
implementation("net.dv8tion:JDA:5.0.2")
}
Maven
<dependency>
<groupId>net.dv8tion</groupId>
<artifactId>JDA</artifactId>
<version>5.0.2</version>
</dependency>
v5.0.1: | Hotfix shard manager thread handling
Overview
Small hotfix release, fixes problem with default thread config for DefaultShardManager. This caused requests to fail if a shard is stopped or restarted.
Bug Fixes
- Fix automatic shutdown for elastic pool by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2704
Full Changelog: https://github.com/discord-jda/JDA/compare/v5.0.0...v5.0.1
Installation
Gradle
repositories {
mavenCentral()
}
dependencies {
implementation("net.dv8tion:JDA:5.0.1")
}
Maven
<dependency>
<groupId>net.dv8tion</groupId>
<artifactId>JDA</artifactId>
<version>5.0.1</version>
</dependency>
v5.0.0: | End of beta phase
The Long Awaited Stabilization
After almost 3 years of refactoring and polishing, the stabilization of JDA 5.0.0 is here. If you have been following along, not much has changed since the latest beta release.
If you have somehow avoided updating to a beta release since 2021, here is a list of the most noteworthy additions, changes, and bug fixes since 4.4.0.
You can also use our Migration Guide to help you update to the latest version of JDA 5. This guide also includes the most important changes you need to consider.
Interactions / Application Features
Discord has further improved the capabilities of applications with new types of interactions. This major release of JDA adds support for these features, coming with some restructuring to properly accomodate the new types.
We've renamed interaction events to a more consistent naming scheme:
-
SlashCommandEventbecomesSlashCommandInteractionEvent -
ButtonClickEventbecomesButtonInteractionEvent
Similarly, we've renamed component types slightly:
-
SelectionMenuis nowStringSelectMenu, while adding a newEntitySelectMenu - What was previously called
Componenthas now been renamed toActionComponentandItemComponent, allowing us to introduceComponentas an abstraction over bothButtonandActionRow(which is now aLayoutComponent). The newComponentinterface is now an abstraction over bothItemComponentandLayoutComponent.
To learn more about interactions in JDA 5, take a look at our Interactions Wiki Guide.
Channel Type Rework
We've refactored the channel types and usages in JDA to be more maintainable. Each type of channel now directly maps to a specific channel interface, unlike before where VoiceChannel was used for both stage and voice type channels.
Instead there are now concrete interfaces for each type, such as NewsChannel, StageChannel, ForumChannel, etc.
The channel type hierarchy has been further refined, by introducing higher level abstractions to represent the features of multiple channel types:
As well as more specific features or attributes of channels:
To properly maintain these many different channel types and make them easy to use, we've also introduced new union types to encompass multiple channels into a simple common union type. This replaces the old getTextChannel()/getVoiceChannel() getters on events with getChannel().asTextChannel(). However, you can also use the standard features of the unions directly. For instance, a MessageChannelUnion allows to send messages and these specialization methods:
MessageChannelUnion channel = event.getChannel();
channel.sendMessage("hello").queue();
if (channel.getType() == TEXT) {
channel.asTextChannel().getManager().setTopic("test topic").queue();
}
Cache access has also seen some improvement, by introducing a new getChannelById(Class, long) method, allowing to just get a MessageChannel without worrying about the concrete type.
GuildMessageChannel channel = guild.getChannelById(GuildMessageChannel.class, 125227483518861312L);
channel.sendMessage("Hello general chat!").queue();
Learn more about the channel rework in Channel Rework.
Message Features
We've refactored our message sending interfaces to be more consistent, by abstracting MessageAction, MessageBuilder, and ReplyAction into shared interfaces MessageCreateRequest and MessageEditRequest. This makes all message sending code consistent. We recommend to simply chain your builder-like code directly on send messages:
channel.sendMessage("Hello World")
.setComponents(ActionRow.of(button1, button2))
.setEmbeds(embed1, embed2)
.setFiles(files)
.queue();
However, if you need to use builders, we've introduced MessageEditBuilder and MessageCreateBuilder to replace the old MessageBuilder utility. You can also now use SplitUtil to easily divide message content into multiple messages.
To support file descriptions and reduce the number of sendFile overloads, we've also introduced a new FileUpload type that unifies all attachments into a single type.
FileUpload file = FileUpload.fromData(new File("myFile.png"), "image.png")
.setDescription("this is my alt text for screenreaders, allowing to make accessible images in your messages!");
channel.sendFiles(file).queue();
Learn more about the changes to message sending in Message Send/Edit Rework.
Emojis and Stickers
In JDA 5, we have decided to unify all emoji types into a consistent type structure:
-
Emoji, a top-level interface representing all emoji as well as a type discriminator withEmoji#getType -
UnicodeEmoji, standard unicode emoji such as 🤔 -
CustomEmoji, custom emoji found in messages, like<:minn:245267426227388416> -
RichCustomEmoji, emoji with more information such as owner, accessible through the guild settings. -
EmojiUnion, adding type casting for things likeMessageReaction#getEmoji
These new emoji types replace the duplication of ReactionEmote and Activity.Emoji.
Stickers have also been refactored in a similar way, making a clear distinction between stickers found in messages and guild settings:
-
Sticker, a top-level abstraction of all sticker types -
StickerItem, stickers found in messages -
RichSticker, stickers with more information that is usually omitted for messages (sticker items) -
StandardSticker, rich stickers provided by nitro instead of guilds -
GuildSticker, rich stickers provided in guilds -
StickerUnion, adding type casting
Learn more about the changes to emojis and stickers in Sticker and Emoji Rework.
Installation
All future JDA releases will be distributed through maven central. You no longer need to use jcenter() in your dependency manager.
Gradle
repositories {
mavenCentral()
}
dependencies {
implementation("net.dv8tion:JDA:5.0.0")
}
Maven
<dependency>
<groupId>net.dv8tion</groupId>
<artifactId>JDA</artifactId>
<version>5.0.0</version>
</dependency>
Changelog (5.0.0-beta.24 -> 5.0.0)
The changes since the latest beta release to this release.
- Allow UserSnowflake subtypes in bulk ban methods by @freya022 (#2689)
- Update MessageType enum by @MinnDevelopment (#2691)
- Improve Unknown Interaction error responses by @freya022 (#2687)
- Update ErrorResponse enum by @MinnDevelopment (#2693)
- Add missing permissions by @MinnDevelopment (#2690)
- Update and remove deprecated symbols by @MinnDevelopment (#2686)
Changelog (4.4.0 -> 5.0.0)
Note that this changelog is a linear history of changes. This means some earlier changes have already been superseded or refined in more recent changes. This changelog is slightly compressed to remove unimportant changes, you can see the full list of commits here.
Thank you all for contributing!
New Features
New feature additions since 4.4.0
- Add GenericMessageEvent#getThreadChannel() by @rtm516 in https://github.com/discord-jda/JDA/pull/1924
- Add Message.Attachment#getDescription by @sebm253 in https://github.com/discord-jda/JDA/pull/1930
- Add Guild#isBoostProgressBarEnabled by @sebm253 in https://github.com/discord-jda/JDA/pull/1891
- Add support for member timeouts by @sebm253 in https://github.com/discord-jda/JDA/pull/1902
- Add support for attachment options by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2001
- Add CommandInteractionPayload#getOption fallback overloads by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2018
- Add Booster to memberCachePolicy by @sofiadparamo in https://github.com/discord-jda/JDA/pull/2022
- Add PaginationAction#order by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/1945
- Add Tags, Default Install Url, Scopes and Permissions to ApplicationInfo by @Xirado in https://github.com/discord-jda/JDA/pull/1936
- Add CommandInteractionPayload#isGuildCommand by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2091
- Add UserSnowflake and improve User#fromId by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2065
- Add support for modals by @Xirado in https://github.com/discord-jda/JDA/pull/2024
- Add ImageProxy & FileProxy by @freya022 in https://github.com/discord-jda/JDA/pull/1955
- Add Message#getStartedThread and ThreadChannel#retrieveParentMessage by @Almighty-Satan in https://github.com/discord-jda/JDA/pull/2099
- Add FileUpload class by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2120
- Add Support for Application-Command Permissions V2 by @Xirado in https://github.com/discord-jda/JDA/pull/2113
- Application command localization by @freya022 in https://github.com/discord-jda/JDA/pull/2090
- Add EmojiUnion by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2167
- Add JDABuilder#setEventPassthrough by @freya022 in https://github.com/discord-jda/JDA/pull/2014
- Add ApplicationInfo#getFlags by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2202
- Add support for setting voice region on channel creation/copy by @CheesyGamer77 in https://github.com/discord-jda/JDA/pull/2209
- add support for string option bounds by @sebm253 in https://github.com/discord-jda/JDA/pull/2169
- Add DataPath util by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2212
- Add category feature to ChannelOrderAction by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2136
- Added RestAction#onSuccess by @Zabuzard in https://github.com/discord-jda/JDA/pull/2227
- Add support for forum channels by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2184
- Add GuildManager#setFeatures by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2222
- Add support for guild scheduled events v2 by @Mitmocc in https://github.com/discord-jda/JDA/pull/2047
- Implement new select menus by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2287
- Add slash command mentions by @freya022 in https://github.com/discord-jda/JDA/pull/2251
- Implement "ACTIVE_DEVELOPER" UserFlag by @jasonlessenich in https://github.com/discord-jda/JDA/pull/2326
- Add support for age-restricted (nsfw) commands by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2325
- Add application_id support for received messages by @Almighty-Satan in https://github.com/discord-jda/JDA/pull/2335
- Implement thread member pagination by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2338
- Add guild welcome screens by @freya022 in https://github.com/discord-jda/JDA/pull/2264
- Add support for gif stickers by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2377
- Add support for reverse audit-log iteration by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2370
- Add GuildAuditLogEntryCreateEvent by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2380
- Add
SUPPRESS_NOTIFICATIONSflag for message by @Mysterious-Dev in https://github.com/discord-jda/JDA/pull/2393 - Add new message types by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2371
- Add rate-limiter customization by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2307
- Add support for member flags by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2417
- Support custom timeout on tasks by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2439
- Add EmbedBuilder#setUrl by @Xirado in https://github.com/discord-jda/JDA/pull/2449
- Add voice message read support by @RedDaedalus in https://github.com/discord-jda/JDA/pull/2445
- Add automod support by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2429
- Add ThreadChannel#retrieveStartMessage by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2438
- Support embed deserialization from JSON data by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2471
- Add the message author id to message reaction events by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2499
- Add supplier based FileUpload by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2508
- Add custom status support for bots by @RedDaedalus in https://github.com/discord-jda/JDA/pull/2521
- Allow slowmode & nsfw in Stage Channels by @kazuryyx in https://github.com/discord-jda/JDA/pull/2538
- Add LRUMemberCachePolicy by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2506
- Add initial support for media channels by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2516
- Add default_values support by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2542
- Implement super reaction handling by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2554
- Add voice status feature by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2532
- Add missing proxy url field to the MessageEmbed.VideoInfo class by @shaksternano in https://github.com/discord-jda/JDA/pull/2618
- Add support for bulk banning users by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2630
- Add the ability to set the bot banner by @freya022 in https://github.com/discord-jda/JDA/pull/2629
- Add support for premium app subscriptions by @Giuliopime in https://github.com/discord-jda/JDA/pull/2583
- Poll support by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2649
- Add missing features relating to premium app subscriptions by @Tobias123567 in https://github.com/discord-jda/JDA/pull/2667
- Update MessageType enum by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2691
- Update ErrorResponse enum by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2693
- Add missing permissions by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2690
Breaking Changes
Breaking changes since 4.4.0
- Update Activity(Type) by @DManstrator in https://github.com/discord-jda/JDA/pull/1798
- Update Permissions for JDA5 by @DManstrator in https://github.com/discord-jda/JDA/pull/1797
- Remove GuildManager#setVanityCode by @sebm253 in https://github.com/discord-jda/JDA/pull/1933
- Interaction Rework by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/1971
- Make getDefaultChannel return BaseGuildMessageChannel by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2016
- Change PrivateChannel#getUser to handle API nullability by @oliver276 in https://github.com/discord-jda/JDA/pull/2012
- Remove StoreChannel by @V-Play-Games in https://github.com/discord-jda/JDA/pull/2011
- Change some voice Regions and remove VOICE_CHANNEL_REGIONS set by @sebm253 in https://github.com/discord-jda/JDA/pull/1962
- Fix misspelled ErrorResponse enum value by @Xirado in https://github.com/discord-jda/JDA/pull/2031
- Implement pagination for the guild ban list by @RedDaedalus in https://github.com/discord-jda/JDA/pull/2076
- Return MessageReaction for getReactionX methods by @duncte123 in https://github.com/discord-jda/JDA/pull/2026
- Remove confusing permission override methods by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2067
- Remove manager instance cache by @duncte123 in https://github.com/discord-jda/JDA/pull/2106
- Message interface declutter: Message#getMentions() by @DV8FromTheWorld in https://github.com/discord-jda/JDA/pull/2015
- Rework stickers by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2104
- Changed addField String name and String Value to Nonnull by @RealYusufIsmail in https://github.com/discord-jda/JDA/pull/2133
- Uniform representation of emoji by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2117
- Introduce Channel Unions by @DV8FromTheWorld in https://github.com/discord-jda/JDA/pull/2138
- Replace occurrences of Locale with DiscordLocale by @MineKing9534 in https://github.com/discord-jda/JDA/pull/2173
- Message Rework by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2187
- Remove ChannelAction#setType by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2218
- Invalid token exception by @java-coding-prodigy in https://github.com/discord-jda/JDA/pull/2025
- Add support for ban deletion with seconds precision by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2229
- Update to gateway version 10 by @freyacodes in https://github.com/discord-jda/JDA/pull/2228
- Move channels to separate package and cleanup code by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2180
- Update event hierarchy by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/1952
- Make Widget an interface and move it to it's own file by @Almighty-Satan in https://github.com/discord-jda/JDA/pull/2295
- Remove AccountType by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2420
- Deprecate and replace onUserSpeaking by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2496
Other Changes
Other noteworthy changes since 4.4.0
- Add Missing Varargs and Methods Accepting Collection Arguments by @aasmart in https://github.com/discord-jda/JDA/pull/1810
- Make OptionData#addChoice accept long instead of int by @Xirado in https://github.com/discord-jda/JDA/pull/1816
- Make SelectionMenu#getOptions return an unmodifiable list by @freya022 in https://github.com/discord-jda/JDA/pull/1922
- Make Guild#moveVoiceMember support AudioChannel instead by @sebm253 in https://github.com/discord-jda/JDA/pull/1928
- Add support for animated guild banners by @sebm253 in https://github.com/discord-jda/JDA/pull/1897
- Hardcode gateway url by @Xirado in https://github.com/discord-jda/JDA/pull/1957
- Move requestToSpeak to StageChannel by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/1978
- Add IGuildChannelContainer and getChannelById(Class, id) by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/1949
- Don't override latest message id on deletion event by @ishwi in https://github.com/discord-jda/JDA/pull/2013
- Remove mentioning members with ! by @Tais993 in https://github.com/discord-jda/JDA/pull/2081
- Add new message types for automod by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2116
- Do not ignore member cache policy when chunking is enabled by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2053
- Make more use of CacheRestAction by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2158
- Handle text in voice channels by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2072
- Update to API version 10 by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2165
- Implement gateway resume url handling by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2203
- Add support for component-only messages by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2241
- Use String#intern for guild features and atoms by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2235
- Improve
toStringmethods by @freya022 in https://github.com/discord-jda/JDA/pull/2273 - Forward shutdown reason to awaitStatus exception by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2268
- Improve GuildChannel#getPosition and Guild#getChannels by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2320
- Replace lock code with atomic int by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2359
- Improve implementation of command data by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2258
- Necessary additions for role subscriptions by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2375
- Support messages in stage channels by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2399
- Start migration to new username API by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2462
- Improve handling of method discovery in AnnotatedEventManager by @freya022 in https://github.com/discord-jda/JDA/pull/2454
- Change thread model used for requests by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2463
- Add more logging to request handling by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2589
- Add missing message types by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2531
- Unified channel cache by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2528
- Add support for enforce_nonce by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2614
- Create an exception when receiving UNKNOWN_WEBHOOK in interaction hooks by @freya022 in https://github.com/discord-jda/JDA/pull/2621
- Add USER_MUST_BE_VERIFIED ErrorResponse by @GitMilchi in https://github.com/discord-jda/JDA/pull/2651
- Update permission enum by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2654
- Add more static analyzer annotations by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2675
- Improve Unknown Interaction error responses by @freya022 in https://github.com/discord-jda/JDA/pull/2687
Bug Fixes
Bugs fixed since 4.4.0
- Fix wrong check in GenericMessageEvent#getGuildChannel by @sebm253 in https://github.com/discord-jda/JDA/pull/1927
- Fix rate limiter not shutting down if there is an empty bucket at shutdown by @Vankka in https://github.com/discord-jda/JDA/pull/2080
- Prevent creating OptionData with OptionType#UNKNOWN by @sebm253 in https://github.com/discord-jda/JDA/pull/2101
- Handle emoji_id sometimes being 0 instead of null by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2279
- Use deep copy for layout components when applying message data by @freya022 in https://github.com/discord-jda/JDA/pull/2236
- Fix some lock issues by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2339
- Change handling of speaking updates in voice connections by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2240
- Improve conditional waiting and shutdown handling by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2269
- Fix slow shutdown during reconnects by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2464
- Update modulo for default avatars by id by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2475
- Fix handling of wrong length discriminators by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2478
- Handle clyde in DMs correctly by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2489
- Update User#formatTo by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2492
- Improve handling of query parameters in image proxy by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2551
- Fix orphaned rate-limit buckets by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2585
- Handle numeric keys for ETF maps by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2642
- Fix ClassCastException in EntityBuilder#updateMemberCache by @Xirado in https://github.com/discord-jda/JDA/pull/2660
v5.0.0-beta.24: | Bug fixes and entitlement types
Overview
This is a small bugfix release, including some missing features for premium app entitlements.
Additional Entitlement Features (#2667)
This release adds support for test entitlements and consumed entitlements.
An entitlement can be consumed, marking it as already used. This can be useful for one-time entitlements, which are consumed on use.
public boolean hasEntitlement(long skuId, List<Entitlement> entitlements) {
return entitlements.stream().anyMatch(e -> e.getSkuIdLong() == skuId && !e.isConsumed());
}
public void consumeEntitlement(long skuId, List<Entitlement> entitlements) {
entitlements.stream()
.filter(e -> e.getSkuIdLong() == skuId && !e.isConsumed())
.findFirst()
.ifPresent(entitlement -> entitlement.consume().queue());
}
New Features
- Add
IPostContainerManager#setTopicby @freya022 in https://github.com/discord-jda/JDA/pull/2666 - Add missing features relating to premium app subscriptions by @Tobias123567 in https://github.com/discord-jda/JDA/pull/2667
Changes
- Improve logging for gateway connection by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2665
- Add more static analyzer annotations by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2675
- Update SLF4J api and jackson by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2674
Bug Fixes
- Fix ClassCastException in EntityBuilder#updateMemberCache by @Xirado in https://github.com/discord-jda/JDA/pull/2660
- Properly copy poll data in MessageCreateRequest#applyData by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2662
- Make channel access checks consistent by @MinnDevelopment in https://github.com/discord-jda/JDA/pull/2679
Full Changelog: https://github.com/discord-jda/JDA/compare/v5.0.0-beta.23...v5.0.0-beta.24
Installation
Gradle
repositories {
mavenCentral()
}
dependencies {
implementation("net.dv8tion:JDA:5.0.0-beta.24")
}
Maven
<dependency>
<groupId>net.dv8tion</groupId>
<artifactId>JDA</artifactId>
<version>5.0.0-beta.24</version>
</dependency>
Configuration
📅 Schedule: 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.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
- [ ] If you want to rebase/retry this PR, check this box
This PR was generated by Mend Renovate. View the repository job log.
Deploy Preview for ree6-backend canceled.
| Name | Link |
|---|---|
| Latest commit | 742666eb62add72f9c9fd7666fb8a73e704628b9 |
| Latest deploy log | https://app.netlify.com/sites/ree6-backend/deploys/66c614ad66671f0008656ad0 |
Quality Gate passed
Issues
0 New issues
0 Accepted issues
Measures
0 Security Hotspots
No data about Coverage
0.0% Duplication on New Code
Quality Gate passed
Issues
0 New issues
0 Accepted issues
Measures
0 Security Hotspots
0.0% Coverage on New Code
0.0% Duplication on New Code