@@ -16,6 +16,10 @@ These changes are available on the `master` branch, but have not yet been releas
1616 ([ #3044 ] ( https://github.com/Pycord-Development/pycord/pull/3044 ) )
1717- Added ` Member.colours ` and ` Member.colors ` properties.
1818 ([ #3063 ] ( https://github.com/Pycord-Development/pycord/pull/3063 ) )
19+ - Added ` RoleType ` enum accessible via ` Role.type ` and ` RoleTags.type ` .
20+ ([ #2708 ] ( https://github.com/Pycord-Development/pycord/pull/2708 ) )
21+ - Added ` Colour.light_theme() ` , ` Colour.ash_theme() ` , and ` Colour.onyx_theme() ` .
22+ ([ #3043 ] ( https://github.com/Pycord-Development/pycord/pull/3043 ) )
1923- Added ` RadioGroup ` , ` CheckboxGroup ` , and ` Checkbox ` for modals.
2024 ([ #3073 ] ( https://github.com/Pycord-Development/pycord/pull/3073 ) )
2125- Added the ability to respond to interactions with suppressed push and desktop
@@ -26,11 +30,18 @@ These changes are available on the `master` branch, but have not yet been releas
2630 ([ #3107 ] ( https://github.com/Pycord-Development/pycord/pull/3107 ) )
2731- Added ` Member.display_avatar_decoration ` and ` Member.guild_avatar_decoration ` .
2832 ([ #3109 ] ( https://github.com/Pycord-Development/pycord/pull/3109 ) )
33+ - Added a new event called ` on_raw_member_update ` that is dispatched when a member is
34+ updated, regardless of cache status.
35+ ([ #3012 ] ( https://github.com/Pycord-Development/pycord/pull/3012 ) )
36+ - Added support for Discord DAVE (Audio & Video E2EE) for voice-sending related
37+ features. ([ #3143 ] ( https://github.com/Pycord-Development/pycord/pull/3143 ) )
2938
3039### Changed
3140
3241- Changed ` Member.colour ` and ` Member.color ` to be aliases for ` Member.colours.primary ` .
3342 ([ #3063 ] ( https://github.com/Pycord-Development/pycord/pull/3063 ) )
43+ - Updated ` Colour.dark_theme() ` with Discord's new theme colours.
44+ ([ #3043 ] ( https://github.com/Pycord-Development/pycord/pull/3043 ) )
3445- Changed ` User.nameplate ` to be an alias for ` User.collectibles.nameplate ` .
3546 ([ #3107 ] ( https://github.com/Pycord-Development/pycord/pull/3107 ) )
3647- Changed ` FileComponent.name ` and ` FileComponent.size ` to be optional.
@@ -49,9 +60,18 @@ These changes are available on the `master` branch, but have not yet been releas
4960
5061### Deprecated
5162
63+ - Deprecated ` is_bot_managed ` , ` is_premium_subscriber ` , ` is_integration ` ,
64+ ` is_available_for_purchase ` , and ` is_guild_connections_role ` in favor of ` type ` for
65+ both ` Role ` and ` RoleTags ` .
66+ ([ #2708 ] ( https://github.com/Pycord-Development/pycord/pull/2708 ) )
67+ - Deprecated ` Colour.embed_background() ` .
68+ ([ #3043 ] ( https://github.com/Pycord-Development/pycord/pull/3043 ) )
5269- Deprecated the ` suppress ` parameter in all applicable message-related methods in favor
5370 of ` suppress_embeds ` .
5471 ([ #3062 ] ( https://github.com/Pycord-Development/pycord/pull/3062 ) )
72+ - Deprecated ` discord.VoiceClient ` and ` discord.VoiceProtocol ` in favor of
73+ ` discord.voice.VoiceClient ` and ` discord.voice.VoiceProtocol ` .
74+ ([ #3143 ] ( https://github.com/Pycord-Development/pycord/pull/3143 ) )
5575
5676### Removed
5777
@@ -1075,24 +1095,23 @@ These changes are available on the `master` branch, but have not yet been releas
10751095- Fixed ` AttributeError ` when serializing commands with ` Annotated ` type hints.
10761096 ([ #2243 ] ( https://github.com/Pycord-Development/pycord/pull/2243 ) )
10771097- Fixed ` Intents.all() ` returning the wrong value.
1078- ([ #2257 ] ( https://github.com/Pycord-Development/pycord/issues /2257 ) )
1098+ ([ #2257 ] ( https://github.com/Pycord-Development/pycord/pull /2257 ) )
10791099- Fixed ` AuditLogIterator ` not respecting the ` after ` parameter.
1080- ([ #2295 ] ( https://github.com/Pycord-Development/pycord/issues /2295 ) )
1100+ ([ #2295 ] ( https://github.com/Pycord-Development/pycord/pull /2295 ) )
10811101- Fixed ` AttributeError ` when failing to establish initial websocket connection.
10821102 ([ #2301 ] ( https://github.com/Pycord-Development/pycord/pull/2301 ) )
10831103- Fixed ` AttributeError ` caused by ` command.cog ` being ` MISSING ` .
1084- ([ #2303 ] ( https://github.com/Pycord-Development/pycord/issues /2303 ) )
1104+ ([ #2303 ] ( https://github.com/Pycord-Development/pycord/pull /2303 ) )
10851105- Fixed ` self.use_default_buttons ` being assumed truthy by ` Paginator.update ` .
10861106 ([ #2319 ] ( https://github.com/Pycord-Development/pycord/pull/2319 ) )
10871107- Fixed ` AttributeError ` when comparing application commands with non-command objects.
1088- ([ #2299 ] ( https://github.com/Pycord-Development/pycord/issues /2299 ) )
1108+ ([ #2299 ] ( https://github.com/Pycord-Development/pycord/pull /2299 ) )
10891109- Fixed ` AttributeError ` when copying groups on startup.
1090- ([ #2331 ] ( https://github.com/Pycord-Development/pycord/issues /2331 ) )
1110+ ([ #2331 ] ( https://github.com/Pycord-Development/pycord/pull /2331 ) )
10911111- Fixed application command options causing errors if declared through the option
1092- decorator or kwarg.
1093- ([ #2332 ] ( https://github.com/Pycord-Development/pycord/issues/2332 ) )
1112+ decorator or kwarg. ([ #2332 ] ( https://github.com/Pycord-Development/pycord/pull/2332 ) )
10941113- Fixed options declared using the parameter default value syntax always being optional.
1095- ([ #2333 ] ( https://github.com/Pycord-Development/pycord/issues /2333 ) )
1114+ ([ #2333 ] ( https://github.com/Pycord-Development/pycord/pull /2333 ) )
10961115- Fixed ` BridgeContext ` type hints raising an exception for unsupported option type.
10971116 ([ #2337 ] ( https://github.com/Pycord-Development/pycord/pull/2337 ) )
10981117- Fixed ` TypeError ` due to ` (Sync)WebhookMessage._thread_id ` being set to ` None ` .
0 commit comments