Improvements
- Add support for all the parameters in `Guild.precreate`.
- When all clients leave a guild its entities such as: channels, roles, users, etc are not cleaned up anymore.
This caused bugs on user side. On wrapper side this was the intended behavior since 2019.
Now cleanup happens when the guild is repopulated. Note that guild profiles are still cleaned up initially.
- Add `Guild.__new__` as a template constructor.
- `Guild.__eq__` now supports template instances.
- `Guild.__hash__` now supports template instances.
- Add `Guild.copy`.
- `Guild.widget_url` is now a property to match other `..._url` properties. Added `..._url_as` version.
- Add `Guild.get_roles_like`.
- Add `Guild.get_channels_like`.
- Add `Guild.iter_channels`.
- Add `Guild.get_users_like`.
- Add `Guild.iter_users`.
- Add `Guild.iter_roles`.
- Add `Guild.iter_emojis`.
- Add `Guild.iter_stickers`.
- Add `Guild.iter_scheduled_events`.
- Add `Guild.iter_stages`.
- Add `Guild.iter_threads`.
- Add `Guild.iter_voice_states`.
- `Guild.get_user...` methods now handle `display_name` correctly.
- `Channel.get_user...` methods now handle `display_name` correctly.
- Add `GUILD_SOUNDBOARD_SOUNDS_UPDATE` event parsers.
- Add never linked (ops) `thread_user_update` event.
- `guild_user_update` has been changed from `client, user, guild, old_attributes` to
`client, guild, user, old_attributes` to match other event handlers.
- Rename `..._edit` event handlers to `..._update` to reflect better what happened. `..._edit` format is still accepted.
- Repurpose and rename `GuildUserChunkEvent.__new__` to `.from_data`.
- Add `GuildUserChunkEvent.__new__`.
- Add `GuildUserChunkEvent.to_data`.
- Add `GuildUserChunkEvent.copy`.
- Add `GuildUserChunkEvent.copy_with`.
Bug Fixes
- `scaffold` command always failed if `project-name` was directly defined.
- `Message` did not update the referenced message's content fields even if it would been required.
- A message was updated with non-intent data even if there was a client with intent data.
This was caused by checking whether "any" mask is matching instead "all".
- `NsfwLevel.age_restricted` had incorrect `.value`.
- Fix `Channel.display_name` formatting for multiple types.
- Fix `AttributeError` in `Guild.channel_list_flattened`.
- Channel sorting was partially broken producing incorrect order.
- `Guild.permissions_for` returned incorrect value if a webhook was given and the guild's default role had
administrator permission.
- `Guild.permissions_for` did not handle guild profile roles and guild roles de-sync correctly.
- `Guild.permissions_for_roles` did not ignore partial roles as intended. Broke probably a few years ago.
- Fix `TypeError` from `GuildUserChunkEvent.__repr__` (bad return).
- Fix `ActivityMetadataCustom.__repr__` format. (Missing `>` sign.)
ext.plugin_loader
- Fix `IndexError` in `_is_plugin_name_in_plugin_root_names`.
ext.rpc
- Fix a broken import.
Renames, Deprecation & Removals
- Remove unused `COMMUNITY_FEATURES` importable variable.
- Rename `Guild.is_large` to `.large`.
- Deprecate `Guild.is_large`.
- Rename `Guild._embedded_activity_states` to `embedded_activity_states`.
- Deprecate `Guild.thread_channels`.
- Rename `Guild.widget_url` to `.widget_url_as`.
- Rename `EMOJI_UPDATE_EDIT` to `EMOJI_EVENT_UPDATE`. No longer directly importable, since used in internal functions.
- Rename `EMOJI_UPDATE_DELETE` to `EMOJI_EVENT_DELETE`. No longer directly importable, since used in internal functions.
- Rename `EMOJI_UPDATE_CREATE` to `EMOJI_EVENT_CREATE`. No longer directly importable, since used in internal functions.
- Rename `EMOJI_UPDATE_NONE` to `EMOJI_EVENT_NONE`. No longer directly importable, since used in internal functions.
- Rename `STICKER_UPDATE_EDIT` to `STICKER_EVENT_UPDATE`.
No longer directly importable, since used in internal functions.
- Rename `STICKER_UPDATE_DELETE` to `STICKER_EVENT_DELETE`.
No longer directly importable, since used in internal functions.
- Rename `STICKER_UPDATE_CREATE` to `STICKER_EVENT_CREATE`.
No longer directly importable, since used in internal functions.
- Rename `STICKER_UPDATE_NONE` to `STICKER_EVENT_NONE`. No longer directly importable, since used in internal functions.
- Rename `VOICE_STATE_NONE` to `VOICE_STATE_EVENT_NONE`.
No longer directly importable, since used in internal functions.
- Rename `VOICE_STATE_JOIN` to `VOICE_STATE_EVENT_JOIN`.
No longer directly importable, since used in internal functions.
- Rename `VOICE_STATE_LEAVE` to `VOICE_STATE_EVENT_LEAVE`.
No longer directly importable, since used in internal functions.
- Rename `VOICE_STATE_UPDATE` to `VOICE_STATE_EVENT_UPDATE`.
No longer directly importable, since used in internal functions.
- Rename `VOICE_STATE_MOVE` to `VOICE_STATE_EVENT_MOVE`. No longer directly importable, since used in internal functions.
- Deprecate `Guild.text_channels`. Use `[*Guild.iter_channels(Channel.is_guild_text)]` instead.
- Deprecate `Guild.voice_channels`. Use `[*Guild.iter_channels(Channel.is_guild_voice)]` instead.
- Deprecate `Guild.category_channels`. Use `[*Guild.iter_channels(Channel.is_guild_category)]` instead.
- Deprecate `Guild.announcement_channels`. Use `[*Guild.iter_channels(Channel.is_guild_announcements)]` instead.
- Deprecate `Guild.store_channels`. Use `[*Guild.iter_channels(Channel.is_guild_store)]` instead.
- Deprecate `Guild.stage_channels`. Use `[*Guild.iter_channels(Channel.is_guild_stage)]` instead.
- Deprecate `Guild.forum_channels`. Use `[*Guild.iter_channels(Channel.is_guild_forum)]` instead.
- Deprecate `Guild.messageable_channels`. Use `[*Guild.iter_channels(Channel.is_in_group_guild_textual)]` instead.
- Deprecate `Guild.connectable_channels`. Use `[*Guild.iter_channels(Channel.is_in_group_guild_connectable)]` instead.
- Rename `MessageNotificationLevel.null` to `.none`.
- Deprecate `MessageNotificationLevel.null`. Use `.null` instead.
- Rename `GuildUserChunkEvent.index` too `.chunk_index`.
- Deprecate `GuildUserChunkEvent.index`.
- Rename `GuildUserChunkEvent.count` too `.chunk_count`.
- Deprecate `GuildUserChunkEvent.count`.