Improvements
- Repurpose `MessageInteraction.__init__`, rename to `.from_data`.
- Add `MessageInteraction.__new__`.
- Add `MessageInteraction.precreate`.
- Add `MessageInteraction.__eq__`.
- Add `MessageInteraction.partial`.
- Add `MessageInteraction.__hash__`.
- Add `MessageInteraction.copy`.
- Add `MessageInteraction.copy_with`.
- Add `Attachment.waveform`.
- Add `Attachment.duration`.
- Add `ERROR_CODES.voice_message_not_supports_additional_content`.
- Add `ERROR_CODES.voice_message_must_have_one_audio_attachment`.
- Add `ERROR_CODES.voice_message_must_have_supporting_metadata`.
- Add `ERROR_CODES.cannot_edit_voice_message`.
- Add `ERROR_CODES.cannot_send_voice_message_to_this_channel`.
- Add `ERROR_CODES.clyde_consent_required`.
- Add `MessageType.private_channel_integration_add`.
- Add `MessageType.private_channel_integration_remove`.
- Add `MessageType.premium_referral`.
- Add `EmbedType.auto_moderation_notification`.
- Add `EmbedType.text`.
- Add `EmbedType.post_review`.
- Add `send_voice_messages` `Permission`.
- Update `upload_limit` to `25MB`.
ext.plugin_loader
- Add `Plugin.sort_key`.
- Plugin sorting improved. (Using sort key instead of name).
- Add `PluginException.plugin`.
- Add `PluginException.get_plugins`.
- Add `PluginError.get_plugin_tree_iterator_for_action`.
- Add `PluginError.get_plugin_tree_iterator_for_load`.
- Add `PluginError.get_plugin_tree_iterator_for_unload`.
- `PluginLoader` now picks up previously built but failed /cancelled plugin trees when retrying load / reload.
- Add `PluginError.get_plugin_tree_iterator_for_syntax_check`.
- `mark_as_plugin_root_directory` now ignores directories such as `__pycache__` and `tests` even if they have an
`__init__.py` in them.
- `PluginLoader.get_plugin` now accepts paths as `name`.
- `PluginLoader.load_plugin` now accepts `Plugin`, `PluginTree`, `None` and `iterable` of them as well.
- `PluginLoader.reload_plugin` now accepts `Plugin`, `PluginTree`, `None` and `iterable` of them as well.
- `PluginLoader.unload_plugin` now accepts `Plugin`, `PluginTree`, `None` and `iterable` of them as well.
- `PluginLoader.get_plugin` now handles non-existent paths.
- `PluginLoader` now handles deleted files after unload / before load.
- Registered plugins by absolute path now get name correctly if they under a plugin root directory.
Bug fixes
- `Message.clean_embeds` raised `AttributeError`. (from 1.3.26)
ext.plugin_loader
- Failing syntax checks did not abort further actions.
- `PluginLoader.remove` now removes the plugins as intended.
Renames, Deprecation & Removals
- Rname `MessageType.add_user` to `.user_add`.
- Rname `MessageType.remove_user` to `.user_remove`.
- Deprecate `MessageType.add_user`.
- Deprecate `MessageType.remove_user`.