Soheab
fa158a5eba
Add support for getting and editing integration_types_config application field
2 months ago
DA344
eb15aa8ca4
Add exclude_deleted parameter to Client.entitlements
3 months ago
Ginger
fcd9239b33
Add Client.fetch_guild_preview method
3 months ago
Michael H
9806aeb831
Add public method to get session start limits
4 months ago
Rapptz
e1b6310ef3
Remove / from being safe from URI encoding when constructing paths
4 months ago
Rapptz
a0b0a97e52
Support enforce_nonce and add random nonce for message creation
5 months ago
Sherlock
b11f19a397
Add proxy support for get_from_cdn
6 months ago
owocado
04b8f385b1
Remove leftover print statement
6 months ago
MCausc78
58b6929aa5
Add SKU subscriptions support
6 months ago
Lilly Rose Berner
91f300a28a
Add zstd gateway compression to speed profile
6 months ago
Andrin
a70217a719
Support for Soundboard and VC effects
6 months ago
Soheab
463b4bd570
Add support for application emojis
Co-authored-by: DA344 <[email protected] >
Co-authored-by: Danny <[email protected] >
7 months ago
Andrin
62e52803a7
Add support Member.fetch_voice
7 months ago
Deep Jain
643a7f4e1d
Add DummyCookieJar to client owned ClientSession
7 months ago
Andrin
34bf026a02
Add support for get sticker pack
7 months ago
Oliver Ni
f9dbe60fc4
Revert "Set socket family of connector to AF_INET"
This change was made since Discord doesn't support IPv6, and there were
concerns about clients with DNS64 enabled without NAT64.
However, this breaks hosts who don't have v4 connectivity and are
_actually_ running NAT64.
Having DNS64 without NAT64 is really an issue on the client's end. It
would break far more than just discord.py, so I don't think we should be
concerned about those cases.
7 months ago
Andrin
9ab938a9ea
Add Guild.fetch_role
7 months ago
Andrin
f77ba711ba
Add reaction type to raw events and users iterator
11 months ago
DA344
e43bd8692c
Add support for Polls
Co-authored-by: owocado <[email protected] >
Co-authored-by: Josh <[email protected] >
Co-authored-by: Trevor Flahardy <[email protected] >
11 months ago
Lucas Hardt
2892401992
Add support for one-time purchases
11 months ago
Rapptz
ded9c5d87b
Add support for bulk banning members
1 year ago
Soheab_
851c857a36
Add support for guild incidents
Co-authored-by: Danny <[email protected] >
1 year ago
Andrin
9ce733321b
Add support for setting voice channel status
1 year ago
Andrin
50190e088e
Add applied_tags param to Webhook.send
1 year ago
Andrin
56c67d3967
Implement editing application info
1 year ago
Mikey
a9936c2da5
Fix typo in HTTPClient create_entitlement
1 year ago
Andrin S
ef0944047e
Fix SKU return type and documentation
1 year ago
Lucas Hardt
99618c823a
Add support for premium app integrations
Co-authored-by: Danny <[email protected] >
Co-authored-by: Lucas Hardt <[email protected] >
Co-authored-by: Andrin S. <[email protected] >
1 year ago
Soheab_
ebe2661f7d
Add missing scheduled_event field to StageChannel.create_instance
2 years ago
Josh
630b2a1e55
Update pyright version
2 years ago
Michael H
e6d2d82803
Set socket family of connector to AF_INET
- discord doesn't support ipv6
- prevents issues with hosts with DNS64 enabled
- resolves #9442
2 years ago
Andrin S
66689e16e8
Add with_counts param to fetch_guilds
2 years ago
Andrin S
bee2db805d
Add and change Guild attributes and Guild.edit params
2 years ago
Puncher
2ca1a3a9a4
Add mfa_level parameter to Guild.edit
2 years ago
Puncher
7db197ef25
Add default_reaction_emoji and default_forum_layout to create_forum
2 years ago
Puncher
dc9fb1fd84
Add missing param send_start_notification to create_instance
2 years ago
Puncher
a1295868a6
Add support for default_sort_order in ForumChannel
2 years ago
Josh
6af6f82411
Fix audit log pagination logic
2 years ago
Rapptz
cbc46e0973
Add support for ForumChannel.default_layout
2 years ago
Rapptz
a098867a4d
Fix certain parameters not being respected in Guild.create_forum
2 years ago
Ionite
6981eb69c4
Normalize type formatting in TypeError
Normalize most mixed usages of `__class__`, `__class__!r`,
`__class__.__name__!r` to the standard form of
`__class__.__name__`
3 years ago
Rapptz
ab265dcb7c
Add support for newest ForumChannel changes
This adds the following:
- Forum tag support
- Default reaction support
- Default slowmode for newly created threads
3 years ago
Josh
e57617e157
Add support for delete_message_seconds ban argument
3 years ago
Rapptz
8dd186cf1e
Fix cache eviction for ratelimit objects
3 years ago
Rapptz
f1ec0919f6
Remove stack info from ratelimit logs
3 years ago
Rapptz
87c9c95bb8
Use persistent dictionary for ratelimit information
This should prevent ratelimit information from being cleared too early.
In order to prevent the dictionary from growing to large expired keys
are deleted once they've been deleted.
At present I'm unsure if this change would cause too much CPU pressure.
3 years ago
Rapptz
a01dad283f
Add extraneous debug logging to sub ratelimits being detected
3 years ago
Rapptz
76402b00f9
Allow configuring the maximum ratelimit timeout before erroring
This is useful for cases where a rate limit is known to be
extraordinarily high, but you still want to handle the error.
This is common with routes such as emoji creation.
3 years ago
Rapptz
85ea418776
Special case message deletion sub rate limits
3 years ago
Rapptz
c17eb31328
Rewrite rate limit handling to use X-Ratelimit-Bucket and a semaphore
This should increase throughput of the number of requests that can be
made at once, while simultaneously following the new standard practice
of using the rate limit bucket header.
This is an accumulation of a lot of months of work between a few people
and it has been tested extensively. From the testing it seems to work
fine, but I'm not sure if it's the best way to do it.
This changeset does not currently take into consideration sub
rate limits yet, but the foundation is there via Route.metadata. In the
future, this metadata will be filled in with the known sub rate limit
implementation to allow them to have separate keys in the rate limit
mapping.
Co-authored-by: Josh <[email protected] >
3 years ago