| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix incorrect typehint in send_message | Willy | 2021-07-21 | 1 | -2/+2 |
| | | |||||
| * | Re-try requests on 504 error and raise correct error | Lilly Rose Berner | 2021-07-09 | 1 | -3/+3 |
| | | |||||
| * | Allow use of orjson instead of json | Rapptz | 2021-07-07 | 1 | -1/+1 |
| | | | | | | | | The difference in speed seems negligible at start up, which is when most time is taken for actually parsing JSON. I could potentially be missing something but profiling didn't point to any discernable difference. | ||||
| * | Fix typing errors with Client | Rapptz | 2021-07-04 | 1 | -4/+6 |
| | | |||||
| * | Fix type errors and potentially unbound code in http.py | Rapptz | 2021-07-04 | 1 | -28/+35 |
| | | |||||
| * | Rework User.edit to have proper typing | Rapptz | 2021-06-29 | 1 | -7/+1 |
| | | |||||
| * | Add support for sending multiple embeds | Aomi Vel | 2021-06-27 | 1 | -2/+8 |
| | | |||||
| * | Type-Hint http.py | Josh | 2021-06-10 | 1 | -245/+518 |
| | | |||||
| * | Clarify actions that require manage_threads permission | Rapptz | 2021-06-08 | 1 | -0/+1 |
| | | |||||
| * | Bump gateway API to v9 | Rapptz | 2021-06-08 | 1 | -4/+4 |
| | | |||||
| * | Update thread typings and payloads to match documentation | Rapptz | 2021-06-08 | 1 | -8/+27 |
| | | |||||
| * | Implement remaining HTTP endpoints on threads | Rapptz | 2021-06-08 | 1 | -5/+11 |
| | | | | | | I'm not sure if I missed any -- but this is the entire documented set so far. | ||||
| * | First pass at preliminary thread support | Rapptz | 2021-06-08 | 1 | -0/+77 |
| | | | | | | This is missing a lot of functionality right now, such as two gateway events and all the HTTP CRUD endpoints. | ||||
| * | update types subpackage with latest docs | Nadir Chowdhury | 2021-06-07 | 1 | -10/+11 |
| | | |||||
| * | Add support for editing guild widgets | MhmCats | 2021-06-02 | 1 | -0/+3 |
| | | |||||
| * | Implement StageInstance | Nadir Chowdhury | 2021-05-30 | 1 | -0/+29 |
| | | |||||
| * | Add invite targets for voice channel invites | Zomatree | 2021-05-29 | 1 | -0/+12 |
| | | |||||
| * | Add initial support for buttons and components | Rapptz | 2021-05-27 | 1 | -2/+18 |
| | | |||||
| * | Typehint emoji classes | Rapptz | 2021-05-05 | 1 | -5/+1 |
| | | |||||
| * | Type hint GuildChannel and don't make it a Protocol | Rapptz | 2021-05-05 | 1 | -6/+16 |
| | | | | | This reverts GuildChannel back into a base class mixin. | ||||
| * | Add discovery_splash and community field to Guild.edit | Nadir Chowdhury | 2021-05-05 | 1 | -0/+2 |
| | | |||||
| * | Add fetch_invite with with_expiration | Nadir Chowdhury | 2021-05-01 | 1 | -1/+2 |
| | | |||||
| * | Fix guild application command endpoints | Joey van Langen | 2021-05-01 | 1 | -6/+6 |
| | | |||||
| * | Add types for ApplicationCommandPermissions & co | Nadir Chowdhury | 2021-05-01 | 1 | -0/+38 |
| | | |||||
| * | Add VoiceChannel.video_quality_mode | z03h | 2021-04-17 | 1 | -0/+2 |
| | | |||||
| * | Add `fetch_message` for webhooks | Nadir Chowdhury | 2021-04-16 | 1 | -0/+13 |
| | | |||||
| * | Some initial response typings | Rapptz | 2021-04-16 | 1 | -11/+24 |
| | | |||||
| * | Fix rate limit handling with retry_after precision change | Rapptz | 2021-04-15 | 1 | -1/+2 |
| | | |||||
| * | Rewrite webhooks to play better with typings and rate limits | Rapptz | 2021-04-15 | 1 | -2/+3 |
| | | | | | | | | | | | | | | | | | | 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 | ||||
| * | First pass at supporting v8 API | Rapptz | 2021-04-11 | 1 | -11/+10 |
| | | |||||
| * | Use f-strings in more places that were missed. | Rapptz | 2021-04-08 | 1 | -2/+2 |
| | | |||||
| * | Revert "Remove unused group functionality" | Rapptz | 2021-04-07 | 1 | -0/+12 |
| | | | | | This reverts commit d69b2f0af563993bdae425f4bb92fb555a238933. | ||||
| * | Fix AttributeError on HTTPClient.send_file to be send_files | Steve C | 2021-04-07 | 1 | -1/+1 |
| | | |||||
| * | Use `format_map` instead of `format` for `Route.url` | Nadir Chowdhury | 2021-04-06 | 1 | -1/+1 |
| | | |||||
| * | Remove unused group functionality | Rapptz | 2021-04-06 | 1 | -12/+0 |
| | | |||||
| * | Reformat HTTPClient and add interaction endpoints | Rapptz | 2021-04-06 | 1 | -105/+484 |
| | | |||||
| * | Remove userbot functionality | Rapptz | 2021-04-04 | 1 | -87/+11 |
| | | | | | | This has a lot of legacy and cruft so there may be some stuff I've missed but this first pass is enough to get a clear separation. | ||||
| * | Modernize code to use f-strings | Rapptz | 2021-04-04 | 1 | -3/+1 |
| | | | | | | This also removes the encoding on the top, since Python 3 does it by default. It also changes some methods to use `yield from`. | ||||
| * | Implement StageChannel and related methods | Nadir Chowdhury | 2021-04-03 | 1 | -0/+8 |
| | | |||||
| * | Implement voice region changing for voice channels | Tarek | 2021-04-01 | 1 | -3/+3 |
| | | |||||
| * | Recreate aiohttp.FormData objects during request retries | Rapptz | 2021-03-24 | 1 | -7/+24 |
| | | | | | Fixes #6531 | ||||
| * | Add roles to guild.estimate_pruned_members | z03h | 2021-03-24 | 1 | -1/+4 |
| | | |||||
| * | remove trailing whitespace | Nadir Chowdhury | 2021-03-13 | 1 | -2/+2 |
| | | |||||
| * | Add remaining template endpoints | Nadir Chowdhury | 2021-02-23 | 1 | -0/+22 |
| | | |||||
| * | Change copyright year to present | Nihaal Sangha | 2021-01-15 | 1 | -1/+1 |
| | | |||||
| * | Support setting the preferred locale via Guild.edit | Rapptz | 2021-01-05 | 1 | -1/+1 |
| | | | | | Fix #6267 | ||||
| * | Implement discord.Message.reply | PikalaxALT | 2020-11-26 | 1 | -2/+7 |
| | | |||||
| * | Raise DiscordServerError for 503 Service Unavailable errors | Harmon | 2020-11-21 | 1 | -0/+2 |
| | | |||||
| * | Use delete_message_days instead of delete-message-days | Rapptz | 2020-09-23 | 1 | -1/+1 |
| | | |||||
| * | Use /invites/ instead of /invite/ | Rapptz | 2020-09-23 | 1 | -2/+2 |
| | | |||||