Skip to content

Releases: DisnakeDev/disnake

v2.9.2

18 May 13:05
0e4181a
Compare
Choose a tag to compare

This is a maintenance release, fixing a few minor bugs, particularly regarding certain websocket failure scenarios. Check out the changelog for details.

Changelog: https://docs.disnake.dev/en/stable/whats_new.html#v2-9-2
Git history: v2.9.1...v2.9.2

v2.9.1

30 Oct 20:40
1b8c5bc
Compare
Choose a tag to compare

This is a maintenance release, fixing a few minor bugs. Check out the changelog for details.

Changelog: https://docs.disnake.dev/en/stable/whats_new.html#v2-9-1
Git history: v2.9.0...v2.9.1

v2.9.0

21 Jun 16:39
ead81a4
Compare
Choose a tag to compare

This release comes with support for the new username system, text in stage, role subscriptions, silent messages, and onboarding.
The documentation has been updated, splitting the monolithic API Reference page into smaller pages.

Changelog: https://docs.disnake.dev/en/stable/whats_new.html#v2-9-0
Git history: v2.8.0...v2.9.0

v2.8.2

21 Jun 16:39
Compare
Choose a tag to compare

This is a maintenance release with backports from v2.9.0.

Changelog: https://docs.disnake.dev/en/v2.8.2/whats_new.html#v2-8-2
Git history: v2.8.1...v2.8.2

v2.8.1

02 Mar 19:52
Compare
Choose a tag to compare

This is a maintenance release, most notably fixing an upcoming breaking change related to voice connections.

Changelog: https://docs.disnake.dev/en/v2.8.1/whats_new.html#v2-8-1
Git history: v2.8.0...v2.8.1

v2.7.2

02 Mar 19:52
Compare
Choose a tag to compare

This is a maintenance release, most notably fixing an upcoming breaking change related to voice connections.

Changelog: https://docs.disnake.dev/en/v2.7.2/whats_new.html#v2-7-2
Git history: v2.7.1...v2.7.2

v2.8.0

05 Feb 22:12
e87178e
Compare
Choose a tag to compare

This release comes with support for NSFW application commands, the on_audit_log_entry_create event, and a new Event enum for use with methods like Client.wait_for, among lots of other changes.

Changelog: https://docs.disnake.dev/en/stable/whats_new.html#v2-8-0
Git history: v2.7.0...v2.8.0

v2.7.1

05 Feb 22:11
Compare
Choose a tag to compare

This is a maintenance release with backports from v2.8.0.

Changelog: https://docs.disnake.dev/en/v2.7.1/whats_new.html#v2-7-1
Git history: v2.7.0...v2.7.1

v2.6.3

05 Feb 22:11
Compare
Choose a tag to compare

This is a maintenance release with backports from v2.8.0.

Changelog: https://docs.disnake.dev/en/v2.6.3/whats_new.html#v2-6-3
Git history: v2.6.2...v2.6.3

v2.7.0

01 Nov 19:45
v2.7.0
1d2325d
Compare
Choose a tag to compare

What's Changed

This release adds support for python 3.11 and the new selects released by Discord.

See the docs for how to use these new selects.

Breaking Changes

  • Properly document that Message.system_content may return None. While this is documented as a breaking change, this function always could return None if the message type was not recognised. (#766)
  • Rename InteractionDataResolved.get() to get_by_id(). (#814)

Deprecations

New Features

Bug Fixes

  • Add the missing attributes for PermissionOverwrite: use_application_commands and use_embedded_activities. (#777)
  • Ensure that embed fields are copied properly by Embed.copy() and that the copied embed is completely separate from the original one. (#792)
  • Fix an issue with Member.ban() erroring when the delete_message_days parameter was provided. (#810)
  • Try to get threads used in interactions (like threads in command arguments) from the cache first, before creating a new instance. (#814)
  • Fix creation of threads in text channels without Permissions.manage_threads. (#818)
  • Fix off-by-one error in AutoModKeywordPresets values. (#820)
  • Update event loop handling to avoid warnings when running on Python 3.11. (#827)
  • [ext.commands] Fix a case where optional variadic arguments could have infinite loops in parsing depending on the user input. (#825)

Documentation

  • Speed up page load by changing hoverxref tooltips to be lazily loaded. (#393)
  • Remove reference to the v1.0 migration guide from the main index page, and move legacy changelogs to a separate page. (#697)
  • Update sphinx from version 5.1 to 5.3. (#764, #821)Add a note warning mentioning that using a disnake.File object as file kwarg makes a disnake.Embed not reusable. (#786)
  • Update broken Discord API Docs links, add :ddocs: role for easily creating links to the API documentation. ([#793](https://github.c...
Read more