@@ -32,10 +32,12 @@ These changes are available on the `master` branch, but have not yet been releas
32
32
([ #2590 ] ( https://github.com/Pycord-Development/pycord/pull/2590 ) )
33
33
- Added missing ` with_counts ` parameter to ` fetch_guilds ` method.
34
34
([ #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
37
37
` Permissions.view_creator_monetization_analytics ` .
38
38
([ #2620 ] ( https://github.com/Pycord-Development/pycord/pull/2620 ) )
39
+ - Added helper methods to determine the authorizing party of an ` Interaction ` .
40
+ ([ #2659 ] ( https://github.com/Pycord-Development/pycord/pull/2659 ) )
39
41
40
42
### Fixed
41
43
@@ -54,7 +56,7 @@ These changes are available on the `master` branch, but have not yet been releas
54
56
([ #2595 ] ( https://github.com/Pycord-Development/pycord/pull/2595 ) )
55
57
- Fixed ` BucketType.category ` cooldown commands not functioning correctly in private
56
58
channels. ([ #2603 ] ( https://github.com/Pycord-Development/pycord/pull/2603 ) )
57
- - Fixed ` SlashCommand ` 's ` ctx ` parameter couldn't be ` Union ` type.
59
+ - Fixed ` ctx ` parameter of a ` SlashCommand ` not being ` Union ` type.
58
60
([ #2611 ] ( https://github.com/Pycord-Development/pycord/pull/2611 ) )
59
61
- Fixed ` TypeError ` when passing ` skus ` parameter in ` Client.entitlements() ` .
60
62
([ #2627 ] ( https://github.com/Pycord-Development/pycord/issues/2627 ) )
@@ -66,6 +68,9 @@ These changes are available on the `master` branch, but have not yet been releas
66
68
([ #2635 ] ( https://github.com/Pycord-Development/pycord/issues/2635 ) )
67
69
- Fixed malformed properties in ` Interaction.channel ` .
68
70
([ #2658 ] ( https://github.com/Pycord-Development/pycord/pull/2658 ) )
71
+ - Fixed an error when responding non-ephemerally with a ` Paginator ` to an ephemerally
72
+ deferred interaction.
73
+ ([ #2661 ] ( https://github.com/Pycord-Development/pycord/pull/2661 ) )
69
74
70
75
### Changed
71
76
@@ -79,6 +84,8 @@ These changes are available on the `master` branch, but have not yet been releas
79
84
- Replaced audioop (deprecated module) implementation of ` PCMVolumeTransformer.read `
80
85
method with a pure Python equivalent.
81
86
([ #2176 ] ( https://github.com/Pycord-Development/pycord/pull/2176 ) )
87
+ - Updated ` Guild.filesize_limit ` to 10 MB instead of 25 MB following Discord's API
88
+ changes. ([ #2671 ] ( https://github.com/Pycord-Development/pycord/pull/2671 ) )
82
89
83
90
### Deprecated
84
91
@@ -392,7 +399,7 @@ These changes are available on the `master` branch, but have not yet been releas
392
399
([ #2075 ] ( https://github.com/Pycord-Development/pycord/pull/2075 ) )
393
400
- Fixed ` before_invoke ` not being run for ` SlashCommandGroup ` .
394
401
([ #2091 ] ( https://github.com/Pycord-Development/pycord/pull/2091 ) )
395
- - Fixed ` AttributeError ` when accessing a ` Select ` object's values when it hasn't been
402
+ - Fixed ` AttributeError ` when accessing a ` Select ` object's values when it has not been
396
403
interacted with. ([ #2104 ] ( https://github.com/Pycord-Development/pycord/pull/2104 ) )
397
404
- Fixed ` before_invoke ` being run twice for slash subcommands.
398
405
([ #2139 ] ( https://github.com/Pycord-Development/pycord/pull/2139 ) )
@@ -423,7 +430,7 @@ These changes are available on the `master` branch, but have not yet been releas
423
430
([ #2196 ] ( https://github.com/Pycord-Development/pycord/pull/2196 ) )
424
431
- Fixed ` AttributeError ` when running permission checks without the ` bot ` scope.
425
432
([ #2113 ] ( https://github.com/Pycord-Development/pycord/issues/2113 ) )
426
- - Fixed ` Option ` not working on bridge commands because ` ext.commands.Command ` doesn't
433
+ - Fixed ` Option ` not working on bridge commands because ` ext.commands.Command ` does not
427
434
recognize them. ([ #2256 ] ( https://github.com/Pycord-Development/pycord/pull/2256 ) )
428
435
- Fixed offset-aware tasks causing ` TypeError ` when being prepared.
429
436
([ #2271 ] ( https://github.com/Pycord-Development/pycord/pull/2271 ) )
@@ -523,7 +530,7 @@ These changes are available on the `master` branch, but have not yet been releas
523
530
### Fixed
524
531
525
532
- Fixed bugs in ` Page.update_files ` where file objects stored in memory were causing an
526
- ` AttributeError ` , and ` io.BytesIO ` files didn't send properly more than once.
533
+ ` AttributeError ` , and ` io.BytesIO ` files did not send properly more than once.
527
534
([ #1869 ] ( https://github.com/Pycord-Development/pycord/pull/1869 ) &
528
535
[ #1881 ] ( https://github.com/Pycord-Development/pycord/pull/1881 ) )
529
536
- Fixed bridge groups missing the ` parent ` attribute.
@@ -878,9 +885,9 @@ These changes are available on the `master` branch, but have not yet been releas
878
885
([ #1453 ] ( https://github.com/Pycord-Development/pycord/pull/1453 ) )
879
886
- Update ` thread.members ` on ` thread.fetch_members ` .
880
887
([ #1464 ] ( https://github.com/Pycord-Development/pycord/pull/1464 ) )
881
- - Fix the error when Discord doesn't send the ` app_permissions ` data in ` Interaction ` .
888
+ - Fix the error when Discord does not send the ` app_permissions ` data in ` Interaction ` .
882
889
([ #1467 ] ( https://github.com/Pycord-Development/pycord/pull/1467 ) )
883
- - Fix AttributeError when voice client ` play() ` function isn't completed yet.
890
+ - Fix AttributeError when voice client ` play() ` function is not completed yet.
884
891
([ #1360 ] ( https://github.com/Pycord-Development/pycord/pull/1360 ) )
885
892
886
893
## [ 2.0.0-rc.1] - 2022-05-17
0 commit comments