From 9da95873bd2be1dfcaef5f40d78a84c6cd8a80cb Mon Sep 17 00:00:00 2001 From: Andrei Date: Thu, 10 Aug 2017 16:27:09 -0700 Subject: [PATCH] [etc] add v0.0.11 changelog, fix testing reqs --- CHANGELOG.md | 35 +++++++++++++++++++++++++++++++++++ setup.py | 2 +- 2 files changed, 36 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5302ca7..63a37c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,40 @@ # CHANGELOG +## v0.0.11 + +### Additions + +- Added support for Guild audit logs, exposed via `Guild.get_audit_log_entries`, `Guild.audit_log` and `Guild.audit_log_iter`. For more information see the `AuditLogEntry` model +- Added built-in Flask HTTP server which can be enabled via `http_enabled` and configured via `http_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` and `Channel.is_nsfw` +- Added initial support for channel categories via `Channel.parent_id` and `Channel.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 a `Player`, should inherit from BaseQueue + - Users who previously utilized the `put` method of the old `Player.queue` must move to using `Player.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 + ## v0.0.11-rc.8 ### Additions diff --git a/setup.py b/setup.py index 21e28f2..c602a9b 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ setup( extras_require=extras_require, test_suite='tests', setup_requires=['pytest-runner==2.11.1'], - tests_require=['pytest==3.2.0', 'pytest-benchmark==3.1.0a2'], + tests_require=['pytest==3.2.1', 'pytest-benchmark==3.1.1'], classifiers=[ 'Development Status :: 4 - Beta', 'License :: OSI Approved :: MIT License',