aboutsummaryrefslogtreecommitdiffstats
path: root/docs (unfollow)
Commit message (Collapse)AuthorLines
2022-05-10Update Pre-Commit HooksGravatar Hassan Abouelela-2/+2
Updates the version of the libraries and hooks used in the pre-commit configuration using autoupdate. Signed-off-by: Hassan Abouelela <[email protected]>
2022-05-10Bump pre-commit from 2.18.1 to 2.19.0Gravatar dependabot[bot]-5/+5
Bumps [pre-commit](https://github.com/pre-commit/pre-commit) from 2.18.1 to 2.19.0. - [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.18.1...v2.19.0) --- updated-dependencies: - dependency-name: pre-commit dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
2022-05-10Bump pytest from 7.1.1 to 7.1.2Gravatar dependabot[bot]-9/+9
Bumps [pytest](https://github.com/pytest-dev/pytest) from 7.1.1 to 7.1.2. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/7.1.1...7.1.2) --- updated-dependencies: - dependency-name: pytest dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
2022-04-26Bump flake8-bugbear from 22.3.23 to 22.4.25Gravatar dependabot[bot]-5/+6
Bumps [flake8-bugbear](https://github.com/PyCQA/flake8-bugbear) from 22.3.23 to 22.4.25. - [Release notes](https://github.com/PyCQA/flake8-bugbear/releases) - [Commits](https://github.com/PyCQA/flake8-bugbear/compare/22.3.23...22.4.25) --- updated-dependencies: - dependency-name: flake8-bugbear dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
2022-04-26Bump d.py to fix Guild.chunk()Gravatar Chris Lovering-8/+12
2022-04-25Set BotBase.statsd correctly based on init kwargsGravatar Chris Lovering-2/+8
2022-04-21Bump version in pyproject and changelog last few releasesGravatar Chris Lovering-5/+14
2022-04-22Type-hint `ignore_module`v6.3.0Gravatar mbaruh-1/+1
2022-04-21Don't look for extensions in packages prefixed with an underscoreGravatar mbaruh-2/+7
Before this, even if a package is prefixed with an underscore, `walk_extensions` will ignore the package itself, but will still look for extensions inside it.
2022-04-21Load each cog in it's own taskGravatar Chris Lovering-2/+8
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.