This repository has been archived by the owner on Aug 1, 2021. It is now read-only.
Additions
- Added support for Guild audit logs, exposed via
Guild.get_audit_log_entries
,Guild.audit_log
andGuild.audit_log_iter
. For more information see theAuditLogEntry
model - Added built-in Flask HTTP server which can be enabled via
http_enabled
and configured viahttp_host
/http_port
config options. The server allows plugins to define routes which can be called externally. - Added support for capturing the raw responses returned from API requests via the
APIClient.capture
contextmanager - Added support for NSFW channels via
Channel.nsfw
andChannel.is_nsfw
- Added initial support for channel categories via
Channel.parent_id
andChannel.parent
- Added various setters for updating Channel properties, e.g.
Channel.set_topic
- Added support for audit log reasons, accessible through passing
reason
to various methods - Added
disco.util.snowflake.from_timestamp_ms
- Added support for
on_complete
callback within DCADOpusEncoderPlayable - BREAKING Added new custom queue types
BaseQueue
/PlayableQueue
for use w/Player
.queue
can be passed when creating aPlayer
, should inherit from BaseQueue- Users who previously utilized the
put
method of the oldPlayer.queue
must move to usingPlayer.queue.append
, or providing a custom queue implementation.
- Added
Emoji.custom
property
Fixes
- Fixed GuildRoleCreate missing guild_id, resulting in incorrect state
- Fixed SimpleLimiter behaving incorrectly (causing GW socket to be ratelimited in some cases)
- Fixed the shortest possible match for a single command being an empty string
- Fixed group matching being overly greedy, which allowed for extra characters to be allowed at the end of a group match
- Fixed errors thrown when not enabling manhole via cli
- Fixed various warnings emitted due to useage of StopIteration
- Fixed warnings about missing voice libs when importing
disco.types.channel
- Fixed
Bot.get_commands_for_message
returning None (instead of empty list) in some cases
Etc
- Greatly imrpoved the performance of
HashMap
- BREAKING Increased the weight of group matches over command argument matches, and limited the number of commands executed per message to one.
- Reuse a buffer in voice code to slightly improve performance