Hata

Latest version: v1.3.77

Safety actively analyzes 723954 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 9 of 29

1.3.28

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`.

1.3.27

Improvements

- `.IntegrationMetadataBase.__new__` is now `.from_keyword_parameters`. Add new `.__new__` method.
- `.IntegrationMetadataBase.copy_with` is now `.copy_with_keyword_parameters`. Add new `.copy_with` method.
- `ComponentMetadataBase.__new__` is now `.from_keyword_parameters`. Add new `.__new__` method.
- `ComponentMetadataBase.copy_with` is now `.copy_with_keyword_parameters`. Add new `.copy_with` method.
- `ActivityMetadataBase.__new__` is now `.from_keyword_parameters`. Add new `.__new__` method.
- `ActivityMetadataBase.copy_with` now supports the `component_type` parameter.
- `ApplicationCommandOptionMetadataBase.__new__` is now `.from_keyword_parameters`. Add new `.__new__` method.
- `ApplicationCommandOptionMetadataBase.copy_with` now supports the `component_type` parameter.
- `ChannelMetadataBase.__new__` is now `.from_keyword_parameters`. Add new `.__new__` method.
- Add `ChannelMetadataBase.copy`.
- Add `ChannelMetadataBase.copy_with`.
- Add `ChannelMetadataBase.copy_with_keyword_parameters`.
- Add `Channel.copy`.
- Add `Channel.copy_with`.
- Bump max embeds from 10 to 15.
- Add `Channel.iter_channels`.
- Add `Channel.iter_voice_users`.
- Add `Channel.iter_audience`.
- Add `Channel.iter_speakers`.
- Add `Channel.iter_moderators`.
- Repurpose `MessageApplication.__init__`, rename to `.from_data`.
- Add `MessageApplication.__new__`.
- Add `MessageApplication.__hash__`.
- Add `MessageApplication.__eq__`.
- Add `MessageApplication.precreate`.
- Add `MessageApplication.copy`.
- Add `MessageApplication.copy_with`.
- Add `MessageApplication._create_empty`.
- Add `MessageApplication.partial`.

ext.slash
- `abort` call from a component command is now handled as intended (so always creates a new message).

ext.plugin_loader
- Add `Plugin.get_module_proxy`.
- Add `Plugin.iter_loaded_plugins_in_directory`.
- Loading a `Plugin` of an `__init__` file now scans already loaded plugins directly under it and assigns them to the
module as intended. This should stop random looking `NameError`-s on reload if the file's structure is incorrect.

Bug Fixes

- `Channel.audience` returned the speakers.
- `Channel.speakers` returned the audience.
- `Client.owners_access` and `Client.activate_authorization_code` used `parse_` instead of `validate_` on input
resulting `AttributeError`. (from 1.3.25) (Gilgamesh8939)
- `Embed.__new__`'s `title` parameter was not converted to string as intended.

Renames, Deprecation & Removals

- Remove `ChannelMetadataBase.precreate`.
- Rename `Channel.channel_list` to `.channels` (for consistency).
- Deprecate `Channel.channel_list`.

1.3.26

Improvements

- Add `EmbedFieldBase`.
- Add `EmbedThumbnail.__hash__`.
- Add `EmbedThumbnail.contents`.
- Add `EmbedThumbnail.iter_contents`.
- `EmbedThumbnail` now supports rich attribute exceptions.
- Add `EmbedVideo.__hash__`.
- Add `EmbedVideo.contents`.
- Add `EmbedVideo.iter_contents`.
- `EmbedVideo` now supports rich attribute exceptions.
- Add `EmbedImage.__hash__`.
- Add `EmbedImage.contents`.
- Add `EmbedImage.iter_contents`.
- `EmbedImage` now supports rich attribute exceptions.
- Add `EmbedProvider.__hash__`.
- Add `EmbedProvider.contents`.
- Add `EmbedProvider.iter_contents`.
- `EmbedProvider` now supports rich attribute exceptions.
- Add `EmbedAuthor.__hash__`.
- Add `EmbedAuthor.contents`.
- Add `EmbedAuthor.iter_contents`.
- `EmbedAuthor` now supports rich attribute exceptions.
- Add `EmbedFooter.__hash__`.
- Add `EmbedFooter.contents`.
- Add `EmbedFooter.iter_contents`.
- `EmbedFooter` now supports rich attribute exceptions.
- Add `EmbedType`.
- Add `Embed.iter_fields`.
- `Embed.iter_contents` now reflects display order. (This applies to `.contents` too ofc.)
- Add `Embed.clean_copy`.
- Add `EmbedAuthor.clean_copy`.
- Add `EmbedField.clean_copy`.
- Add `EmbedFooter.clean_copy`.
- Add `EmbedImage.clean_copy`.
- Add `EmbedProvider.clean_copy`.
- Add `EmbedThumbnail.clean_copy`.
- Add `EmbedVideo.clean_copy`.
- Add `Embed.__hash__`.
- Add `Guild.max_stage_channel_video_users`.
- Add `max_video_channel_users` audit log converter.
- Add `max_stage_video_channel_users` audit log converter.
- Add `use_soundboard` permission.
- Add `AuditLogEvent.soundboard_sound_create`.
- Add `AuditLogEvent.soundboard_sound_edit`.
- Add `AuditLogEvent.soundboard_sound_delete`.
- Add `AuditLogEvent.onboarding_prompt_create`.
- Add `AuditLogEvent.onboarding_prompt_update`.
- Add `AuditLogEvent.onboarding_prompt_delete`.
- Add `AuditLogEvent.onboarding_screen_create`.
- Add `AuditLogEvent.onboarding_screen_update`.
- Add `create_guild_expressions` permission.
- Add `create_events` permission.
- Add `use_external_sounds` permission.
- Add `VoiceChannelEffectAnimationType`.
- Add `VoiceChannelEffect`.
- Add `Client.events.voice_channel_effect`.
- `FlagBase.update_by_keys` now supports any shift if they are given in `_(\d+)` format.
- Add `keywords` converter to audit logs.
- Add `regex_patterns` converter to audit logs.
- Add `excluded_keywords` converter to audit logs.
- Add `default_channel_ids` converter to audit logs.
- Add `prompts` converter to audit logs.
- Update `permission_overwrites` audit log converters to reflect the new api.
- Update (channel) `type` audit log converter to reflect the new api.
- Add `(onboarding prompt) `type` audit log converter.
- Add `in_onboarding` converter to audit logs.
- Add `options` converter to audit logs.
- Add `required` converter to audit logs.
- Add `single_select` converter to audit logs.
- `AuditLogChange` instances now supports rich attribute errors.
- `IconSlot` and `IconType` now supports new `v2_a_` icon prefixes.
- `UserBase.avatar_decoration_url` and `.avatar_decoration_url_as` now supports the new avatar decorations.

Bug Fixes

- `EmbedThumbnail.copy` returned the same instance.
- `EmbedThumbnail.copy_with` returned the same instance.
- `EmbedImage.copy` returned the same instance.
- `EmbedImage.copy_with` returned the same instance.
- `EmbedAuthor.copy` returned the same instance.
- `EmbedAuthor.copy_with` returned the same instance.
- `EmbedFooter.copy` returned the same instance.
- `EmbedFooter.copy_with` returned the same instance.
- `auto_moderation_action_execution` event parsers were not updated to use the updated api.
- `auto_moderation_rule_actions` audit log converters were not updated to use the updated api.
- `SetupFunction.__call__` did not populate `**keyword_parameters` as intended. (Anri6175)

Renames, Deprecation & Removals

- Rename `EmbedAuthor.proxy_icon_url` to `.icon_proxy_url`.
- Deprecate `EmbedAuthor.proxy_url_url`.
- Rename `EmbedFooter.proxy_icon_url` to `.icon_proxy_url`.
- Deprecate `EmbedFooter.proxy_url_url`.
- Rename `EmbedCore` to `Embed`.
- Remove & Deprecate `EmbedCore` reference.
- Remove & Deprecate `EmbedBase` reference.
- Rename `Guild.max_video_channel_users` to `.max_voice_channel_video_users`
- Deprecate `Guild.max_video_channel_users`.
- Rename `Permission`'s `manage_emojis_and_stickers` to `manage_guild_expressions`.
- Deprecate `Permission`'s `manage_emojis_and_stickers`.
- Rename `AuditLogEvent.auto_moderation_rule_edit` to `.auto_moderation_rule_update`.
- Rename `AuditLogEvent.role_prompt_edit` to `.role_prompt_update`.
- Deprecate `AuditLogEvent.auto_moderation_rule_edit`.
- Deprecate `AuditLogEvent.role_prompt_edit`.
- Deprecate `Embed._data`.

1.3.25

Improvements

- Add `Stage.guild_id`.
- Add `Stage.channel_id`.
- Add `Stage.partial`.
- Repurpose `Stage.__new__`, rename to `.from_data`.
- Add `Stage.to_data`.
- Add `Stage.__new__`.
- Add `Stage.precreate`.
- Add `Stage.copy`.
- Add `Stage.copy_with`.
- `Stage.__eq__` now supports partial instances.
- `Stage.__hash__` now supports partial instances.
- `Stage._delete` will no longer remove itself from the cache.
- `Client`'s stage endpoints now support `reason` parameter (except the get one ofc).
- Add `ScheduledEventSubscribeEvent.to_data`.
- Repurpose `ScheduledEventSubscribeEvent.__new__`, rename to `.from_data`.
- Add `ScheduledEventSubscribeEvent.__new__`.
- Add `ScheduledEventSubscribeEvent.copy`.
- Add `ScheduledEventSubscribeEvent.copy_with`.
- Add `ScheduledEventSubscribeEvent.guild`.
- Add ScheduledEventSubscribeEvent.user`.
- Add `ScheduledEventEntityMetadataBase.location`.
- Add `ScheduledEventEntityMetadataBase.speaker_ids`.
- Add `ScheduledEventEntityMetadataBase.iter_speaker_ids`.
- Add `ScheduledEventEntityMetadataBase.speakers`.
- Add `ScheduledEventEntityMetadataBase.iter_speakers`.
- Add `ScheduledEventEntityMetadataBase.copy`.
- Add `ScheduledEventEntityMetadataBase.copy_with`.
- Repurpose `ScheduledEvent.__new__`, rename to `.from_data`.
- Add `ScheduledEvent.__new__`.
- Add `ScheduledEvent.to_data`.
- `ScheduledEvent.__hash__` now supports partial instances.
- `ScheduledEvent.__eq__` now supports partial instances.
- Add `ScheduledEvent.copy`.
- Add `ScheduledEvent.copy_with`.
- Add `ScheduledEvent.precreate`.
- Add `ScheduledEvent.partial`.
- Add `ScheduledEvent.iter_sku_ids`.
- Add `ScheduledEvent.from_data_is_created`.
- Add `ScheduledEventEntityMetadataBase.from_keyword_parameters`.
- Add `ScheduledEventEntityMetadataBase.copy_with_keyword_parameters`.
- Add `ApplicationFlag.auto_moderation_rule_create_badge`.
- Add `ChannelFlag.guild_resource_channel`.
- Add `ChannelFlag.clyde_ai`.
- Add `ChannelFlag.scheduled_for_deletion`.
- Add `GuildProfileFlag.home_actions_started`.
- Add `GuildProfileFlag.home_actions_completed`.
- Add `GuildProfileFlag.auto_moderation_quarantined_name_or_nick`.
- Add `GuildProfileFlag.auto_moderation_quarantined_bio`.
- Add `UserFlag.collaborator`.
- Add `UserFlag.collaborator_restricted`.
- Add `Color.from_hsl_tuple`.
- Add `Color.as_hsl_tuple`.
- Add `Color.from_hsl_float_tuple`.
- Add `Color.as_hsl_float_tuple`.
- Add `ScheduledEvent.url`.

Bug Fixes

- `shard_ready_waiter` was not set correct, always producing timeout. (Caused `ready` to be called later as intended.)
- `guild.scheduled_events` were populated incorrectly.

1.3.24

Improvements

- Add `UserBase.get_status_by_platform`.
- Add `AutoModerationActionMetadataBlock`.
- Add `AutoModerationAction.custom_message`.
- Add `AutoModerationActionMetadataBase.custom_message`.
- Add `OnboardingPromptOption`.
- Add `OnboardingPrompt`.
- Add `OnboardingPromptType`.
- Add `OnboardingScreen`.
- Add `Client.onboarding_screen_get`.
- Add `DiscordHTTPClient.onboarding_screen_get`.
- Add `RATE_LIMIT_GROUPS.onboarding_screen_get`.

1.3.23

Improvements

- Add `ApplicationCommandPermission.copy_with`.
- Add `ApplicationCommandPermission.iter_permission_overwrites`.
- Add `ApplicationCommandOptionChoice.with_translation`.
- Add `ApplicationCommandOptionChoice.copy_with`.
- Add `ApplicationCommandOption.with_translation`.
- Add `ApplicationCommandOption.copy_with`.
- Add `ApplicationCommandOption.iter_choices`.
- Add `ApplicationCommandOption.iter_options`.
- Add `ApplicationCommand.copy_with`.
- Add `ApplicationCommand.with_translation`.
- Add `ApplicationCommand.iter_options`.
- Add `ApplicationCommandOption.metadata`.
- Add `ApplicationCommandOptionType.metadata_type`.
- Add `ApplicationCommandOptionMetadataBase`.
- Add `ApplicationCommandOptionMetadataChannel`.
- Add `ApplicationCommandOptionMetadataFloat`.
- Add `ApplicationCommandOptionMetadataInteger`.
- Add `ApplicationCommandOptionMetadataNested`.
- Add `ApplicationCommandOptionMetadataNumeric`.
- Add `ApplicationCommandOptionMetadataParameter`.
- Add `ApplicationCommandOptionMetadataPrimitive`.
- Add `ApplicationCommandOptionMetadataString`.
- Add `ApplicationCommandOptionMetadataSubCommand`.
- Add `ERROR_CODES.user_cannot_burst_react`.
- Add `ERROR_CODES.cannot_delete_guild_subscription_integration`.
- Add `ERROR_CODES.activity_launch_age_gated`.
- Add `ERROR_CODES.new_owner_ineligible_for_subscription`.
- Add `ERROR_CODES.max_blocked_users`.

Bug Fixes

- `reconstruct_payload` put an extra line-break after a long string.
- `ApplicationCommand.guild` raised `KeyError` if the guild was not cached.

Renames, Deprecation & Removals

- Deprecate `ApplicationCommandPermission.add_permission_overwrite`.
- Deprecate `ApplicationCommandOptionChoice.apply_translation`.
- Deprecate `ApplicationCommandOption.add_option`.
- Deprecate `ApplicationCommandOption.add_choice`.
- Deprecate `ApplicationCommandOption.apply_translation`.
- Deprecate `ApplicationCommand.add_option`.
- Deprecate `ApplicationCommand.apply_translation`.
- Rename `invalid_activity_launch_afk_channel` to `activity_launch_afk_channel`.

Page 9 of 29

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.