Rapptz
23ae084b8c
Allow finer grained control over the member cache.
5 years ago
Rapptz
cb8cb557f5
Add Guild.chunk and deprecated Client.request_offline_members
5 years ago
Rapptz
0ea0f483bc
Fix timeouts due to hitting the gateway rate limit
5 years ago
Rapptz
7db0008190
Maximize the amount of concurrency while chunking.
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.
5 years ago
Rapptz
0ec72660cf
Speed up chunking for guilds with presence intent enabled
5 years ago
Rapptz
92e1816114
Maximize concurrency when chunking on AutoSharded clients
5 years ago
Rapptz
3df269daa3
All guilds require chunking if opting into it
5 years ago
Rapptz
c261f7c4a3
Handle user updates within GUILD_MEMBER_UPDATE
5 years ago
Rapptz
930761e058
Rewrite chunking to work with intents.
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.
5 years ago
Rapptz
11d8a6fa3c
Change unknown cache log warnings from WARNING -> DEBUG
5 years ago
Rapptz
a6381dcf77
Add support for guild intents
5 years ago
Rapptz
0b93fa3a82
Implement VoiceProtocol lower level hooks.
This allows changing the connect flow and taking control of it without
relying on internal events or tricks.
5 years ago
Rapptz
ec3c3eb4c6
Update message references in AutoShardedConnectionState
Fixes #5133
5 years ago
Rapptz
d37b91dfc6
Add guild_ready_timeout to control the timeout of GUILD_CREATE stream
This also fixes a timing issue where READY would take far too long to
load for big bot authors.
Closes #4112
5 years ago
Rapptz
8070d39a23
Add shard related connection and resume events.
These include:
* on_shard_resumed
* on_shard_connect
* on_shard_disconnect
5 years ago
Rapptz
394b514cc9
Add before_identify_hook to have finer control over IDENTIFY syncing
5 years ago
Rapptz
09ecb16680
Rewrite of AutoShardedClient to prevent overlapping identify
This is experimental and I'm unsure if it actually works
5 years ago
Anurag
421d8bf8ca
Fix TypeError on missing shard_id kwarg
5 years ago
Tarek
a972c95f12
Add user_ids fields for query_members
5 years ago
apple502j
cb43e19bea
Fix TypeError in chunker
5 years ago
iomintz
755ab28311
state: use bytes.hex() instead of binascii.hexlify().decode()
5 years ago
Rapptz
13a3f760e6
Fix timeout issues with fetching members via query_members
This uses the nonce field to properly disambiguate queries. There's
also some redesigning going on behind the scenes and minor clean-up.
Originally I planned on working on this more to account for the more
widespread chunking changes planned for gateway v7 but I realized that
this would indiscriminately slow down everyone else who isn't planning
on working with intents for now.
I will work on the larger chunking changes in the future, should time
allow for it.
5 years ago
Rapptz
0d5e6e213c
Decrement Guild.member_count even if member is not cached
Fix #4021
5 years ago
apple502j
14f80fce45
Fix PartialEmoji.url.read for reactions
5 years ago
Rapptz
8874aa3dd2
Move log levels around to make INFO a little less noisy
5 years ago
NCPlayz
c8f32f3151
animated key is never given to reaction_remove(_emoji)
5 years ago
Rapptz
d853a57e86
Rename allowed mention parameters to allowed_mentions
5 years ago
Rapptz
041785937e
Add support for configuring allowed mentions per message or bot wide.
5 years ago
Rapptz
5c7df3d943
Bump waiting time of GUILD_CREATE stream by number of shards waited.
2 seconds might be too short and cause it to finish waiting while other
shards are still IDENTIFYing.
5 years ago
Rapptz
6071607176
Bump copyright year to 2020
Closes #2510
5 years ago
Rapptz
87f9dcff9c
Add support for clearing a specific reaction.
Closes #2440
5 years ago
Rapptz
7b2c01c48a
Add support for on_invite_create and on_invite_delete
5 years ago
Rapptz
42a084028c
Expose _ActivityTag as BaseActivity to easily refer to.
5 years ago
Rapptz
cd9135b082
Rewrite on_ready delay to actually make sense and prevent heavy sleep
5 years ago
NCPlayz
f95ccf53e0
Fix issue with `shard_ready` not dispatching when not fetching offline
5 years ago
NCPlayz
bb71f14ce3
Add `RawReactionActionEvent.member`
5 years ago
Rapptz
a6f61dcbde
Fix all deprecation warnings for 3.8
5 years ago
Rapptz
45f342ff79
Fix regression with references being overwritten from the cache.
A proper fix for this would be to just request presence information
as well since the chunk request would probably be more up to date than
the current cache. However this delta requires a little bit more work
and will be done later.
5 years ago
Rapptz
15f0b000e1
Move PartialEmoji over to a new namespace to avoid circular imports
5 years ago
Rapptz
d8e47b08a2
Manually trigger GC in cases of large deallocations.
5 years ago
Rapptz
89bfd9cc20
animation field in reaction objects are not consistently available
5 years ago
Rapptz
5d7cf56d7f
Actually add things to the message cache.
6 years ago
Lorenzo
828e8189d3
Fix _get_message returning the message cache.
6 years ago
Rapptz
cf79816c5d
Allow disabling the message cache with max_messages=None
This also changes the default to 1000 instead of 5000 since it can
take some time for small bots to cycle through the default and they
make up the majority of it.
6 years ago
Rapptz
f513d831d1
Add RawReactionActionEvent.event_type attribute.
This helps differentiate between reaction removal or addition.
6 years ago
Rapptz
93f719aeb7
Proper boolean check for caching members.
6 years ago
Rapptz
5b2f630848
Add Guild.query_members to fetch members from the gateway.
6 years ago
Rapptz
bc352f0e50
Allow complete disabling of the member cache.
6 years ago
Rapptz
7b8d50a988
Add support for guild subscriptions.
6 years ago
Rapptz
2c16e43e8a
Fix regression with unresolved channels due to reordering.
Channels are meant to fallback to Object if the message is out of
order. Somewhere along the commit line this got removed despite the
issue still existing.
6 years ago