| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Remove `private_channel_(delete/create)` events | Nadir Chowdhury | 2021-04-11 | 1 | -22/+8 |
| | | |||||
| * | Remove Member related handling in PRESENCE_UPDATE | Rapptz | 2021-04-11 | 1 | -10/+6 |
| | | |||||
| * | First pass at supporting v8 API | Rapptz | 2021-04-11 | 1 | -6/+0 |
| | | |||||
| * | Fix some regressions from create_task change | Rapptz | 2021-04-06 | 1 | -1/+1 |
| | | |||||
| * | Add on_interaction event and Interaction class. | Rapptz | 2021-04-06 | 1 | -0/+5 |
| | | | | | | This is the first pass at the functionality. It's currently a bit incomplete. | ||||
| * | Add support for setting application_id | Rapptz | 2021-04-06 | 1 | -0/+17 |
| | | |||||
| * | Use `asyncio.create_task` over `asyncio.ensure_future` | Nadir Chowdhury | 2021-04-05 | 1 | -6/+6 |
| | | |||||
| * | Convert datetimes to aware datetimes with UTC. | Rapptz | 2021-04-04 | 1 | -0/+1 |
| | | | | | | Naive datetimes will now be interpreted as local time throughout the library. | ||||
| * | Remove userbot functionality | Rapptz | 2021-04-04 | 1 | -98/+28 |
| | | | | | | 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 | -4/+2 |
| | | | | | | This also removes the encoding on the top, since Python 3 does it by default. It also changes some methods to use `yield from`. | ||||
| * | Code optimisations and refactoring via Sourcery | Nadir Chowdhury | 2021-02-24 | 1 | -5/+4 |
| | | |||||
| * | Use member provided data in typing_start event if not in cache | Rapptz | 2021-01-24 | 1 | -0/+5 |
| | | | | | | | Apparently Discord had this all along. ref: #5965, #5983 | ||||
| * | Change copyright year to present | Nihaal Sangha | 2021-01-15 | 1 | -1/+1 |
| | | |||||
| * | Dispatch user updates if the global cache gets stale in update events | Rapptz | 2021-01-07 | 1 | -0/+6 |
| | | |||||
| * | Implement presences for `Guild.query_members` | Nadir Chowdhury | 2020-12-31 | 1 | -6/+17 |
| | | |||||
| * | remove extraneous assignment | Sebastian Law | 2020-12-22 | 1 | -2/+0 |
| | | |||||
| * | [chore] Remove redundant imports | Nadir Chowdhury | 2020-11-28 | 1 | -2/+0 |
| | | | | This also removes the historical patch for NullHandler implemented in bbf1c54, as it has been available since Python 3.1. | ||||
| * | Ensure member key is not overwritten by author key in MESSAGE_UPDATE | Rapptz | 2020-11-23 | 1 | -0/+3 |
| | | | | | | | | This also coerces the older message to take the member data from the newer message so the types are not incompatible. Fix #5999 | ||||
| * | Don't store a user cache if there's no member intent or cache is off | Rapptz | 2020-11-23 | 1 | -0/+6 |
| | | | | | | | | Without a cache or member intent the user cache can get out of date with no events to update the underlying user in the member object. Ref: #6034 | ||||
| * | Fix error with templates not having access to member cache flags. | Rapptz | 2020-11-21 | 1 | -6/+6 |
| | | | | | | | This also changes the attribute from having an underscore Fix #5986 | ||||
| * | Fix error when querying members from the gateway. | Rapptz | 2020-10-19 | 1 | -2/+1 |
| | | | | | I accidentally made this return True instead of the actual member list | ||||
| * | Allow concurrent calls to guild.chunk() | Rapptz | 2020-10-19 | 1 | -23/+35 |
| | | | | | | | This allows people who write guild.chunk() calls in highly concurrent places such as on_message or checks to not spam the gateway with an actual request and instead waits for the pre-existing request to finish | ||||
| * | Load member from guild_member_update dispatch | Florian Spieß | 2020-10-17 | 1 | -0/+3 |
| | | |||||
| * | Ensure our own member is never evicted from the cache in any policy. | Rapptz | 2020-10-17 | 1 | -4/+5 |
| | | |||||
| * | Fix attribute errors when timing out during chunking start-up | Rapptz | 2020-10-17 | 1 | -2/+2 |
| | | |||||
| * | Add warning if guilds intent is disabled. | Rapptz | 2020-09-28 | 1 | -0/+3 |
| | | |||||
| * | Guard GUILD_MEMBER_ADD/GUILD_MEMBER_REMOVE from errors | Rapptz | 2020-09-28 | 1 | -2/+11 |
| | | | | | | If the guilds intent is disabled all guilds are unavailable. This means we don't receive a member_count attribute and cannot update it. | ||||
| * | Add Client.intents to query the current intents | Rapptz | 2020-09-26 | 1 | -0/+6 |
| | | | | | Closes #5854 | ||||
| * | Make Intent class creation more intuitive | Rapptz | 2020-09-24 | 1 | -1/+1 |
| | | |||||
| * | Fix typo in ValueError message | apple502j | 2020-09-24 | 1 | -1/+1 |
| | | |||||
| * | Add chunk_guilds_at_startup and deprecate fetch_offline_members | Rapptz | 2020-09-24 | 1 | -5/+16 |
| | | |||||
| * | Default MemberCacheFlags based on intents | Rapptz | 2020-09-23 | 1 | -2/+2 |
| | | |||||
| * | Pass default intents if not explicitly given | Rapptz | 2020-09-23 | 1 | -0/+2 |
| | | |||||
| * | Allow finer grained control over the member cache. | Rapptz | 2020-09-23 | 1 | -6/+27 |
| | | |||||
| * | Add Guild.chunk and deprecated Client.request_offline_members | Rapptz | 2020-09-23 | 1 | -25/+32 |
| | | |||||
| * | Fix timeouts due to hitting the gateway rate limit | Rapptz | 2020-09-23 | 1 | -2/+2 |
| | | |||||
| * | Maximize the amount of concurrency while chunking. | Rapptz | 2020-09-23 | 1 | -1/+13 |
| | | | | | | | In order to reduce our amount of backpressure we need to limit the amount of concurrent chunk requests we can have so the gateway buffer has some time to breathe. | ||||
| * | Speed up chunking for guilds with presence intent enabled | Rapptz | 2020-09-23 | 1 | -3/+8 |
| | | |||||
| * | Maximize concurrency when chunking on AutoSharded clients | Rapptz | 2020-09-23 | 1 | -21/+45 |
| | | |||||
| * | All guilds require chunking if opting into it | Rapptz | 2020-09-23 | 1 | -6/+3 |
| | | |||||
| * | Handle user updates within GUILD_MEMBER_UPDATE | Rapptz | 2020-09-23 | 1 | -1/+5 |
| | | |||||
| * | Rewrite chunking to work with intents. | Rapptz | 2020-09-23 | 1 | -162/+77 |
| | | | | | | | | | This slows down chunking significantly for bots in a large number of guilds since it goes down from 75 guilds/request to 1 guild/request. However the logic was rewritten to fire the chunking request immediately after receiving the GUILD_CREATE rather than waiting for all the guilds in the ready stream before doing it. | ||||
| * | Change unknown cache log warnings from WARNING -> DEBUG | Rapptz | 2020-09-23 | 1 | -19/+19 |
| | | |||||
| * | Add support for guild intents | Rapptz | 2020-09-23 | 1 | -0/+8 |
| | | |||||
| * | Implement VoiceProtocol lower level hooks. | Rapptz | 2020-09-23 | 1 | -4/+10 |
| | | | | | | This allows changing the connect flow and taking control of it without relying on internal events or tricks. | ||||
| * | Update message references in AutoShardedConnectionState | Rapptz | 2020-07-25 | 1 | -0/+23 |
| | | | | | Fixes #5133 | ||||
| * | Add guild_ready_timeout to control the timeout of GUILD_CREATE stream | Rapptz | 2020-07-25 | 1 | -4/+8 |
| | | | | | | | | This also fixes a timing issue where READY would take far too long to load for big bot authors. Closes #4112 | ||||
| * | Add shard related connection and resume events. | Rapptz | 2020-07-25 | 1 | -0/+5 |
| | | | | | | | | These include: * on_shard_resumed * on_shard_connect * on_shard_disconnect | ||||
| * | Add before_identify_hook to have finer control over IDENTIFY syncing | Rapptz | 2020-07-25 | 1 | -1/+10 |
| | | |||||
| * | Rewrite of AutoShardedClient to prevent overlapping identify | Rapptz | 2020-07-25 | 1 | -0/+2 |
| | | | | | This is experimental and I'm unsure if it actually works | ||||