aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeLines
...
| * | | | | | | | | | | | | | Add back a lock to DocRedisCache.set based on the DocItemGravatar Chris Lovering2022-08-14-0/+8
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Update any calls to Redis 'iscan' to the new name 'scan_iter'Gravatar Chris Lovering2022-08-14-2/+2
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Convert key expiries to integers before passing to RedisGravatar Chris Lovering2022-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 decoratorGravatar Chris Lovering2022-08-14-6/+1
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | No longer use the removed RedisSession connection objectGravatar Chris Lovering2022-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 changesGravatar Chris Lovering2022-08-14-5/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit resolves all the breaking changes from the aioredis -> redis-py migration.
| * | | | | | | | | | | | | | Bump all deps to latestGravatar Chris Lovering2022-08-14-85/+62
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Bump bot-core versionGravatar Chris Lovering2022-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 testsGravatar Chris Lovering2022-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 testsGravatar Chris Lovering2022-08-14-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | get_event_loop is deprecated as of 3.10 if there is no running loop.
| * | | | | | | | | | | | | | Bump to Python 3.10Gravatar Chris Lovering2022-08-14-3/+3
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Update the docker-compose snekbox dep for botGravatar Chris Lovering2022-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.
| | * | | | | | | | | | | | Removed unused datetime importGravatar ionite342022-08-13-1/+0
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Updated infractions display for updatesGravatar ionite342022-08-13-23/+59
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Added new infraction delta calculations to updated infractions. - Updates of infraction durations now also update the `last_applied` field. - `inserted_at` is now sent by the bot client to denote the original unmodified infraction application time
| | * | | | | | | | | | | | Corrected test use of utcnowGravatar ionite342022-08-13-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Corrected test case to use `datetime.utcnow()` to be consistent with target
| | * | | | | | | | | | | | Updated previous tests to use subset methodGravatar ionite342022-08-06-7/+5
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Refactored test to not use datetime patchGravatar ionite342022-08-06-8/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Used new method of dict subset comparison instead of datetime patching for better compat. with argument types
| | * | | | | | | | | | | | Removed `inserted_at` fallbackGravatar ionite342022-08-06-13/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Given API updates, the fallback is not needed
| | * | | | | | | | | | | | Changed datetime.now to arrow.utcnowGravatar ionite342022-08-06-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Used arrow.utcnow to reduce complexity and import
| | * | | | | | | | | | | | Infraction duration fallback if no `last_applied` fieldGravatar ionite342022-08-01-2/+13
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Added microsecond rounding for `humanize_delta`Gravatar ionite342022-08-01-1/+16
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Added new expiry usage to applyGravatar ionite342022-07-31-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Added new usage of `last_applied` time for duration calculation in `apply_infraction`
| | * | | | | | | | | | | | Use `last_applied` to display durationGravatar ionite342022-07-28-1/+2
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Correct last_applied formattingGravatar ionite342022-07-28-1/+1
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Fixed testsGravatar ionite342022-07-28-6/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Corrected datetime patching
| | * | | | | | | | | | | | Updated ban command docstringGravatar ionite342022-07-28-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Updated docstring to be more explicit on parameter fields
| | * | | | | | | | | | | | Updated parameter namesGravatar ionite342022-07-28-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Changed `duration` parameter names to `duration_or_expiry` to more accurately reflect options for help
| | * | | | | | | | | | | | Added isoformat for test payloadGravatar ionite342022-07-28-1/+1
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Fixed test patchesGravatar ionite342022-07-28-15/+17
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Updated testsGravatar ionite342022-07-28-17/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Refactored tests for new time duration arguments
| | * | | | | | | | | | | | Ran isort on importsGravatar ionite342022-07-28-2/+2
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Refactoring for DurationOrExpiryGravatar ionite342022-07-28-25/+33
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Added `DurationOrExpiry` type unionGravatar ionite342022-07-28-0/+1
| | |/ / / / / / / / / / /
| | | * | | | | | | | | | Add note to docstring, fix type-hints, and update log messagesGravatar wookie1842022-08-06-6/+14
| | | | | | | | | | | | |
| | | * | | | | | | | | | Fix testsGravatar wookie1842022-08-04-12/+18
| | | | | | | | | | | | |
| | | * | | | | | | | | | Refactor infractions to avoid passing around coroutinesGravatar wookie1842022-08-04-16/+23
| |_|/ / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This avoids warnings if they are never awaited, e.g. when functions are mocked in tests
| | | | | | | | | | | * Change f-string to normal stringGravatar wookie1842022-09-19-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Co-authored-by: ChrisJL <[email protected]>
| | | | | | | | | | | * Fix testsGravatar wookie1842022-08-07-4/+3
| | | | | | | | | | | |
| | | | | | | | | | | * Fix enabling/disabling of task loopGravatar wookie1842022-08-07-8/+23
| | | | | | | | | | | |
| | | | | | | | | | | * Write tests for reviewerGravatar wookie1842022-08-07-0/+153
| | | | | | | | | | | |
| | | | | | | | | | | * Fix message detection and remove unused parameterGravatar wookie1842022-08-07-9/+6
| | | | | | | | | | | |
| | | | | | | | | | | * Dont await tasks.loop methodsGravatar wookie1842022-08-06-3/+3
| | | | | | | | | | | |
| | | | | | | | | | | * Make handling of reviews over multiple messages more robustGravatar wookie1842022-08-06-3/+8
| | | | | | | | | | | |
| | | | | | | | | | | * Remove now unused scheduler from talentpoolGravatar wookie1842022-08-06-66/+4
| | | | | | | | | | | |
| | | | | | | | | | | * Implement new autoreview system.Gravatar wookie1842022-08-06-16/+111
| |_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now supports: - limiting number of active reviews - limiting minimum time between reviews Order of review is based on number of nomination entries, and age of nomination.
* | | | | | | | | | | Merge pull request #2240 from python-discord/2238-purge-cmdGravatar mina2022-08-03-2/+8
|\ \ \ \ \ \ \ \ \ \ \ | |_|/ / / / / / / / / |/| | | | | | | | | | Updated `purge` to require at least one user
| * | | | | | | | | | Improved `purge` help messageGravatar ionite342022-08-03-1/+1
| | | | | | | | | | |
| * | | | | | | | | | Removed unused importGravatar ionite342022-08-03-1/+1
| | | | | | | | | | |
| * | | | | | | | | | Updated `purge` to require >1 usersGravatar ionite342022-08-03-3/+9
|/ / / / / / / / / /
* | | | | | | | | | Merge pull request #2224 from python-discord/sid/feature/tags/print-returnGravatar ChrisJL2022-07-24-0/+9
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | feat(tags): add print-return tag