Improvements
- Partial `ApplicationCommand`-s are now hashable.
- `ApplicationCommand.__new__` now accepts `options` as any iterable (from list | tuple).
- `ApplicationCommandOption.__new__` now accepts `choices` as any iterable (from list | tuple).
- Add `ApplicationCommandOption.__hash__`.
- `ApplicationCommandOption.__new__` now accepts `options` as any iterable (from list | tuple).
- Add `ApplicationCommandOptionChoice.__hash__`.
- Fix some linting errors in `UserBase` subclasses.
- `datetime_to_unix_time` now ignores what stdlib thinks.
- Add `Activity`.
- Add `ActivityMetadataBase`.
- Add `CustomActivityMetadata`.
- Add `RichActivityMetadata`.
- Add `ActivityType`.
- Add `GuildFeature.invites_disabled`.
- Add `ERROR_CODES.cannot_send_message_to_forum_channel`.
- Add `ERROR_CODES.no_tags_available_for_non_moderators`.
- Add `ERROR_CODES.tag_required`.
- Add `ChannelFlag.guild_feed_removed`.
- Add `ChannelFlag.active_channels_removed`.
- Add `ChannelFlag.require_tag`.
- Add `ChannelFlag.spam`.
- Add `ForumTag`.
- `create_partial_emoji_from_data` now prioritizes `emoji_` prefix fields.
- Add `ChannelMetadataGuildForum.flags`.
- Add `put_partial_emoji_data_into`.
- Add `MessageType.interaction_premium_upsell`.
- Add `MessageType`.
- Add `MessageTypeFlag`.
- Add `ConnectionType.paypal`.
- Add `ConnectionType.ebay`.
- Add `available_tags` audit log change converter.
- Add `Channel.available_tags`.
- Add `ChannelMetadataForum.available_tags`.
- Add `ChannelMetadataForum.flags`.
- Add `ChannelMetadataGuildThreadPublic.applied_tag_ids`.
- Add `Channel.applied_tag_ids`.
- Add `Channel.applied_tags`.
- Add `create_forum_tag_from_id`.
- Add `applied_tag_ids` audit log change converter.
- Add `ChannelMetadataGuildTextBase.default_thread_slowmode`.
- Add `Channel.default_thread_slowmode`.
- Add `Channel.default_thread_auto_archive_after`.
- Add `default_thread_slowmode` audit log change converter.
- Add `create_emoji_from_exclusive_data`.
- Add `create_emoji_from_exclusive_data`.
- `preconvert_snowflake_array` now accepts any iterable (from set | list | tuple).
- Add `put_exclusive_emoji_data_into`.
- Add `ChannelMetadataForum.default_thread_reaction`.
- Add `Channel.default_thread_reaction`.
- Add `default_thread_slowmode` parameter to `Channel.precreate`.
- Add `default_thread_reaction` parameter to `Channel.precreate`.
- Add `available_tags` parameter to `Channel.precreate`.
- Add `applied_tag_ids` parameter to `Channel.precreate`.
- Add `default_thread_reaction` audit log change converter.
- Add `dotted_line_face` unicode emoji.
- Add `permission_overwrites` parameter to `Channel.precreate`.
- Add `position` parameter to `Channel.precreate`.
- Add `parent_id` parameter to `Channel.precreate`.
- Add `created_at` parameter to `Channel.precreate`.
- Add `archived` parameter to `Channel.precreate`.
- Add `archived_at` parameter to `Channel.precreate`.
- Add `users` parameter to `Channel.precreate`.
- Channel metadatas now use `.from_data` for being constructed from data and `__new__` has been repurposed for partial
constructing.
- Implement `IconSlot.__set__`.
- Add `__hash__` method to all channel metadata type.
- Add `Channel.from_data` (renamed `.__new__`).
- Repurpose `Channel.__new__` as a partial constructor.
- Add `guild_id` parameter to `Channel.precreate`.
- `hash` works on fully-partial channels correctly.
- `==` works on fully-partial channels correctly.
- `Channel.parent` will not be `None` if the channel has parent, but not cached.
Bug fixes
- `Activity` timestamps are now correctly converted.
- `eventlist.__init__` failed on `pypy3.8`.
- `create_partial_emoji_from_data` handled new unicode emoji cases incorrectly. (from 1.3.4) (Gilgamesh8939)
- Some thread fields were wrongly deserialized.
- `IconSLot.preconvert` could drop `TypeError`.
- `ChannelMetadataPrivate._create_empty` set `.name` incorrectly.
- `ChannelMetadataGuildBase._iter_users` raised `AttributeError`.
- `ChannelMetadataPrivate.name` was not a property.
- `Channel.created_at` raised `AttributeError`.
- `Channel.iter_users` could raise `TypeError`.
- `Message.custom` did not detect `guild_id` from channel correctly. (Gilgamesh8939)
- Add 111 new emojis.
Renames, Deprecation & Removals
- Deprecate `ACTIVITY_TYPES`, use `ActivityType` instead.
- Deprecate `ActivityRich`, use `Activity` instead.
- Remove `ActivityBase`.
- Deprecate `ActivityCustom`, use `Activity` instead.
- Remove `ActivityUnknown`.
- Rename `ActivityRich.track_id` to `.spotify_track_id`.
- Deprecate `ActivityRich.track_id`.
- Rename `ActivityRich.track_url` to `.spotify_track_url`.
- Deprecate `ActivityRich.track_url`.
- Deprecate `with_count` parameter of `Client.invite_get`. (From now on, it will always default to `True`.)
- Rename `Channel.is_in_group_messageable` to `.is_in_group_textual` with deprecation notice.
- Rename `Channel.is_in_group_guild_messageable` to `.is_in_group_guild_textual` with deprecation notice.
- Rename `Channel.is_in_group_guild_main_text` to `.is_in_group_guild_system` with deprecation notice.
- Rename `Channel.is_in_group_can_contain_threads` to `.is_in_group_threadable` with deprecation notice.
- Rename `Channel.is_in_group_can_create_invite_to` to `.is_in_group_invitable` with deprecation notice.
- Rename `Channel.is_in_group_guild_movable` to `.is_in_group_guild_sortable` with deprecation notice.
- Rename `.default_auto_archive_after` to `.default_thread_auto_archive_after`
- Rename `ChannelMetadataGuildForum.slowmode` to `.default_thread_slowmode`.
- Deprecate `Activity.bot_dict`, use `.to_data()` instead.
- Deprecate `Activity.user_dict`, use `.to_data(user = True)` instead.
- Deprecate `Activity.full_dict`, use `.to_data(include_internal = True)` instead.