|  | Commit message (Collapse) | Author | Age | Lines | 
|---|
| ... |  | 
| |\  
| | 
| | | Type-hint `ignore_module` | 
| |/ |  | 
| | 
| 
| 
| | 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. | 
| |\  
| | 
| | | Load each cog in it's own task | 
| |/ |  | 
| |\  
| | 
| | | Add unqualify to the utils namespace | 
| |/  
|   
|   
| | This is for bots that want to use the unqualify function for their own extension cogs | 
| |\  
| | 
| | | Bump d.py | 
| | | |  | 
| |/  
|   
|   
| | https://github.com/Rapptz/discord.py/tree/987235d5649e7c2b1a927637bab6547244ecb2cf | 
| |\  
| | 
| | 
| | 
| | | python-discord/dependabot/pip/flake8-annotations-2.9.0
Bump flake8-annotations from 2.8.0 to 2.9.0 | 
| | |\  
| |/  
|/| |  | 
| |\ \  
| | | 
| | | | Allow passing an api_client kwarg to BotBase | 
| |/ / |  | 
| |\ \  
| | | 
| | | | Reconnect to redis session on setup if it is closed | 
| | | | |  | 
| |\| | 
| | | 
| | | | Minor fixes to BotBase | 
| | | | |  | 
| | | | 
| | | 
| | | 
| | | | This is in case a connection cannot be made on init. | 
| |/ /  
| |   
| |   
| | | This is to avoid a deprecation notice. | 
| |/  
|   
|   
|   
|   
|   
|   
|   
|   
|   
|   
|   
|   
|   
| | 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]> | 
| |\  
| | 
| | | Bump furo from 2022.3.4 to 2022.4.7 | 
| |/  
|   
|   
|   
|   
|   
|   
|   
|   
|   
|   
|   
|   
|   
| | 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]> | 
| |\  
| | 
| | | Bump pre-commit from 2.17.0 to 2.18.1 | 
| |/  
|   
|   
|   
|   
|   
|   
|   
|   
|   
|   
|   
|   
|   
| | 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]> | 
| |\  
| | 
| | | Migrate site_api tests from bot | 
| | |\  
| |/  
|/| |  | 
| |\ \  
| | | 
| | | | Move the creation of BotBase's AsyncResolver to async setup | 
| |/ /  
| |   
| |   
| | | There is a deprecation notice that this must be created within an async function. This isn't a breaking change. | 
| |/  
|   
|   
|   
|   
| | Co-authored-by: Joe Banks <[email protected]>
Co-authored-by: Mark <[email protected]>
Co-authored-by: Sebastiaan Zeeff <[email protected]> | 
| |\  
| | 
| | | Bump all dev deps to latest versions | 
| | | |  | 
| |/ |  | 
| |\  
| | 
| | | Update changelog with latest changes | 
| | | |  | 
| |/ |  | 
| |\  
| | 
| | | Bump d.py and add bot base | 
| | | 
| | 
| | | Co-authored-by: Mark <[email protected]> | 
| | | |  | 
| | | 
| | 
| | 
| | 
| | 
| | 
| | 
| | 
| | | Doing a naive git log --grep closing_tasks on the bot repo I found these two places it was used:
https://github.com/python-discord/bot/commit/429cc865309242f0cf37147f9c3f05036972eb8c - Reddit cog to revoke the access token on unload, which has since been moved to lance (without this feature).
https://github.com/python-discord/bot/commit/f4004d814c1babfb5906afb8cd9944ceef90a2a3 - Silence cog, which has been removed since.
Since this list of tasks to close when closing the Discord connection is no longer used, it has been removed from BotBase. | 
| | | |  | 
| | | |  | 
| | | |  | 
| | | |  | 
| | | 
| | 
| | 
| | | This allows commands like extensions and source to see all of the available commands, rather than just the currently loaded commands. | 
| | | 
| | 
| | 
| | 
| | 
| | | Since *args and **kwargs already allow these to be passed, there is no use in explicitly listing them.
allowed_roles has been left there, to ensure that it is always passed, since it's important to use this to avoid bots being able to ping large roles. | 
| | | 
| | 
| | 
| | 
| | 
| | 
| | | This commit also modifies the extensions util, since it's now directly used by bot-core.
Co-authored-by: Mark <[email protected]>
Co-authored-by: Hassan Abouelela <[email protected]> | 
| | | 
| | 
| | 
| | 
| | 
| | | This is used by the bots to push stats to statsd in a non-blocking way.
Co-authored-by: Joe Banks <[email protected]> | 
| |/ |  | 
| |\  
| | 
| | | Revert disnake |