@@ -30,12 +30,23 @@ These changes are available on the `master` branch, but have not yet been releas
3030 ([ #2587 ] ( https://github.com/Pycord-Development/pycord/pull/2587/ ) )
3131- Added optional ` filter ` parameter to ` utils.basic_autocomplete() ` .
3232 ([ #2590 ] ( https://github.com/Pycord-Development/pycord/pull/2590 ) )
33+ - Added role tags: ` subscription_listing_id ` , ` guild_connections ` , and
34+ ` available_for_purchase ` .
35+ ([ #2606 ] ( https://github.com/Pycord-Development/pycord/pull/2606 ) )
3336- Added missing ` with_counts ` parameter to ` fetch_guilds ` method.
3437 ([ #2615 ] ( https://github.com/Pycord-Development/pycord/pull/2615 ) )
35- - Added missing permissions: ` Permissions.use_soundboard ` ,
36- ` Permissions.use_external_sounds ` and
38+ - Added the following missing permissions: ` Permissions.use_soundboard ` ,
39+ ` Permissions.use_external_sounds ` , and
3740 ` Permissions.view_creator_monetization_analytics ` .
3841 ([ #2620 ] ( https://github.com/Pycord-Development/pycord/pull/2620 ) )
42+ - Added ` MediaChannel ` channel type.
43+ ([ #2641 ] ( https://github.com/Pycord-Development/pycord/pull/2641 ) )
44+ - Added ` Message._raw_data ` attribute.
45+ ([ #2670 ] ( https://github.com/Pycord-Development/pycord/pull/2670 ) )
46+ - Added helper methods to determine the authorizing party of an ` Interaction ` .
47+ ([ #2659 ] ( https://github.com/Pycord-Development/pycord/pull/2659 ) )
48+ - Added ` VoiceMessage ` subclass of ` File ` to allow voice messages to be sent.
49+ ([ #2579 ] ( https://github.com/Pycord-Development/pycord/pull/2579 ) )
3950
4051### Fixed
4152
@@ -54,14 +65,30 @@ These changes are available on the `master` branch, but have not yet been releas
5465 ([ #2595 ] ( https://github.com/Pycord-Development/pycord/pull/2595 ) )
5566- Fixed ` BucketType.category ` cooldown commands not functioning correctly in private
5667 channels. ([ #2603 ] ( https://github.com/Pycord-Development/pycord/pull/2603 ) )
57- - Fixed ` SlashCommand ` 's ` ctx ` parameter couldn't be ` Union ` type.
68+ - Fixed ` ctx ` parameter of a ` SlashCommand ` not being ` Union ` type.
5869 ([ #2611 ] ( https://github.com/Pycord-Development/pycord/pull/2611 ) )
5970- Fixed ` TypeError ` when passing ` skus ` parameter in ` Client.entitlements() ` .
6071 ([ #2627 ] ( https://github.com/Pycord-Development/pycord/issues/2627 ) )
6172- Fixed ` AttributeError ` when sending polls with ` PartialWebook ` .
6273 ([ #2624 ] ( https://github.com/Pycord-Development/pycord/pull/2624 ) )
74+ - Fixed editing ` ForumChannel ` flags not working.
75+ ([ #2641 ] ( https://github.com/Pycord-Development/pycord/pull/2641 ) )
6376- Fixed ` AttributeError ` when accessing ` Member.guild_permissions ` for user installed
6477 apps. ([ #2650 ] ( https://github.com/Pycord-Development/pycord/pull/2650 ) )
78+ - Fixed type annotations of cached properties.
79+ ([ #2635 ] ( https://github.com/Pycord-Development/pycord/issues/2635 ) )
80+ - Fixed malformed properties in ` Interaction.channel ` .
81+ ([ #2658 ] ( https://github.com/Pycord-Development/pycord/pull/2658 ) )
82+ - Fixed an error when responding non-ephemerally with a ` Paginator ` to an ephemerally
83+ deferred interaction.
84+ ([ #2661 ] ( https://github.com/Pycord-Development/pycord/pull/2661 ) )
85+ - Fixed attachment metadata being set incorrectly in interaction responses causing the
86+ metadata to be ignored by Discord.
87+ ([ #2679 ] ( https://github.com/Pycord-Development/pycord/pull/2679 ) )
88+ - Fixed unexpected backoff behavior in the handling of task failures
89+ ([ #2700 ] ( https://github.com/Pycord-Development/pycord/pull/2700 ) ).
90+ - Fixed ` BridgeCommand ` duplicate in default help command.
91+ ([ #2656 ] ( https://github.com/Pycord-Development/pycord/pull/2656 ) )
6592
6693### Changed
6794
@@ -75,6 +102,8 @@ These changes are available on the `master` branch, but have not yet been releas
75102- Replaced audioop (deprecated module) implementation of ` PCMVolumeTransformer.read `
76103 method with a pure Python equivalent.
77104 ([ #2176 ] ( https://github.com/Pycord-Development/pycord/pull/2176 ) )
105+ - Updated ` Guild.filesize_limit ` to 10 MB instead of 25 MB following Discord's API
106+ changes. ([ #2671 ] ( https://github.com/Pycord-Development/pycord/pull/2671 ) )
78107
79108### Deprecated
80109
@@ -388,7 +417,7 @@ These changes are available on the `master` branch, but have not yet been releas
388417 ([ #2075 ] ( https://github.com/Pycord-Development/pycord/pull/2075 ) )
389418- Fixed ` before_invoke ` not being run for ` SlashCommandGroup ` .
390419 ([ #2091 ] ( https://github.com/Pycord-Development/pycord/pull/2091 ) )
391- - Fixed ` AttributeError ` when accessing a ` Select ` object's values when it hasn't been
420+ - Fixed ` AttributeError ` when accessing a ` Select ` object's values when it has not been
392421 interacted with. ([ #2104 ] ( https://github.com/Pycord-Development/pycord/pull/2104 ) )
393422- Fixed ` before_invoke ` being run twice for slash subcommands.
394423 ([ #2139 ] ( https://github.com/Pycord-Development/pycord/pull/2139 ) )
@@ -419,7 +448,7 @@ These changes are available on the `master` branch, but have not yet been releas
419448 ([ #2196 ] ( https://github.com/Pycord-Development/pycord/pull/2196 ) )
420449- Fixed ` AttributeError ` when running permission checks without the ` bot ` scope.
421450 ([ #2113 ] ( https://github.com/Pycord-Development/pycord/issues/2113 ) )
422- - Fixed ` Option ` not working on bridge commands because ` ext.commands.Command ` doesn't
451+ - Fixed ` Option ` not working on bridge commands because ` ext.commands.Command ` does not
423452 recognize them. ([ #2256 ] ( https://github.com/Pycord-Development/pycord/pull/2256 ) )
424453- Fixed offset-aware tasks causing ` TypeError ` when being prepared.
425454 ([ #2271 ] ( https://github.com/Pycord-Development/pycord/pull/2271 ) )
@@ -519,7 +548,7 @@ These changes are available on the `master` branch, but have not yet been releas
519548### Fixed
520549
521550- 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.
551+ ` AttributeError ` , and ` io.BytesIO ` files did not send properly more than once.
523552 ([ #1869 ] ( https://github.com/Pycord-Development/pycord/pull/1869 ) &
524553 [ #1881 ] ( https://github.com/Pycord-Development/pycord/pull/1881 ) )
525554- Fixed bridge groups missing the ` parent ` attribute.
@@ -874,9 +903,9 @@ These changes are available on the `master` branch, but have not yet been releas
874903 ([ #1453 ] ( https://github.com/Pycord-Development/pycord/pull/1453 ) )
875904- Update ` thread.members ` on ` thread.fetch_members ` .
876905 ([ #1464 ] ( https://github.com/Pycord-Development/pycord/pull/1464 ) )
877- - Fix the error when Discord doesn't send the ` app_permissions ` data in ` Interaction ` .
906+ - Fix the error when Discord does not send the ` app_permissions ` data in ` Interaction ` .
878907 ([ #1467 ] ( https://github.com/Pycord-Development/pycord/pull/1467 ) )
879- - Fix AttributeError when voice client ` play() ` function isn't completed yet.
908+ - Fix AttributeError when voice client ` play() ` function is not completed yet.
880909 ([ #1360 ] ( https://github.com/Pycord-Development/pycord/pull/1360 ) )
881910
882911## [ 2.0.0-rc.1] - 2022-05-17
0 commit comments