Commit message (Collapse) | Author | Lines | ||
---|---|---|---|---|
2022-06-28 | Use new application format for message data in test helper | -1/+1 | ||
2022-06-28 | Ignore auto_moderation_action messages when applying anti-spam rules | -1/+2 | ||
When a message triggers an auto_moderation_action notification, Discord re-writes the author field for the system message to look as if it's from the original author. This means those messages counted towards our anti-spam filter. This both triggered the filter too early, and also resulted in those auto mod messages being deleted when the filter was hit. | ||||
2022-06-28 | Bump botcore to get latest d.py changes | -164/+161 | ||
2022-06-19 | filter out source code tags, remove unnecessary regex | -5/+14 | ||
2022-06-19 | filter out headerlinks for descriptions | -0/+5 | ||
2022-06-17 | Fix help embed views | -11/+4 | ||
Due to various breaking changes in the discord.py library the views of the help embed stopped working properly. - Use `add_item` in `CommandView`. This was done in GroupView but was apparently missed in `CommandView`, and the former (hacky) method no longer works. - Instead of editing the help message normally (which required to then defer the response), the message edit is made to be the response itself. It seems like the callback would automatically defer the response if none was made, but that no longer happens. | ||||
2022-06-14 | Only check for autoban filters if reason key is present and not None | -1/+3 | ||
Fixes bot#2194 Fixes BOT-35H | ||||
2022-06-14 | Allow char info in all channels bar py-gen | -2/+2 | ||
2022-06-13 | Auto bump nomination threads | -1/+7 | ||
Every nomination thread we call the thread bumper command this manually, so automating this is a no brainer. | ||||
2022-06-13 | Fix autobans not working for invite filters | -1/+6 | ||
2022-06-12 | Add reroll command. (#1568) | -18/+159 | ||
Co-authored-by: Bluenix <[email protected]> | ||||
2022-06-13 | Correct "older" to "younger" | -1/+1 | ||
Co-authored-by: Mark <[email protected]> | ||||
2022-06-13 | Correct _get_messages_from_channels type hints and add docstring | -4/+9 | ||
2022-06-12 | Make `predicate_after` exclusive as well | -1/+1 | ||
2022-06-12 | Clarify age is exclusive in `purge` docstring | -1/+5 | ||
2022-06-11 | Add user purging command | -2/+9 | ||
The command cleans all public messages from a user. This is a private case that is common enough that it probably deserves a shortcut. Since the `purge` alias is never used for the clean group I repurposed it for this new command. | ||||
2022-06-11 | Fix clean range not being exclusive | -2/+6 | ||
2022-06-08 | Improve nomination message consistency and include user mentions | -31/+28 | ||
2022-06-07 | chore: Remove allowed_strings in favour of Literal | -28/+8 | ||
2022-06-07 | HelpChannels: refactor pin/unpin functions | -13/+17 | ||
2022-06-07 | HelpChannels: pass message directly to pin_wrapper | -16/+12 | ||
2022-06-05 | Filter out all header links through tags | -1/+5 | ||
Replacing the paragraph sign on the string missed some other symbols that were used for permalinks. | ||||
2022-06-03 | Add Explicit Namespaces To Branding Caches | -4/+2 | ||
Signed-off-by: Hassan Abouelela <[email protected]> | ||||
2022-06-03 | Use MappingProxyType For Asset Map | -2/+3 | ||
Signed-off-by: Hassan Abouelela <[email protected]> | ||||
2022-05-29 | Update clean regex description with cleaner examples | -5/+3 | ||
2022-05-29 | Make small wording and style changes | -7/+8 | ||
2022-05-29 | Raise ValueError if max_length greater than allowed by paste service | -3/+11 | ||
2022-05-28 | Clean from public active threads when channels is set to * | -3/+3 | ||
2022-05-28 | Fix tests | -0/+3 | ||
2022-05-28 | Copy message instead of modifying original | -5/+5 | ||
2022-05-28 | Add special handling for eval command followed by backticks. | -0/+27 | ||
2022-05-27 | Fix !clean users command to handle more than one user (#2178) | -5/+5 | ||
* Fix !clean users command to properly handle more than one user * Make !clean user an alias of !clean users instead of the other way around Co-authored-by: Xithrius <[email protected]> | ||||
2022-05-27 | Catch correct exception in clean cog (#2176) | -1/+1 | ||
Co-authored-by: Xithrius <[email protected]> | ||||
2022-05-27 | Remove rediscache from thread bumper now it's been migrated (#2161) | -4/+0 | ||
Co-authored-by: Xithrius <[email protected]> | ||||
2022-05-22 | Add request data as a sentry breadcrumb when clean cog fails | -17/+30 | ||
This is to aid in the debugging on an issue we have encountered | ||||
2022-05-22 | Use existing ResponseCodeError attrs rather than fetch again | -2/+5 | ||
This also updates the log string to use % based format strings, rather than a mix of f-string and % string which caused the %r to not work. | ||||
2022-05-22 | Updating and improving clarity in help documentation for !clean subcommands | -9/+32 | ||
2022-05-22 | Ensure correct tag information is sent to statsd | -1/+5 | ||
2022-05-22 | Ensure error uses correct maximum size | -3/+4 | ||
2022-05-21 | Bump malformed API response from debug to error log (#2175) | -3/+5 | ||
2022-05-11 | Strip Trailing Slashes From Invite Filter | -1/+1 | ||
Removes trailing slashes from invites in the invite filter to prevent false positives. Signed-off-by: Hassan Abouelela <[email protected]> | ||||
2022-05-11 | Bump Bot Core to v7.0.0 | -78/+82 | ||
Bumps the botcore version to v7.0.0, and implements the changes required by the breaking fix documented in the changelog for `utils.regex.DISCORD_INVITE`. Signed-off-by: Hassan Abouelela <[email protected]> | ||||
2022-05-02 | Don't decode empty content as json in thread bumper | -15/+20 | ||
Closes #2162 Closes BOT-343 self.bot.api_client.request can not be used to check if a thread id exists in the bumped thread list on site, as self.bot.api_client.request() always attempts to decode the response as json. The thread bump viewset in site returns a 204 if the given thread exists with no content, so this does not work. | ||||
2022-05-02 | Fix tests | -10/+17 | ||
2022-05-02 | Update functions using send_to_paste_service util | -28/+51 | ||
2022-05-02 | Add contents length validation to send_to_paste_service util | -6/+24 | ||
It now raises errors instead of returning None on failing | ||||
2022-05-01 | Added Messages Content to the `!intents` tag (#2159) | -1/+1 | ||
* Update intents.md * Minor wording changes Co-authored-by: wookie184 <[email protected]> | ||||
2022-04-30 | Add more logging to DocRedisCache | -0/+5 | ||
2022-04-30 | Fix set_expires being set to a set instead of a dict | -1/+3 | ||
2022-04-30 | expire internal cache according to redis' TTL instead of always a week | -7/+14 | ||