aboutsummaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorGravatar ChrisJL <[email protected]>2022-04-19 10:39:43 +0100
committerGravatar GitHub <[email protected]>2022-04-19 10:39:43 +0100
commit1537a682f83f8bb91ee4a47382180f00de45616f (patch)
tree0b7a2e66d015bc53e27eea7b808248ccba359d97 /CHANGELOG.md
parentBump flake8-annotations from 2.8.0 to 2.9.0 (diff)
parentMerge pull request #63 from python-discord/BotBase-api_client-kwarg (diff)
Merge branch 'main' into dependabot/pip/flake8-annotations-2.9.0
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b041bad6..47805c6b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,18 @@
# Changelog
+## 5.0.4 18th April 2022
+- Feature: Allow passing an `api_client` to `BotBase`.`__init__` to specify the `botcore.site_api.APIClient` instance to use.
+
+## 5.0.3 18th April 2022
+- Fix: Reconnect to redis session on setup if it is closed.
+
+## 5.0.2 5th April 2022
+- Fix: Create a dummy `AsyncstatsdClient` before connecting to real url, in case a connection cannot be made on init.
+- Fix: Move the creation of the `asyncio.Event`, `BotBase._guild_available` to within the setup hook, to avoid a deprecation notice.
+
+## 5.0.1 2nd April 2022
+- Fix: Move creation of BotBase's `aiohttp.AsyncResolver` to the async setup hook, to avoid deprecation notice
+
## 5.0.0 2nd April 2022
- Breaking: Remove public extensions util
- Feature: Add `BotBase`, a `discord.ext.commands.Bot` sub-class, which abstracts a lot of logic shared between our bots