@@ -32,10 +32,16 @@ These changes are available on the `master` branch, but have not yet been releas
3232 ([ #2590 ] ( https://github.com/Pycord-Development/pycord/pull/2590 ) )
3333- Added missing ` with_counts ` parameter to ` fetch_guilds ` method.
3434 ([ #2615 ] ( https://github.com/Pycord-Development/pycord/pull/2615 ) )
35- - Added missing permissions: ` Permissions.use_soundboard ` ,
36- ` Permissions.use_external_sounds ` and
35+ - Added the following missing permissions: ` Permissions.use_soundboard ` ,
36+ ` Permissions.use_external_sounds ` , and
3737 ` Permissions.view_creator_monetization_analytics ` .
3838 ([ #2620 ] ( https://github.com/Pycord-Development/pycord/pull/2620 ) )
39+ - Added ` Message._raw_data ` attribute.
40+ ([ #2670 ] ( https://github.com/Pycord-Development/pycord/pull/2670 ) )
41+ - Added helper methods to determine the authorizing party of an ` Interaction ` .
42+ ([ #2659 ] ( https://github.com/Pycord-Development/pycord/pull/2659 ) )
43+ - Added ` VoiceMessage ` subclass of ` File ` to allow voice messages to be sent.
44+ ([ #2579 ] ( https://github.com/Pycord-Development/pycord/pull/2579 ) )
3945
4046### Fixed
4147
@@ -54,14 +60,22 @@ These changes are available on the `master` branch, but have not yet been releas
5460 ([ #2595 ] ( https://github.com/Pycord-Development/pycord/pull/2595 ) )
5561- Fixed ` BucketType.category ` cooldown commands not functioning correctly in private
5662 channels. ([ #2603 ] ( https://github.com/Pycord-Development/pycord/pull/2603 ) )
57- - Fixed ` SlashCommand ` 's ` ctx ` parameter couldn't be ` Union ` type.
63+ - Fixed ` ctx ` parameter of a ` SlashCommand ` not being ` Union ` type.
5864 ([ #2611 ] ( https://github.com/Pycord-Development/pycord/pull/2611 ) )
5965- Fixed ` TypeError ` when passing ` skus ` parameter in ` Client.entitlements() ` .
6066 ([ #2627 ] ( https://github.com/Pycord-Development/pycord/issues/2627 ) )
6167- Fixed ` AttributeError ` when sending polls with ` PartialWebook ` .
6268 ([ #2624 ] ( https://github.com/Pycord-Development/pycord/pull/2624 ) )
6369- Fixed ` AttributeError ` when accessing ` Member.guild_permissions ` for user installed
6470 apps. ([ #2650 ] ( https://github.com/Pycord-Development/pycord/pull/2650 ) )
71+ - Fixed type annotations of cached properties.
72+ ([ #2635 ] ( https://github.com/Pycord-Development/pycord/issues/2635 ) )
73+ - Fixed an error when responding non-ephemerally with a ` Paginator ` to an ephemerally
74+ deferred interaction.
75+ ([ #2661 ] ( https://github.com/Pycord-Development/pycord/pull/2661 ) )
76+ - Fixed attachment metadata being set incorrectly in interaction responses causing the
77+ metadata to be ignored by Discord.
78+ ([ #2679 ] ( https://github.com/Pycord-Development/pycord/pull/2679 ) )
6579
6680### Changed
6781
@@ -75,6 +89,8 @@ These changes are available on the `master` branch, but have not yet been releas
7589- Replaced audioop (deprecated module) implementation of ` PCMVolumeTransformer.read `
7690 method with a pure Python equivalent.
7791 ([ #2176 ] ( https://github.com/Pycord-Development/pycord/pull/2176 ) )
92+ - Updated ` Guild.filesize_limit ` to 10 MB instead of 25 MB following Discord's API
93+ changes. ([ #2671 ] ( https://github.com/Pycord-Development/pycord/pull/2671 ) )
7894
7995### Deprecated
8096
@@ -388,7 +404,7 @@ These changes are available on the `master` branch, but have not yet been releas
388404 ([ #2075 ] ( https://github.com/Pycord-Development/pycord/pull/2075 ) )
389405- Fixed ` before_invoke ` not being run for ` SlashCommandGroup ` .
390406 ([ #2091 ] ( https://github.com/Pycord-Development/pycord/pull/2091 ) )
391- - Fixed ` AttributeError ` when accessing a ` Select ` object's values when it hasn't been
407+ - Fixed ` AttributeError ` when accessing a ` Select ` object's values when it has not been
392408 interacted with. ([ #2104 ] ( https://github.com/Pycord-Development/pycord/pull/2104 ) )
393409- Fixed ` before_invoke ` being run twice for slash subcommands.
394410 ([ #2139 ] ( https://github.com/Pycord-Development/pycord/pull/2139 ) )
@@ -419,7 +435,7 @@ These changes are available on the `master` branch, but have not yet been releas
419435 ([ #2196 ] ( https://github.com/Pycord-Development/pycord/pull/2196 ) )
420436- Fixed ` AttributeError ` when running permission checks without the ` bot ` scope.
421437 ([ #2113 ] ( https://github.com/Pycord-Development/pycord/issues/2113 ) )
422- - Fixed ` Option ` not working on bridge commands because ` ext.commands.Command ` doesn't
438+ - Fixed ` Option ` not working on bridge commands because ` ext.commands.Command ` does not
423439 recognize them. ([ #2256 ] ( https://github.com/Pycord-Development/pycord/pull/2256 ) )
424440- Fixed offset-aware tasks causing ` TypeError ` when being prepared.
425441 ([ #2271 ] ( https://github.com/Pycord-Development/pycord/pull/2271 ) )
@@ -519,7 +535,7 @@ These changes are available on the `master` branch, but have not yet been releas
519535### Fixed
520536
521537- Fixed bugs in ` Page.update_files ` where file objects stored in memory were causing an
522- ` AttributeError ` , and ` io.BytesIO ` files didn't send properly more than once.
538+ ` AttributeError ` , and ` io.BytesIO ` files did not send properly more than once.
523539 ([ #1869 ] ( https://github.com/Pycord-Development/pycord/pull/1869 ) &
524540 [ #1881 ] ( https://github.com/Pycord-Development/pycord/pull/1881 ) )
525541- Fixed bridge groups missing the ` parent ` attribute.
@@ -874,9 +890,9 @@ These changes are available on the `master` branch, but have not yet been releas
874890 ([ #1453 ] ( https://github.com/Pycord-Development/pycord/pull/1453 ) )
875891- Update ` thread.members ` on ` thread.fetch_members ` .
876892 ([ #1464 ] ( https://github.com/Pycord-Development/pycord/pull/1464 ) )
877- - Fix the error when Discord doesn't send the ` app_permissions ` data in ` Interaction ` .
893+ - Fix the error when Discord does not send the ` app_permissions ` data in ` Interaction ` .
878894 ([ #1467 ] ( https://github.com/Pycord-Development/pycord/pull/1467 ) )
879- - Fix AttributeError when voice client ` play() ` function isn't completed yet.
895+ - Fix AttributeError when voice client ` play() ` function is not completed yet.
880896 ([ #1360 ] ( https://github.com/Pycord-Development/pycord/pull/1360 ) )
881897
882898## [ 2.0.0-rc.1] - 2022-05-17
0 commit comments