aboutsummaryrefslogtreecommitdiffstats
path: root/docs (unfollow)
Commit message (Collapse)AuthorLines
2022-04-20Add unqualify to the utils namespaceGravatar Chris Lovering-1/+6
This is for bots that want to use the unqualify function for their own extension cogs
2022-04-19Bump sphinx-autodoc-typehints to 1.18.1Gravatar Chris Lovering-9/+9
2022-04-19Bump discord.py to ↵Gravatar Chris Lovering-36/+40
https://github.com/Rapptz/discord.py/tree/987235d5649e7c2b1a927637bab6547244ecb2cf
2022-04-18Allow passing an api_client kwarg to BotBaseGravatar Chris Lovering-6/+10
2022-04-18Reconnect to redis session on setup if it is closedGravatar Chris Lovering-2/+10
2022-04-15Bump flake8-annotations from 2.8.0 to 2.9.0Gravatar dependabot[bot]-5/+5
Bumps [flake8-annotations](https://github.com/sco1/flake8-annotations) from 2.8.0 to 2.9.0. - [Release notes](https://github.com/sco1/flake8-annotations/releases) - [Changelog](https://github.com/sco1/flake8-annotations/blob/main/CHANGELOG.md) - [Commits](https://github.com/sco1/flake8-annotations/compare/v2.8.0...v2.9.0) --- updated-dependencies: - dependency-name: flake8-annotations dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
2022-04-08Bump version number and log changev5.0.2Gravatar Chris Lovering-1/+8
2022-04-08Create a dummy AsyncstatsdClient before connecting to the real urlGravatar Chris Lovering-2/+7
This is in case a connection cannot be made on init.
2022-04-08Move the creation of BotBase._guild_available to within the setup hookGravatar Chris Lovering-1/+3
This is to avoid a deprecation notice.
2022-04-08Bump furo from 2022.3.4 to 2022.4.7Gravatar dependabot[bot]-5/+5
Bumps [furo](https://github.com/pradyunsg/furo) from 2022.3.4 to 2022.4.7. - [Release notes](https://github.com/pradyunsg/furo/releases) - [Changelog](https://github.com/pradyunsg/furo/blob/main/docs/changelog.md) - [Commits](https://github.com/pradyunsg/furo/compare/2022.03.04...2022.04.07) --- updated-dependencies: - dependency-name: furo dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
2022-04-04Bump pre-commit from 2.17.0 to 2.18.1Gravatar dependabot[bot]-6/+7
Bumps [pre-commit](https://github.com/pre-commit/pre-commit) from 2.17.0 to 2.18.1. - [Release notes](https://github.com/pre-commit/pre-commit/releases) - [Changelog](https://github.com/pre-commit/pre-commit/blob/main/CHANGELOG.md) - [Commits](https://github.com/pre-commit/pre-commit/compare/v2.17.0...v2.18.1) --- updated-dependencies: - dependency-name: pre-commit dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
2022-04-02Move the creation of BotBase's AsyncResolver to async setupGravatar Chris Lovering-7/+10
There is a deprecation notice that this must be created within an async function. This isn't a breaking change.