Hata

Latest version: v1.3.77

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

Scan your dependencies

Page 8 of 29

1.3.34

Improvements

- `Client.guild_get_all` now also updates the guilds' approximate counts.
- Add `AttachmentFlag`.
- Add `Attachment.flags`.
- Add `ERROR_CODES.cannot_enable_onboarding_requirements_not_met`.
- Add `ERROR_CODES.cannot_update_onboarding_requirements_not_met`.
- Add `OnboardingMode`.
- Add `OnboardingScreen.mode`.
- Add `Client.onboarding_screen_edit`.
- Add `DiscordHTTPClient.onboarding_screen_edit`.
- Add `RATE_LIMIT_GROUPS.onboarding_screen_edit`.

Renames, Deprecation & Removals

- Rename `DiscordHTTPClient.guild_get_all` to `.guild_get_chunk`.
- Rename `RATE_LIMIT_GROUPS.guild_get_all` to `.guild_get_chunk`.

1.3.33

Improvements

- Add `ChannelFlag.hide_media_download_option`.
- Add `ChannelFlag.media_channel`.
- Add `ChannelFlag.summaries_disabled`.
- Add `ChannelFlag.role_subscription_template_preview_channel`.
- Add `ChannelFlag.broadcasting`.
- Add `ChannelMetadataGuildMedia`.
- Add `ChannelMetadataGuildForumBase`.
- Add `ChannelTypeFlag.forum`. (This is an internal object.)
- Add `ChannelType.guild_media`.
- Add `Channel.is_guild_media`.
- Add `Channel.is_in_group_forum`.
- `guild_stage` channels are now textual. Applies to both permissions and checks.
- `Client.forum_thread_create` now allows media channels too.
- `Client.forum_tag_delete` now allows media channel too.
- `Client.forum_tag_edit` now allows media channel too.
- `Client.forum_tag_create` now allows media channel too.
- Add `RoleFlag`.
- Add `Role.flags`.
- Add `RoleFlags` change converter to audit logs.
- Add `flags` parameter to `Client.role_create` and `.role_edit`.
- Add `AudioSetting`.
- Add `RawAudio`.

ext.plugin_loader
- Test directories and files are not marked as plugins anymore.

ext.slash
- Add `InteractionResponse.__eq__`.

Bug Fixes

- Fix `TypeError` in `User.__hash__`. Occurred at the case of partial users.

1.3.32

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

1.3.31

Improvements

- Add shortcut to `Client.request_soundboard_sounds` if there is nothing to do.
- Add `SoundboardSound.is_custom_sound`.
- Add `SoundboardSound.is_default_sound`.
- Add `Guild.iter_soundboard_sounds`.
- When receiving `SoundboardSoundsEvent`, the guild's soundboard cache will be completely re-populated.
- Add `soundboard_sounds` parameter to `Guild.precreate`.
- Add `Guild.get_soundboard_sound`.
- Add `Guild.get_soundboard_sound_like`.
- Add `Guild.get_soundboard_sounds_like`.

Bug fixes

ext.slash
- `file` parameter was not propagated when responding on not acknowledged component interactions.

ext.plugin_loader
- `Plugins` were sorted incorrectly causing them to be loaded in bad order. This caused deadlock.

1.3.30

Improvements

- Add `--profile` parameter to `run` command.
- Add `raise_if_missing_or_empty` parameter to `get_str_env`.
- `get_bool_env` now accepts `0` and `1` too.
- Add `scaffold` command (experimental).
- Add `.env` file loading built in. This also means that the `.env` files will be finally found (poggers).
- Add `UserBase.display_name`.
- `GuildJoinRequestFormResponse` now support rich attribute exceptions.
- Repurpose and rename `GuildJoinRequestFormResponse.__new__` to `.from_data`.
- Add `GuildJoinRequestFormResponse.to_data`.
- Add `GuildJoinRequestFormResponse.__new__`.
- Add `GuildJoinRequestFormResponse.copy`.
- Add `GuildJoinRequestFormResponse.copy_with`.
- Repurpose and rename `GuildJoinRequestDeleteEvent.__new__` to `.from_data`.
- Add `GuildJoinRequestDeleteEvent.to_data`.
- Add `GuildJoinRequestDeleteEvent.__new__`.
- Add `GuildJoinRequestDeleteEvent.copy`.
- Add `GuildJoinRequestDeleteEvent.copy_with`.
- Repurpose and rename `GuildJoinRequest.__new__` to `.from_data`.
- Add `GuildJoinRequest.to_data`.
- Add `GuildJoinRequest.__new__`.
- Add `GuildJoinRequest.copy`.
- Add `GuildJoinRequest.copy_with`.
- Add `GuildJoinRequest.iter_form_responses`.
- Repurpose and rename `GuildWidgetUser.__init__` to `.from_data`.
- Add `GuildWidgetUser.to_data`.
- Add `GuildWidgetUser.__new__`.
- Add `GuildWidgetUser.copy`.
- Add `GuildWidgetUser.copy_with`.
- Repurpose and rename `GuildWidget.__init__` to `.from_data`.
- Add `GuildWidget.__new__`.
- Add `GuildWidget.to_data`.
- Add `GuildWidget.copy`.
- Add `GuildWidget.copy_with`.
- Add `GuildWidget.iter_channels`.
- Add `GuildWidget.iter_users`.
- Add `parse_message_jump_url`.
- Exception is now raised if loading `.env` file fails.
- Update `GuildPremiumPerks.sound_limit`.
- Add `SOUNDBOARD_SOUNDS`.
- Add `SoundboardSound`.
- Add `create_partial_soundboard_sound_from_id`.
- Add `create_partial_soundboard_sound_from_partial_data`.
- Add `create_partial_sticker_data`.
- Add `create_partial_sticker_from_partial_data`.
- Add `RATE_LIMIT_GROUPS.soundboard_sound_get_all_default`.
- Add `DiscordHTTPClient.soundboard_sound_get_all_default`.
- Add `Client.soundboard_sound_get_all_default`.
- Add `RATE_LIMIT_GROUPS.soundboard_sound_create`.
- Add `Client.request_soundboard_sounds`.
- Add `SoundboardSoundsEvent`.
- Add `Client.events.soundboard_sound_create`.
- Add `Client.events.soundboard_sound_update`.
- Add `Client.events.soundboard_sound_delete`.
- Add `Client.events.soundboard_sounds`.
- Add `Guild.soundboard_sounds`.
- Add default event handler `SoundboardSoundsEventHandler` for `Client.events.soundboard_sounds`.
- Add `Guild.soundboard_sounds_cached`.
- Add `Client.soundboard_sound_create`.
- Add `Client.soundboard_sound_delete`.
- Add `Client.soundboard_sound_edit`.
- Add `RATE_LIMIT_GROUPS.soundboard_sound_delete`.
- Add `RATE_LIMIT_GROUPS.soundboard_sound_edit`.
- Add `DiscordHTTPClient.soundboard_sound_create`.
- Add `DiscordHTTPClient.soundboard_sound_delete`.
- Add `DiscordHTTPClient.soundboard_sound_edit`.

Bug fixes

- `run` command now stops the event loop if interrupted during connection.
- `run --console` command was not writing "interrupted" (when interrupted obviously) as expected.
- `Client.channel_create` identified `channel_type` parameter as extra.

Renames, Deprecation & Removals

- Rename `GuildRequestFormResponse` to `GuildJoinRequestFormResponse`.
- Deprecate `GuildRequestFormResponse`.
- Rename `GuildJoinRequest.last_seen` to `.last_seen_at`.
- Deprecate `GuildJoinRequest.last_seen`.
- Deprecate `GuildWidgetUser.mention`.
- Deprecate `GuildWidgetUser.mention_nick`.
- Deprecate `MESSAGE_JUMP_URL_RP` import. Use `parse_message_jump_url` instead.
- Deprecate `Sticker.to_partial_data`. Use `create_partial_sticker_data instead.
- Deprecate `Sticker.from_partial_data`. Use `create_partial_sticker_from_partial_data` instead.
- Rename `Client.sticker_guild_get_all` to `.sticker_get_all_guild`.
- Rename `DiscordHTTPClient.sticker_guild_get_all` to `.sticker_get_all_guild`.
- Rename `RATE_LIMIT_GROUPS.sticker_guild_get_all` to `.sticker_get_all_guild`.
- Deprecate `Client.sticker_guild_get_all`.
- Rename `Client.sticker_guild_create` to `.sticker_create`.
- Rename `DiscordHTTPClient.sticker_guild_create` to `.sticker_create`.
- Rename `RATE_LIMIT_GROUPS.sticker_guild_create` to `.sticker_create`.
- Deprecate `Client.sticker_guild_create`.
- Rename `Client.sticker_guild_edit` to `.sticker_edit`.
- Rename `DiscordHTTPClient.sticker_guild_edit` to `.sticker_edit`.
- Rename `RATE_LIMIT_GROUPS.sticker_guild_edit` to `.sticker_edit`.
- Deprecate `Client.sticker_guild_edit`.
- Rename `Client.sticker_guild_delete` to `.sticker_delete`.
- Rename `DiscordHTTPClient.sticker_guild_delete` to `.sticker_delete`.
- Rename `RATE_LIMIT_GROUPS.sticker_guild_delete` to `.sticker_delete`.
- Deprecate `Client.sticker_guild_delete`.
- Rename `Client.sticker_guild_get` to `.sticker_get_guild`.
- Rename `DiscordHTTPClient.sticker_guild_get` to `.sticker_get_guild`.
- Rename `RATE_LIMIT_GROUPS.sticker_guild_get` to `.sticker_get_guild`.
- Deprecate `Client.sticker_guild_get`.
- Deprecate `Client.request_members`.
- Rename `Client.request_members` to `.request_users`.
- Deprecate `Client.request_all_members_of`.
- Rename `Client.request_all_members_of` to `.request_all_users_of`.
- Rename `IntentFlag.guild_emojis_and_stickers` to `.guild_expressions`.
- Deprecate `IntentFlag.guild_emojis_and_stickers`.

1.3.29

Improvements

- Add `InteractionEvent.channel_id` replaced with `InteractionEvent.channel`.
- Add `InteractionEvent.user_id`.
- Add `MessageCall`.
- Add `create_partial_channel_data`.
- Add `Message.call`.
- Add `Message.__new__` back.
- Add `Message.iter_mentioned_users`.
- Add `Message.iter_mentioned_role_ids`.
- Add `Message.iter_mentioned_channels`.
- Add `Message.iter_mentioned_channels_cross_guild`.
- Add `Message.iter_mentioned_roles`.
- Add `Message.copy`.
- Add `Message.copy_with`.
- `Message.__eq__` now supports partial instances.
- `Message.__hash__` now supports partial instances.
- Add `ReactionMappingLine.__hash__`.
- Add `stage_start` message content converter.
- Add `stage_end` message content converter.
- Add `stage_speaker` message content converter.
- Add `stage_topic_change` message content converter.
- Add `auto_moderation_action` message content converter.

Bug fixes

- `call` message content converter no longer raises `AttributeError`.

Renames, Deprecation & Removals

- Deprecate `channel_id` parameters of `InteractionEvent`. Use `channel` instead.
- `create_partial_channel_from_data` no longer accepts `None`.
- Rename `Message.cross_mentions` to `.mentioned_channels_cross_guild`.
- Deprecate `Message.cross_mentions`.
- Rename `Message.everyone_mention` to `.mentioned_everyone`.
- Deprecate `Message.everyone_mention`.
- Rename `Message.user_mentions` to `.mentioned_users`.
- Deprecate `Message.user_mentions`.
- Rename `Message.role_mention_ids` to `.mentioned_role_ids`.
- Deprecate `Message.role_mention_ids`.
- Rename `Message.has_user_mentions` to `.has_mentioned_users`.
- Deprecate `Message.has_user_mentions`.
- Rename `Message.has_role_mentions` to `.has_mentioned_roles`.
- Deprecate `Message.has_role_mentions`.
- Deprecate `Message.has_partial`.
- Deprecate `Message.has_deleted`.
- Rename `Message.has_cross_mentions` to `.has_mentioned_channels_cross_guild`.
- Deprecate `Message.has_cross_mentions`.
- Remove `UnknownCrossMention` (Not used).
- Rename `Message.has_channel_mentions` to `.has_mentioned_channels`.
- Deprecate `Message.has_channel_mentions`.
- Deprecate `Message.custom`.

Page 8 of 29

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.