| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| JDA-6.3.1-withDependencies-min.jar | 2026-02-15 | 8.1 MB | |
| JDA-6.3.1-withDependencies.jar | 2026-02-15 | 19.6 MB | |
| JDA-6.3.1-sources.jar | 2026-02-15 | 2.1 MB | |
| JDA-6.3.1-javadoc.jar | 2026-02-15 | 8.9 MB | |
| JDA-6.3.1.jar | 2026-02-15 | 2.4 MB | |
| JDA-6.3.1-withDependencies-no-opus.jar | 2026-02-15 | 16.2 MB | |
| README.md | 2026-02-15 | 2.5 kB | |
| v6.3.1 source code.tar.gz | 2026-02-15 | 5.3 MB | |
| v6.3.1 source code.zip | 2026-02-15 | 6.7 MB | |
| Totals: 9 Items | 69.4 MB | 0 | |
Overview
This is primarily a bug fix release, but also includes a minor breaking change for emojis.
Enable users to choose the requested format of assets (#3009)
Most methods, that previously returned ImageProxy or an image URL, now support passing ImageFormat to choose a different format. This enables users to easily switch from PNG to WEBP or other formats.
Additionally, most of the template strings used to create image URLs, such as User.AVATAR_URL, have been deprecated in favor of the new DiscordAssets utility class. You can use DiscordAssets.userAvatar(ImageFormat.PNG, userId, avatarId) to get an ImageProxy instance and use ImageProxy#getUrl to get the respective URL.
[!WARNING]
Breaking Changes
CustomEmoji#getImageandCustomEmoji#getImageUrlwill now usewebpformat by default. This is due to API changes which make thegifformat unreliable. See [#2999] for details. You can useCustomEmoji#getImage(ImageFormat)to choose a different format, likeImageFormat.PNGorImageFormat.GIF.
New Features
- Adding s/S TimeFormat by @Sheldan in https://github.com/discord-jda/JDA/pull/3016
- Enable users to choose the requested format of assets by @freya022 in https://github.com/discord-jda/JDA/pull/3009
Bug Fixes
- Fix unique id not being copied in SelectMenus by @Kaktushose in https://github.com/discord-jda/JDA/pull/3013
- Use Locale.ROOT in AudioEncryption for consistent string handling by @arif-banai in https://github.com/discord-jda/JDA/pull/3024
Deprecations
- Template Strings for Image CDN URLs are replaced by DiscordAssets
- ScheduledEventUpdateImageEvent is replaced by ScheduledEventUpdateCoverImageEvent
Full Changelog: https://github.com/discord-jda/JDA/compare/v6.3.0...v6.3.1
Installation
Gradle
:::gradle
repositories {
mavenCentral()
}
dependencies {
implementation("net.dv8tion:JDA:6.3.1")
}
Maven
:::xml
<dependency>
<groupId>net.dv8tion</groupId>
<artifactId>JDA</artifactId>
<version>6.3.1</version>
</dependency>