Skip to content

Commit 9683629

Browse files
chore: clean up changelog (Pycord-Development#2341)
* chore: fix changelog * style(pre-commit): auto fixes from pre-commit.com hooks * chore: add missing entry * style(pre-commit): auto fixes from pre-commit.com hooks --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 7555fc2 commit 9683629

File tree

1 file changed

+47
-47
lines changed

1 file changed

+47
-47
lines changed

CHANGELOG.md

Lines changed: 47 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -12,32 +12,32 @@ These changes are available on the `master` branch, but have not yet been releas
1212

1313
### Added
1414

15-
- Added possibility to start bot via async context manager.
15+
- Added method to start bot via async context manager.
1616
([#1801](https://github.com/Pycord-Development/pycord/pull/1801))
17-
- Added new parameters (`author`, `footer`, `image`, `thumbnail`) to `discord.Embed`.
18-
([#1996](https://github.com/Pycord-Development/pycord/pull/1996))
19-
- Added new events `on_bridge_command`, `on_bridge_command_completion`, and
17+
- Added parameters `author`, `footer`, `image` and `thumbnail` to `discord.Embed`
18+
initializer. ([#1996](https://github.com/Pycord-Development/pycord/pull/1996))
19+
- Added events `on_bridge_command`, `on_bridge_command_completion`, and
2020
`on_bridge_command_error`.
2121
([#1916](https://github.com/Pycord-Development/pycord/pull/1916))
2222
- Added the `@client.once()` decorator, which serves as a one-time event listener.
2323
([#1940](https://github.com/Pycord-Development/pycord/pull/1940))
2424
- Added support for text-related features in `StageChannel`.
2525
([#1936](https://github.com/Pycord-Development/pycord/pull/1936))
26-
- Added support for one-time event listeners in `@client.listen()`.
26+
- Added support for one-time event listeners in `Client.listen`.
2727
([#1957](https://github.com/Pycord-Development/pycord/pull/1957))
2828
- Added `current_page` argument to `Paginator.update()`.
2929
([#1983](https://github.com/Pycord-Development/pycord/pull/1983))
30-
- Added new `application_auto_moderation_rule_create_badge` to `ApplicationFlags`.
30+
- Added application flag `application_auto_moderation_rule_create_badge`.
3131
([#1992](https://github.com/Pycord-Development/pycord/pull/1992))
32-
- Added `sync_start` argument to `VoiceClient.start_recording()`. This adds silence to
33-
the start of audio recordings.
32+
- Added support for recording silence via new `sync_start` argument in
33+
`VoiceClient.start_recording()`.
3434
([#1984](https://github.com/Pycord-Development/pycord/pull/1984))
3535
- Added `custom_message` to AutoModActionMetadata.
3636
([#2029](https://github.com/Pycord-Development/pycord/pull/2029))
3737
- Added support for
3838
[voice messages](https://github.com/discord/discord-api-docs/pull/6082).
3939
([#2016](https://github.com/Pycord-Development/pycord/pull/2016))
40-
- Added the `data` attribute to all
40+
- Added `data` attribute to all
4141
[Raw Event payloads](https://docs.pycord.dev/en/master/api/models.html#events).
4242
([#2023](https://github.com/Pycord-Development/pycord/pull/2023))
4343
- Added and documented missing `AuditLogAction` enums.
@@ -50,21 +50,20 @@ These changes are available on the `master` branch, but have not yet been releas
5050
- Added `view.parent` which is set when the view is sent by
5151
`interaction.response.send_message`.
5252
([#2036](https://github.com/Pycord-Development/pycord/pull/2036))
53-
- Added functions (`bridge.Bot.walk_bridge_commands` &
54-
`BridgeCommandGroup.walk_commands`) to cycle through all bridge commands and their
55-
children/subcommands.
53+
- Added methods `bridge.Bot.walk_bridge_commands` and
54+
`BridgeCommandGroup.walk_commands`.
5655
([#1867](https://github.com/Pycord-Development/pycord/pull/1867))
5756
- Added support for usernames and modified multiple methods accordingly.
5857
([#2042](https://github.com/Pycord-Development/pycord/pull/2042))
59-
- Added `icon` and `unicode_emoji` to `Guild.create_role`.
58+
- Added `icon` and `unicode_emoji` arguments to `Guild.create_role`.
6059
([#2086](https://github.com/Pycord-Development/pycord/pull/2086))
61-
- Added `cooldown` and `max_concurrency` to `SlashCommandGroup`.
60+
- Added `cooldown` and `max_concurrency` attributes to `SlashCommandGroup`.
6261
([#2091](https://github.com/Pycord-Development/pycord/pull/2091))
63-
- Added new embedded activities, Gartic Phone and Jamspace.
62+
- Added embedded activities Gartic Phone and Jamspace.
6463
([#2102](https://github.com/Pycord-Development/pycord/pull/2102))
65-
- Added `bridge.Context` as a shortcut to `Union` of subclasses.
64+
- Added `bridge.Context` type as a `Union` of subclasses.
6665
([#2106](https://github.com/Pycord-Development/pycord/pull/2106))
67-
- Added Annotated forms support for type-hinting slash command options.
66+
- Added support for type-hinting slash command options with `typing.Annotated`.
6867
([#2124](https://github.com/Pycord-Development/pycord/pull/2124))
6968
- Added `suppress` and `allowed_mentions` parameters to `Webhook` and
7069
`InteractionResponse` edit methods.
@@ -79,24 +78,26 @@ These changes are available on the `master` branch, but have not yet been releas
7978
([#2112](https://github.com/Pycord-Development/pycord/pull/2112))
8079
- Added `ForumChannel.default_reaction_emoji` attribute.
8180
([#2178](https://github.com/Pycord-Development/pycord/pull/2178))
82-
- Added `default_reaction_emoji` parameter to `Guild.create_forum_channel()` and
83-
`ForumChannel.edit()` methods.
81+
- Added `default_reaction_emoji` parameter to `Guild.create_forum_channel` and
82+
`ForumChannel.edit` methods.
8483
([#2178](https://github.com/Pycord-Development/pycord/pull/2178))
85-
- Added `applied_tags` parameter to `Webhook.send()` method.
84+
- Added `applied_tags` parameter to `Webhook.send` method.
8685
([#2322](https://github.com/Pycord-Development/pycord/pull/2322))
8786
- Added `User.avatar_decoration`.
8887
([#2131](https://github.com/Pycord-Development/pycord/pull/2131))
8988
- Added support for guild onboarding related features.
9089
([#2127](https://github.com/Pycord-Development/pycord/pull/2127))
91-
- Added support for monetization-related objects and events.
90+
- Added support for monetization related objects and events.
9291
([#2273](https://github.com/Pycord-Development/pycord/pull/2273))
92+
- Added `AttachmentFlags` and attachment attributes `expires_at`, `issued_at` and `hm`.
93+
([#2342](https://github.com/Pycord-Development/pycord/pull/2342))
9394

9495
### Changed
9596

96-
- Changed default for all `name_localizations` & `description_localizations` attributes
97-
from being `None` to being `MISSING`.
97+
- Changed default for all `name_localizations` and `description_localizations`
98+
attributes from being `None` to being `MISSING`.
9899
([#1866](https://github.com/Pycord-Development/pycord/pull/1866))
99-
- Changed FFMPEG output suppression when recording voice channels.
100+
- Changed `ffmpeg` output suppression when recording voice channels.
100101
([#1993](https://github.com/Pycord-Development/pycord/pull/1993))
101102
- Changed file-upload size limit from 8 MB to 25 MB accordingly.
102103
([#2014](https://github.com/Pycord-Development/pycord/pull/2014))
@@ -107,30 +108,29 @@ These changes are available on the `master` branch, but have not yet been releas
107108
([#2025](https://github.com/Pycord-Development/pycord/pull/2025))
108109
- Changed `DMChannel.recipients` to potentially be `None`.
109110
([#2025](https://github.com/Pycord-Development/pycord/pull/2025))
110-
- Changed the behavior to store `view.message` when receiving an Interaction for a
111-
component. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))
111+
- Changed the behavior to store `view.message` when receiving a component interaction,
112+
while also changing `view.message` not to be set when sending view through
113+
`InteractionResponse.send_message`.
114+
([#2036](https://github.com/Pycord-Development/pycord/pull/2036))
112115
- Changed the fetching of attributes shared between text-based and Slash Commands in
113116
Bridge Commands to be dynamic.
114117
([#1867](https://github.com/Pycord-Development/pycord/pull/1867))
115-
- Changed `discord.Embed` attributes (such as author, footer, etc.) now return `None`
116-
when not set, and return their respective classes when set.
118+
- `discord.Embed` attributes (such as author, footer, etc.) now return instances of
119+
their respective classes when set and `None` otherwise.
117120
([#2063](https://github.com/Pycord-Development/pycord/pull/2063))
118-
- Changed `default_avatar` behavior depending on the user's username migration status.
121+
- Changed `default_avatar` behavior to depend on the user's username migration status.
119122
([#2087](https://github.com/Pycord-Development/pycord/pull/2087))
120-
- Changed type-hinted `command_prefix` and `help_command` arguments properly.
123+
- Changed type hints of `command_prefix` and `help_command` arguments to be accurate.
121124
([#2099](https://github.com/Pycord-Development/pycord/pull/2099))
122-
- Changed the support from `orjson` to `msgspec` in the codebase.
125+
- Replaced `orjson` features with `msgspec` in the codebase.
123126
([#2170](https://github.com/Pycord-Development/pycord/pull/2170))
124127
- `BridgeOption` must now be used for arguments in bridge commands.
125128
([#2252](https://github.com/Pycord-Development/pycord/pull/2252))
126129

127130
### Removed
128131

129-
- Removed `@client.once()` in favour of `@client.listen(once=True)`.
132+
- Removed `Client.once` in favour of `once` argument in `Client.listen`.
130133
([#1957](https://github.com/Pycord-Development/pycord/pull/1957))
131-
- Removed `view.message` being set when the view was sent by
132-
`interaction.response.send_message`.
133-
([#2036](https://github.com/Pycord-Development/pycord/pull/2036))
134134
- Removed `Embed.Empty` in favour of `None`, and `EmbedProxy` in favour of individual
135135
classes. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))
136136

@@ -139,8 +139,8 @@ These changes are available on the `master` branch, but have not yet been releas
139139
- Fixed `AttributeError` caused by
140140
[#1957](https://github.com/Pycord-Development/pycord/pull/1957) when using listeners
141141
in cogs. ([#1989](https://github.com/Pycord-Development/pycord/pull/1989))
142-
- Editing a webhook message if the thread is a forum post or if the thread is a private
143-
thread ([#1981](https://github.com/Pycord-Development/pycord/pull/1981))
142+
- Fixed an issue in editing webhook messages in forum posts and private threads.
143+
([#1981](https://github.com/Pycord-Development/pycord/pull/1981)).
144144
- Fixed `View.message` not being set when view is sent using webhooks, including
145145
`Interaction.followup.send` or when a message is edited.
146146
([#1997](https://github.com/Pycord-Development/pycord/pull/1997))
@@ -150,7 +150,7 @@ These changes are available on the `master` branch, but have not yet been releas
150150
([#1998](https://github.com/Pycord-Development/pycord/pull/1998))
151151
- Fixed boolean converter breaking for Bridge Commands.
152152
([#1999](https://github.com/Pycord-Development/pycord/pull/1999))
153-
- Fixed Bridge Command Options not working.
153+
- Fixed bridge command options not working.
154154
([#1999](https://github.com/Pycord-Development/pycord/pull/1999))
155155
- Fixed `TypeError` being raised when passing `name` argument to bridge groups.
156156
([#2000](https://github.com/Pycord-Development/pycord/pull/2000))
@@ -159,9 +159,9 @@ These changes are available on the `master` branch, but have not yet been releas
159159
- Fixed the functionality to override the default `on_application_command_error`
160160
behavior using listeners.
161161
([#2044](https://github.com/Pycord-Development/pycord/pull/2044))
162-
- Fixed unloading of cogs having Bridge Commands.
162+
- Fixed unloading of cogs with bridge commands.
163163
([#2048](https://github.com/Pycord-Development/pycord/pull/2048))
164-
- Fixed the Slash Command synchronization method `individual`.
164+
- Fixed the `individual` slash command synchronization method.
165165
([#1925](https://github.com/Pycord-Development/pycord/pull/1925))
166166
- Fixed an issue that occurred when `webhooks_update` event payload channel ID was
167167
`None`. ([#2078](https://github.com/Pycord-Development/pycord/pull/2078))
@@ -179,7 +179,7 @@ These changes are available on the `master` branch, but have not yet been releas
179179
([#2145](https://github.com/Pycord-Development/pycord/pull/2145))
180180
- Fixed `Thread.applied_tags` not being updated.
181181
([#2146](https://github.com/Pycord-Development/pycord/pull/2146))
182-
- Fixed type-hinting of `author` property of `ApplicationContext` to include
182+
- Fixed type hinting of `author` property of `ApplicationContext` to include
183183
type-hinting of `User` or `Member`.
184184
([#2148](https://github.com/Pycord-Development/pycord/pull/2148))
185185
- Fixed missing `delete_after` parameter in overload type-hinting for `Webhook.send()`.
@@ -188,16 +188,16 @@ These changes are available on the `master` branch, but have not yet been releas
188188
([#2162](https://github.com/Pycord-Development/pycord/pull/2162))
189189
- Fixed `_bytes_to_base64_data` not defined.
190190
([#2185](https://github.com/Pycord-Development/pycord/pull/2185))
191-
- Fixed type-hinting of `values` argument of `basic_autocomplete` to include
192-
type-hinting of `Iterable[OptionChoice]`.
191+
- Fixed inaccurate `Union` type hint of `values` argument of `basic_autocomplete` to
192+
include `Iterable[OptionChoice]`.
193193
([#2164](https://github.com/Pycord-Development/pycord/pull/2164))
194194
- Fixed initial message inside of the create thread payload sending legacy beta payload.
195195
([#2191](https://github.com/Pycord-Development/pycord/pull/2191))
196196
- Fixed a misplaced payload object inside of the thread creation payload.
197197
([#2192](https://github.com/Pycord-Development/pycord/pull/2192))
198-
- Fixed `DMChannel.recipient` being `None` and consequently `User.dm_channel` also being
199-
`None`. ([#2219](https://github.com/Pycord-Development/pycord/pull/2219))
200-
- Fixed ffmpeg being terminated prematurely when piping audio stream.
198+
- Fixed `DMChannel.recipient` and `User.dm_channel` being `None`.
199+
([#2219](https://github.com/Pycord-Development/pycord/pull/2219))
200+
- Fixed `ffmpeg` being terminated prematurely when piping audio stream.
201201
([#2240](https://github.com/Pycord-Development/pycord/pull/2240))
202202
- Fixed tasks looping infinitely when `tzinfo` is neither `None` nor UTC.
203203
([#2196](https://github.com/Pycord-Development/pycord/pull/2196))
@@ -226,7 +226,7 @@ These changes are available on the `master` branch, but have not yet been releas
226226
- Fixed application command options causing errors if declared through the option
227227
decorator or kwarg.
228228
([#2332](https://github.com/Pycord-Development/pycord/issues/2332))
229-
- Fixed options declared using the 'default' syntax always being optional.
229+
- Fixed options declared using the parameter default value syntax always being optional.
230230
([#2333](https://github.com/Pycord-Development/pycord/issues/2333))
231231
- Fixed `BridgeContext` type hints raising an exception for unsupported option type.
232232
([#2337](https://github.com/Pycord-Development/pycord/pull/2337))

0 commit comments

Comments
 (0)