| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add a more concrete exception for 500 status codes. | Rapptz | 2020-09-09 | 1 | -1/+7 |
| | | | | | Fixes #5797 | ||||
| * | Handle cloudflare bans on webhook requests | Rapptz | 2020-09-09 | 1 | -0/+8 |
| | | | | | Fixes #5221 | ||||
| * | Add logging to webhooks | Rapptz | 2020-09-09 | 1 | -10/+23 |
| | | | | | Fixes #5798 | ||||
| * | Fix a typo with webhook documentation | ELginas | 2020-08-05 | 1 | -1/+1 |
| | | |||||
| * | Allow more methods to set an audit log reason | Nadir Chowdhury | 2020-06-30 | 1 | -11/+29 |
| | | |||||
| * | Allow Webhook to be hashable and comparable | Znunu | 2020-06-30 | 1 | -1/+19 |
| | | |||||
| * | Fix various inconsistencies within the documentation (#5067) | Sebastian Law | 2020-06-28 | 1 | -4/+14 |
| | | |||||
| * | Prepare for the discord.com domain rename | Rapptz | 2020-05-23 | 1 | -3/+3 |
| | | |||||
| * | Documentation fixups for allowed mentions | Rapptz | 2020-04-04 | 1 | -1/+1 |
| | | |||||
| * | Rename allowed mention parameters to allowed_mentions | Rapptz | 2020-04-04 | 1 | -7/+7 |
| | | |||||
| * | Fix various implementation bugs with allowed mentions | Rapptz | 2020-04-04 | 1 | -6/+8 |
| | | |||||
| * | Add support for configuring allowed mentions per message or bot wide. | Rapptz | 2020-04-04 | 1 | -1/+13 |
| | | |||||
| * | Fix invalid format specifier in PartialWebhookState.__getattr__ | Sebastiaan Zeeff | 2020-02-22 | 1 | -1/+1 |
| | | | | | | | | | | The message for the AttributeError raised by the __getattr__ method of the PartialWebhookState class is formatted using `str.format`. However, the placeholder contained a stray ":" before the !r specifier. This caused a ValueError("Invalid format specifier") to be raised whenever this method was called in lieu of the AttributeError that is intended to be raised. | ||||
| * | Fix Webhook.send returning an empty string when wait=False | Rapptz | 2020-02-16 | 1 | -2/+4 |
| | | |||||
| * | Fixes and improvements for v1.3 documentation | Harmon | 2020-01-22 | 1 | -0/+3 |
| | | | | | | | | | | * Add missing versionadded strings for v1.3 * Add missing versionchanged string for Message.edit * Consistently use versionadded for attributes * Consistently use versionchanged for parameters * Use versionchanged for Bot.is_owner * Fix references in v1.3 changelog * Improve grammar in v1.3 changelog | ||||
| * | Fix out of order files being sent in webhooks when there are 10 files. | Rapptz | 2020-01-22 | 1 | -1/+1 |
| | | |||||
| * | Bump copyright year to 2020 | Rapptz | 2020-01-19 | 1 | -2/+2 |
| | | | | | Closes #2510 | ||||
| * | Implement `Webhook.type` | NCPlayz | 2019-11-26 | 1 | -3/+11 |
| | | |||||
| * | Fix all deprecation warnings for 3.8 | Rapptz | 2019-11-20 | 1 | -3/+3 |
| | | |||||
| * | Adjust BASE urls to have no trailing slash (consistency) | Devon R | 2019-11-15 | 1 | -2/+2 |
| | | |||||
| * | Return invites as https, various URL normalization | Devon R | 2019-11-15 | 1 | -2/+2 |
| | | |||||
| * | Implement `TextChannel.follow()` | NCPlayz | 2019-11-15 | 1 | -0/+19 |
| | | |||||
| * | Fix webhooks not re-raising after retries run out | Xua | 2019-10-20 | 1 | -0/+4 |
| | | |||||
| * | Fix breakage with webhook tokens being missing. | Rapptz | 2019-07-22 | 1 | -7/+18 |
| | | |||||
| * | Improve documentation | NCPlayz | 2019-06-07 | 1 | -12/+12 |
| | | |||||
| * | Fix stray colon in Asset related docstrings | Rapptz | 2019-06-04 | 1 | -2/+2 |
| | | |||||
| * | Correct the documentation for methods and properties that return Assets | Vexs | 2019-05-14 | 1 | -6/+6 |
| | | |||||
| * | Don't overwrite data parameter in webhooks. | Rapptz | 2019-05-10 | 1 | -15/+15 |
| | | | | | Fixes #2140 | ||||
| * | Consistent use of __all__ to prevent merge conflicts. | Rapptz | 2019-04-20 | 1 | -1/+6 |
| | | |||||
| * | Fix UnboundLocalError when RequestsWebhookAdapter raises an error. | Rapptz | 2019-04-15 | 1 | -1/+4 |
| | | |||||
| * | Redesign asset retrieval in the library. | NCPlayz | 2019-04-06 | 1 | -6/+8 |
| | | | | | | | | | | | | Most assets now return a new class named `Asset`. This allows for the assets to be consistently saved via a `save` method instead of special casing for `Attachment`. `AppInfo` is no longer a namedtuple it is a fully documented dataclass, as well as having the state attached to it. Fixes #1997 | ||||
| * | Double underscore HTTPClient's internal session. | Rapptz | 2019-03-24 | 1 | -1/+2 |
| | | |||||
| * | Organise documentation | NCPlayz | 2019-03-19 | 1 | -23/+23 |
| | | |||||
| * | Take back ownership of files from aiohttp for retrying requests. | Rapptz | 2019-03-18 | 1 | -5/+16 |
| | | | | | Fix #1809 | ||||
| * | Mock a ConnectionState object to fix wait=True errors in webhooks. | Rapptz | 2019-03-02 | 1 | -6/+37 |
| | | | | | Fixes #1898 | ||||
| * | Properly clean-up file objects when necessary instead of instantly. | Rapptz | 2019-03-02 | 1 | -19/+25 |
| | | | | | Fix #1770 | ||||
| * | Bump aiohttp requirement and fix AsyncWebhookAdapter | Bryan Forbes | 2019-02-12 | 1 | -1/+1 |
| | | |||||
| * | Bumped copyright years to 2019. | Dante Dam | 2019-01-28 | 1 | -1/+1 |
| | | |||||
| * | Fix Webhook states for stateful objects | Dice | 2019-01-28 | 1 | -3/+3 |
| | | |||||
| * | Fix AttributeError in webhook.send | Chris Rrapi | 2018-11-29 | 1 | -1/+1 |
| | | |||||
| * | Webhooks: add support for multi-file upload | Terrance | 2018-11-24 | 1 | -8/+28 |
| | | | | | | | | | | `Webhook.send()` now accepts a `files` kwarg holding a list of `File` objects, which are included in the HTTP request as `file1`, `file2` and so on. This is an undocumented feature of the Discord API, but is analogous with the client's sending of messages with multiple files. | ||||
| * | [lint] Fix import order | Hornwitser | 2018-11-24 | 1 | -1/+2 |
| | | | | | | Reorder imports to be consistenly grouped by standard library, third party library, and local modules in that order thoughout the library. | ||||
| * | Fix up the Sphinx strings causing warnings. | Rapptz | 2018-09-15 | 1 | -1/+1 |
| | | |||||
| * | [lint] Fix types used for __slots__ and __all__ | Hornwitser | 2018-08-22 | 1 | -1/+1 |
| | | | | | | Stay consistent with the rest of the library and use lists for module __all__ values and tuples for class __slots__ attributes. | ||||
| * | [lint] Fix incorrect and inconsistent whitespace | Hornwitser | 2018-08-22 | 1 | -1/+1 |
| | | | | | Adjust whitespace to be consistent with the rest of the library. | ||||
| * | Drop support for Python 3.4 and make minimum version 3.5.2. | Rapptz | 2018-06-10 | 1 | -13/+8 |
| | | |||||
| * | Fix Webhook.guild raising an AttributeError. | Rapptz | 2018-03-16 | 1 | -1/+1 |
| | | | | | Fixes #1148 | ||||
| * | Add intersphinx | Tobotimus | 2018-01-06 | 1 | -8/+8 |
| | | |||||
| * | Fix multipart sending for RequestsWebhookAdapter to work. | Rapptz | 2018-01-03 | 1 | -2/+5 |
| | | |||||
| * | Fix Webhook.delete not working. | Rapptz | 2017-11-07 | 1 | -1/+1 |
| | | |||||