| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Change avatar_url type hint to Any instead of str | Rapptz | 2021-08-27 | 1 | -5/+6 |
| | | |||||
| * | Fix Webhook return types | Steve C | 2021-08-26 | 1 | -6/+6 |
| | | | | Also add positional only arguments where applicable | ||||
| * | Remove in-place edits and return fresh instances instead | Rapptz | 2021-08-23 | 1 | -9/+22 |
| | | | | | Fixes #4098 | ||||
| * | Fix webhook typings and use PartialMessageable instead of Object | Rapptz | 2021-08-22 | 1 | -3/+7 |
| | | |||||
| * | Make json conversion functions private | Rapptz | 2021-08-22 | 1 | -1/+1 |
| | | |||||
| * | Make global log variable in modules private | Rapptz | 2021-08-22 | 1 | -4/+4 |
| | | |||||
| * | Fix SyncWebhook not working across thread barriers | Rapptz | 2021-07-30 | 1 | -11/+22 |
| | | | | | Fix #7310 | ||||
| * | Remove extraneous __slots__ assignments | Rapptz | 2021-06-28 | 1 | -1/+1 |
| | | |||||
| * | Add support for thread parameter in Webhook.send | Rapptz | 2021-06-08 | 1 | -0/+13 |
| | | |||||
| * | Fix various reference issues in documentation | Josh | 2021-05-06 | 1 | -2/+0 |
| | | | | | Co-Authored-By: Riley Shaw <[email protected]> | ||||
| * | Replace uses of Ellipsis as sentinels with utils.MISSING | Josh | 2021-05-03 | 1 | -1/+1 |
| | | |||||
| * | Clarify Webhook.send return value documentation | NoName | 2021-05-02 | 1 | -1/+1 |
| | | |||||
| * | Fix SyncWebhook exception case causing attribute errors | Rapptz | 2021-05-01 | 1 | -0/+3 |
| | | |||||
| * | Fix sending multipart data with SyncWebhook | Rapptz | 2021-05-01 | 1 | -4/+8 |
| | | | | | Fixes #6825 | ||||
| * | Add utils.MISSING | Nadir Chowdhury | 2021-04-29 | 1 | -1/+4 |
| | | |||||
| * | Add `fetch_message` for webhooks | Nadir Chowdhury | 2021-04-16 | 1 | -3/+62 |
| | | |||||
| * | Fix overloads on Webhook.send to not require wait kwarg | Rapptz | 2021-04-15 | 1 | -1/+1 |
| | | |||||
| * | Fix WebhookMessage.edit documentation | Rapptz | 2021-04-15 | 1 | -6/+1 |
| | | |||||
| * | Fix rate limit handling with retry_after precision change | Rapptz | 2021-04-15 | 1 | -2/+4 |
| | | |||||
| * | Rewrite webhooks to play better with typings and rate limits | Rapptz | 2021-04-15 | 1 | -0/+961 |
| This unfortunately required splitting the types into two. This led to a lot of unfortunate code duplication that I didn't really enjoy writing. The new design allows users to pass an authentication token to make webhook requests without the webhook token and allows to finally edit the webhook channel. The new design also uses a contextvar to store rate limiting information so multiple instances or recreating instances no longer clears the ratelimiting state since it's now essentially a "global" object. Closes #6525, closes #6662, closes #2509, closes #1761 | |||||