Commit message (Collapse) | Author | Age | Lines | |
---|---|---|---|---|
* | Merge pull request #2260 from Dorukyum/channel.guild-nullable | 2022-08-19 | -1/+1 | |
|\ | ||||
| * | Merge branch 'main' into channel.guild-nullable | 2022-08-19 | -12/+124 | |
| |\ | |/ |/| | ||||
* | | fix: don't include replied mentions in mention filter (#2017) | 2022-08-18 | -12/+124 | |
| | | | | | | | | | | Co-authored-by: Izan <[email protected]> Co-authored-by: TizzySaurus <[email protected]> Co-authored-by: Xithrius <[email protected]> | |||
| * | Check if channel.guild is None | 2022-08-18 | -1/+1 | |
|/ | ||||
* | Merge pull request #2031 from python-discord/incident-archive-msg-improvements | 2022-08-18 | -19/+53 | |
|\ | | | | | Incident archive msg improvements | |||
| * | Merge branch 'main' into incident-archive-msg-improvements | 2022-08-18 | -46/+53 | |
| |\ | |/ |/| | ||||
* | | Merge pull request #2250 from python-discord/dawnofmidnight/compban | 2022-08-18 | -1/+8 | |
|\ \ | | | | | | | feat: command for banning compromised accounts | |||
| * \ | Merge branch 'main' into dawnofmidnight/compban | 2022-08-18 | -45/+44 | |
| |\ \ | |/ / |/| | | ||||
* | | | Merge pull request #2251 from python-discord/automute-message | 2022-08-17 | -3/+7 | |
|\ \ \ | | | | | | | | | Added mod alerted notice to auto-infractions | |||
| * \ \ | Merge branch 'main' into automute-message | 2022-08-17 | -42/+37 | |
| |\ \ \ | |/ / / |/| | | | ||||
* | | | | Merge pull request #2252 from python-discord/Resolve-silence-test-failures | 2022-08-15 | -42/+37 | |
|\ \ \ \ | | | | | | | | | | | Correctly initialise redis tests | |||
| * | | | | Correctly initialise redis tests | 2022-08-15 | -42/+37 | |
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Calling the cog_load from within the setUp function resulted in interaction with a RedisSession before it was initialised. This wasn't noticed in CI as it only error under certain concurrency timings due to xdist. To resolve this, we moved the setup and async setup logic to a base class. Co-authored-by: Hassan Abouelela <[email protected]> | |||
| * | | | Added article to automute message | 2022-08-16 | -1/+1 | |
| | | | | ||||
| * | | | Added newlines and non-mentioned mod role | 2022-08-16 | -4/+5 | |
| | | | | ||||
| * | | | Added mod alerted notice to auto-infractions | 2022-08-15 | -1/+4 | |
|/ / / | ||||
| * | | fix: replace datetime.utcnow() with arrow | 2022-08-17 | -4/+4 | |
| | | | ||||
| * | | fix: change use of arrow to datetime and change docstring wording | 2022-08-15 | -5/+5 | |
| | | | ||||
| * | | feat: command for banning compromised accounts | 2022-08-15 | -0/+7 | |
|/ / | ||||
* | | Merge pull request #2249 from python-discord/redis-fix | 2022-08-14 | -0/+1 | |
|\ \ | | | | | | | Globally decode binary responses from redis to strings | |||
| * | | Globally decode binary responses from redis to strings | 2022-08-14 | -0/+1 | |
|/ / | ||||
| * | Fix incident tests. | 2022-08-15 | -13/+25 | |
| | | ||||
| * | Merge branch 'main' into incident-archive-msg-improvements | 2022-08-14 | -3856/+3624 | |
| |\ | |/ |/| | ||||
* | | Merge pull request #2229 from python-discord/py3.10-rediscache | 2022-08-14 | -1474/+332 | |
|\ \ | ||||
| * | | revert bump to markdownify version | 2022-08-14 | -10/+14 | |
| | | | | | | | | | | | | | | | The new versions introduce conversions which causes the doc command embed to be formatted improperly | |||
| * | | Use RedisTestCase helper class for both Incidents and Silence test cases. | 2022-08-14 | -36/+6 | |
| | | | ||||
| * | | Add a new test helper for managing redis sessions | 2022-08-14 | -0/+24 | |
| | | | | | | | | | | | | This helper ensures that a fresh RedisSession is given to each test case that inherits from it. | |||
| * | | Bump bot-core to full 8.0.0 release | 2022-08-14 | -8/+7 | |
| | | | ||||
| * | | Remove unneeded N802 noqas | 2022-08-14 | -5/+5 | |
| | | | | | | | | | | | | pep-naming now supports these functions being in camel case. | |||
| * | | Directly return the RedisSession on connection | 2022-08-14 | -2/+1 | |
| | | | ||||
| * | | noqa false-positive B023 instances | 2022-08-14 | -4/+4 | |
| | | | | | | | | | | | | This was a new lint rule added in the latest bugbear. | |||
| * | | Stop creating futures in tests with no event loop running | 2022-08-14 | -6/+0 | |
| | | | ||||
| * | | Add back a lock to DocRedisCache.set based on the DocItem | 2022-08-14 | -0/+8 | |
| | | | ||||
| * | | Update any calls to Redis 'iscan' to the new name 'scan_iter' | 2022-08-14 | -2/+2 | |
| | | | ||||
| * | | Convert key expiries to integers before passing to Redis | 2022-08-14 | -1/+1 | |
| | | | | | | | | | | | | If a float is given, Redis will assume the expiry is in milliseconds and must be multiplied by 1000. This is undesirable, as we are already passing the expiry in seconds. | |||
| * | | Remove usages of the removed namespace_lock decorator | 2022-08-14 | -6/+1 | |
| | | | ||||
| * | | No longer use the removed RedisSession connection object | 2022-08-14 | -51/+46 | |
| | | | | | | | | | | | | This has been abstracted away, the correct way to do this now is to directly access the client. | |||
| * | | redis-py breaking changes | 2022-08-14 | -5/+6 | |
| | | | | | | | | | | | | This commit resolves all the breaking changes from the aioredis -> redis-py migration. | |||
| * | | Bump all deps to latest | 2022-08-14 | -85/+62 | |
| | | | ||||
| * | | Bump bot-core version | 2022-08-14 | -1216/+118 | |
| | | | | | | | | | | | | This bump comes with a move to redis-py over aioredis. As such, pin new transitive dependancies to exact versions. | |||
| * | | Remove warnings in error handler tests | 2022-08-14 | -56/+47 | |
| | | | | | | | | | | | | These warnings were caused by the setup coro from error_handler.py being imported directly, causing a warning about an un-awaited coro whenever the Cog was accessed from the same file. | |||
| * | | Remove call to get_event_loop in tests | 2022-08-14 | -3/+2 | |
| | | | | | | | | | | | | get_event_loop is deprecated as of 3.10 if there is no running loop. | |||
| * | | Bump to Python 3.10 | 2022-08-14 | -3/+3 | |
| | | | ||||
| * | | Update the docker-compose snekbox dep for bot | 2022-08-14 | -1/+1 | |
|/ / | | | | | | | The bot service was still configured to depend on the snekbox service, even though this service is now optional, in favour of the snekbox-311 service. | |||
* | | Merge pull request #2240 from python-discord/2238-purge-cmd | 2022-08-03 | -2/+8 | |
|\ \ | | | | | | | Updated `purge` to require at least one user | |||
| * | | Improved `purge` help message | 2022-08-03 | -1/+1 | |
| | | | ||||
| * | | Removed unused import | 2022-08-03 | -1/+1 | |
| | | | ||||
| * | | Updated `purge` to require >1 users | 2022-08-03 | -3/+9 | |
|/ / | ||||
* | | Merge pull request #2224 from python-discord/sid/feature/tags/print-return | 2022-07-24 | -0/+9 | |
|\ \ | | | | | | | feat(tags): add print-return tag | |||
| * \ | Merge branch 'main' into sid/feature/tags/print-return | 2022-07-24 | -8/+9 | |
| |\ \ | |/ / |/| | | ||||
* | | | Merge pull request #2220 from python-discord/fix-bot-2168 | 2022-07-23 | -8/+9 | |
|\ \ \ | | | | | | | | | Update `!modpings off` confirmation to use a discord timestamp. |