Hata

Latest version: v1.3.77

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

Scan your dependencies

Page 24 of 29

1.1.96

Summary

Add new emojis.

Improvements

- Add `ERROR_CODES.max_stickers`.
- Add `ERROR_CODES.rate_limit_prune`.
- Add `MessageType.context_command`.
- `Message.content` defaults to `None`.
- Add `Message.has_activity`.
- Add `Message.has_application`.
- Add `Message.has_application_id`.
- Add `Message.has_attachments`.
- Add `Message.has_components`.
- Add `Message.has_content`.
- Add `Message.has_cross_mentions`.
- Add `Message.has_referenced_message`.
- Add `Message.has_deleted`.
- Add `Message.has_edited_at`.
- Add `Message.has_embeds`.
- Add `Message.has_everyone_mention`.
- Add `Message.has_interaction`.
- Add `Message.has_nonce`.
- Add `Message.has_pinned`.
- Add `Message.has_reactions`.
- Add `Message.has_role_mention_ids`.
- Add `Message.has_stickers`.
- Add `Message.has_thread`.
- Add `Message.has_tts`.
- Add `Message.has_user_mentions`.
- Add `ApplicationCommand.is_context_command`.
- Add `ApplicationCommand.is_slash_command`.
- Add `send_messages_in_threads` permission.
- Add `ChannelGuildUndefined.permissions_for_roles`.
- Add `217` new emojis and fix `6` old alternative names.

Bug Fixes

- `GuildProfile.get_top_role` could return bad role. (from 1.1.94)
- `convert_thread_created` was not handling cases when guild is not cached.
- `Message.__len__` could return bad value for multiple message types.
- `ChannelStore.permissions_for_roles` returned `None`.
- `ChannelDirectory.permissions_for_roles` returned `None`.

ext.extension_loaded
- `.{}_all` methods could try to load the same extension multiple time.
- Python sets module variables late, so check globals instead.

Renames, Deprecation & Removals

- Deprecate `MessageType.application_command`.
- Rename `MessageType.application_command` to `.slash_command`.
- Rename `Permission.use_public_threads` to `.create_public_threads`.
- Rename `Permission.can_use_public_threads` to `.can_create_public_threads`.
- Rename `Permission.deny_use_public_threads` to `.deny_create_public_threads`.
- Rename `Permission.allow_use_public_threads` to `.allow_create_public_threads`.
- Deprecate `Permission.can_create_public_threads`.
- Deprecate `Permission.deny_create_public_threads`.
- Deprecate `Permission.allow_create_public_threads`.
- Remove unused `Permission.handle_overwrite`.
- Rename `Permission.can_use_private_threads` to `.can_create_private_threads`.
- Rename `Permission.deny_use_private_threads` to `.deny_create_private_threads`.
- Rename `Permission.allow_use_private_threads` to `.allow_create_private_threads`.
- Deprecate `Permission.can_create_private_threads`.
- Deprecate `Permission.deny_create_private_threads`.
- Deprecate `Permission.allow_create_private_threads`.

1.1.95

Summary

Sync slash extension's type names with recent application command target type addition.

Improvements

ext.extension_loaded
- `Extension.is_loaded` is a method now (from property).
- Add `Extension.is_unsatisfied`.
- Add `require`.

Bug Fixes

- No presence intent reduces large guild size to `0` so check presence intent when requesting guild members.
(BrainDead6105)
- Fix a bad intent masking, ops.

Renames, Deprecation & Removals

ext.slash
- Rename `SlashCommand` to `SlasherApplicationCommand`.
- Rename `SlashCommandParameterConversionError` to `SlasherApplicationCommandParameterConversionError`
- Rename `SlashCommandWrapper` to `SlasherCommandWrapper`.
- Rename `SlashCommandError` to `SlasherCommandError`.
- Rename `SlashCommandPermissionOverwriteWrapper` to `SlasherApplicationCommandPermissionOverwriteWrapper`.
- Rename `SlashCommandParameterConfigurerWrapper` to `SlasherApplicationCommandParameterConfigurerWrapper`.
- Rename `SlashCommandCategory` to `SlasherApplicationCommandCategory`.
- Rename `SlashCommandFunction` to `SlasherApplicationCommandFunction`.
- Rename `SlashCommand` to `SlasherApplicationCommand`.
- Rename `._add_slash_command` to `._add_application_command`.
- Rename `._remove_slash_command` to `._remove_application_command`.
- Rename `.get_should_remove_slash_commands` to `get_should_remove_application_commands`.
- Rename `._register_slash_command` to `._register_application_command`.
- Rename `._unregister_slash_command` to `._unregister_application_command`.

1.1.94

Summary

Make multiple entities to weakly bound to other ones.

Improvements

- Add `preconvert_float`.
- Add `message.channel_id` attribute.
- Add `message.guild_id` attribute.
- `Message.channel` is now a property.
- Add `Message.role_mention_ids`.
- `Message.role_mentions` is now a property.
- `Message` instances are now weakly bound to their channel, meaning messages can exist without their channel.
After this channel cache will not be needed for message instances to be created.
- `InteractionEvent.__iter__` now iterates `type, user, interaction` (from `channel, user, interaction`).
- Add `InteractionEvent.channel_id` attribute.
- Add `InteractionEvent.guild_id` attribute.
- Add `InteractionEvent.channel` is now a property.
- Add `InteractionEvent.guild` is now a property.
- `InteractionEvent` is now weakly bound to it's channel and guild.
- Add `ApplicationCommandTargetType`.
- Add `ApplicationCommand.target_type`.
- `ApplicationCommand.description` is now optional for context application commands.
- Add `ApplicationCommandInteraction.resolved_messages`.
- Add `ApplicationCommandInteraction.target_id`.
- Add `ApplicationCommandInteraction.resolve_entity`.
- Add `ApplicationCommandInteraction.target`.
- `ApplicationCommandInteraction.options` is now `tuple`, `None` (from `list`, `None`)
- Add `id_to_datetime`.
- Add `id_to_unix_time`.
- Add `datetime_to_id`.
- Add `unix_time_to_id`.
- Add `datetime_to_unix_time`.
- Add `datetime_to_timestamp`.
- `ChannelGuildBase.guild_id`.
- `ChannelGuildBase.guild` is now a property.
- To `client.events.channel_delete` now only 3 parameter is passed (`client`, `channel`, from 3: `client`, `channel`,
`guild`).
- Guild channels are now weakly bound to their guild.
- User guild profiles are now weakly bound to their guild.
- Add `ChannelGuildBase.parent_id`.
- `ChannelGuildBase.parent` is now a property.
- Add `UserBase.get_guild_profile_for`.
- Add `UserBase.iter_guild_profiles`.
- `GuildProfile.roles` is now a property.
- Add `GuildProfile.role_ids`.
- `ClientUserBase.has_role` could return `False` for default role.
- `Emoji.roles` is now a property.
- Add `Emoji.role_ids`.
- Add `iterable_of_instance_or_id_to_snowflakes`.
- `.overwrites` is now a dictionary (from list).
- Add `PermissionOverwrite.target_id`.
- Add `PermissionOverwrite.target_type`.
- Remove `._parse_overwrites`, add `parse_permission_overwrites` instead.
- Add `CHANNEL_TYPES`.
- Add `Guild.public_updates_channel_id`.
- `Guild.public_updates_channel` is now a property.
- Add `Guild.afk_channel_id`.
- `Guild.afk_channel` is now a property.
- Add `Guild.rules_channel_id`.
- `Guild.rules_channel` is now a property.
- Add `Guild.system_channel_id`.
- `Guild.system_channel` is now a property.
- Add `Guild.widget_channel_id`.
- `Guild.widget_channel` is now a property.
- Add `Client.guilds`.
- Add `WebhookBase.channel_id`.
- `WebhookBase.channel` is now a property.
- `User.guild_profiles` is now `guild_id` - `GuildProfile` relation (from `Guild` - `GuildProfile`).
- `User.thread_profiles` is now `None` / `thread_id` - `ThreadProfile` relation (from `None` /
`ChannelThread` - `ThreadProfile`).
- Add `Role.guild_id`.
- `Role.guild` is now a property.
- Add `IntegrationDetail.role_id`.
- `IntegrationDetail.role` is now a property.
- Add `ChannelThread.invitable`.
- Add `invitable` parameter to `ChannelThread.precreate`.
- Add `open` parameter to `ChannelThread.precreate`.
- Add `DiscordHTTPClient.guild_thread_get_all_active`.
- Add `RATE_LIMIT_GROUPS.guild_thread_get_all_active`.
- Add `Client.guild_thread_get_all_active`.
- Add `Emoji._create_unicode`.
- Add `ScheduledEventEntityMetadata`.
- Add `StageEntityMetadata`.
- Add `ScheduledEvent.channel_id`.
- Add `ScheduledEvent.entity_id`.
- Add `ScheduledEvent.entity_metadata`.
- Add `ScheduledEvent.image`.
- Add `ScheduledEvent.name`.
- Add `ScheduledEvent.scheduled_end`.
- Add `ScheduledEvent.scheduled_start`.
- Add `ScheduledEvent.__new__`.
- Add `ScheduledEvent._set_attributes`.
- Add `ScheduledEvent.__repr__`.
- Add `ScheduledEvent.entity`.
- Add `ScheduledEvent.channel`.
- Add `ScheduledEvent.guild`.
- Add `ScheduledEventEntityType.metadata_type`.
- Add `ScheduledEvent.entity_metadata`.
- Add `ScheduledEventEntityMetadata`.
- Add `StageEntityMetadata`.

ext.slash
- Add `target` parameter to `.interactions` decorator.
- Add `target` parameter for context commands.

Bug Fixes

- Fix an `AttributeError` in `Guild._delete`.
- `ChannelThread.__new__` was not setting `owner_id`.
- Deleted roles could not resolve removing their references correctly.
- `ApplicationCommandPermissionOverwrite.target` could raise `NameError`.

ext.slash
- Fix `AttributeError` in `SlashCommandParameterConfigurerWrapper`.

Renames, Deprecation & Removals

- Deprecate `id_to_time`.
- Rename `parse_time` to `timestamp_to_datetime`
- Deprecate `time_to_id`.
- Remove `Emoji._delete`.
- Remove `Sticker._delete`.
- Remove `PermissionOverwrite.target_role`.
- Remove `PermissionOverwrite.target_user_id`.
- Rename `.overwrites` to `.permission_overwrites`.
- Rename `._invalidate_perm_cache` to `._invalidate_permission_cache`
- Rename `._cache_perm` to `._permission_cache`.
- Rename `overwrites` parameter of `cr_pg_channel_object` to `permission_overwrites`.
- Deprecate `overwrites` parameter of `cr_pg_channel_object`.
- Rename `cr_p_overwrite_object` to `cr_p_permission_overwrite_object`.
- Deprecate `cr_p_overwrite_object`.
- Rename `ApplicationCommandPermissionOverwrite.type` to `.target_type`.
- Rename `ApplicationCommandPermissionOverwriteType` to `ApplicationCommandPermissionOverwriteTargetType`.
- Rename `ApplicationCommandPermission.add_overwrite` to `.add_permission_overwrite`.
- Rename `InteractionResponseTypes` to `INTERACTION_RESPONSE_TYPES`.
- Remove `PermissionOverwrite.id`.
- Remove `PermissionOverwrite.type`.
- Rename `CHANNEL_TYPES` to `CHANNEL_TYPE_MAP`.
- Deprecate `Client.thread_get_all_active`.
- Rename `Client.thread_get_all_active` to `.channel_thread_get_all_active`.
- Rename `RATE_LIMIT_GROUPS.thread_get_chunk_active` to `.channel_thread_get_chunk_active`.
- Rename `DiscordHTTPClient.thread_get_chunk_active` to `.channel_thread_get_chunk_active`.
- Rename `request_thread_channels` to `request_channel_thread_channels`.
- Deprecate `Client.thread_get_all_archived_private`.
- Rename `Client.thread_get_all_archived_private` to `.channel_thread_get_all_archived_private`.
- Rename `DiscordHTTPClient.thread_get_chunk_archived_private` to `.channel_thread_get_chunk_archived_private`.
- Rename `RATE_LIMIT_GROUPS.thread_get_chunk_archived_private` to `.channel_thread_get_chunk_archived_private`.
- Deprecate `Client.thread_get_all_archived_public`.
- Rename `Client.thread_get_all_archived_public` to `.channel_thread_get_all_archived_public`.
- Rename `DiscordHTTPClient.thread_get_chunk_archived_public` to `.channel_thread_get_chunk_archived_public`.
- Rename `RATE_LIMIT_GROUPS.thread_get_chunk_archived_public` to `.channel_thread_get_chunk_archived_public`.
- Deprecate `Client.thread_get_all_self_archived`.
- Rename `Client.thread_get_all_self_archived` to `.channel_thread_get_all_self_archived`.
- Rename `DiscordHTTPClient.thread_get_chunk_self_archived` to `.channel_thread_get_chunk_self_archived`.
- Rename `RATE_LIMIT_GROUPS.thread_get_chunk_self_archived` to `.channel_thread_get_chunk_self_archived`.


ext.slash
- Rename `SlashCommand._overwrite` to `._permission_overwrites`.
- Rename `SlashCommandPermissionOverwriteWrapper._overwrite` to `._permission_overwrite`.
- Rename `SlashCommand.add_overwrite` to `.add_permission_overwrite`.
- Rename `SlashCommand._get_sync_permission_ids` to `._get_permission_sync_ids`.
- Rename `SlashCommand.get_permission_overwrite_for` to `.get_permission_overwrites_for`.

1.1.93

Summary

Fix threads a lil bit.

Improvements

- Add `AuditLogEvent.scheduled_event_create`.
- Add `AuditLogEvent.scheduled_event_update`.
- Add `AuditLogEvent.scheduled_event_delete`.
- Add `privacy_level` change key converter for audit logs.
- Add `ScheduledEventStatus`.
- Add `status` change key converter for audit logs.
- Add `ScheduledEventEntityType`.
- Add `entity_type` change key converter for audit logs.
- Add `sku_ids` change key converter for audit logs.
- Add `DiscordHTTPClient.greet`.
- Add `RATE_LIMIT_GROUPS.greet`.
- Add `AuditLog.threads`.
- Add `AuditLogIterator.threads`.
- Add `ScheduledEvent` converter for audit logs.
- Add `ChannelThread` converter for audit logs.
- Add `GuildFeature.hub`.
- Add `ChannelDirectory`.
- Add `ERROR_CODES.relationship_already_friends`.
- Add `ERROR_CODES.phone_verification_required`.
- Add `ERROR_CODES.cannot_friend_self`.
- Add `ERROR_CODES.invalid_country_code`.
- Add `SKUFeatureType`.
- Add `SKUGenre`.
- Add `SKUFlag`.
- Add `SKUAccessType`.
- Add `SKUType`.
- Add `EntitlementType`.
- Add `'tweet'` extra embed type.
- Add `DiscordHTTPClient.channel_directory_counts`.
- Add `RATE_LIMIT_GROUPS.channel_directory_counts`.
- Add `DiscordHTTPClient.channel_directory_get_all`.
- Add `RATE_LIMIT_GROUPS.channel_directory_get_all`.
- Add `DiscordHTTPClient.channel_directory_search`.
- Add `RATE_LIMIT_GROUPS.channel_directory_search`.
- Add `ERROR_CODES.guild_monetization_required`.
- Add `ERROR_CODES.unknown_scheduled_event`.
- Add `ERROR_CODES.unknown_scheduled_event_user`.
- Add `ERROR_CODES.unknown_stream`.
- Add `ERROR_CODES.negative_invoice_amount`.
- Add `ERROR_CODES.unknown_billing_profile`.
- Add `ERROR_CODES.unknown_payment_source`.
- Add `ERROR_CODES.unknown_subscriptions`.
- Add `ERROR_CODES.already_subscribed`.
- Add `ERROR_CODES.invalid_plan`.
- Add `ERROR_CODES.already_cancelled`.
- Add `ERROR_CODES.invalid_payment`.
- Add `ERROR_CODES.payment_source_required`.
- Add `ERROR_CODES.already_refunded`.
- Add `ERROR_CODES.invalid_billing_address`
- Add `ERROR_CODES.already_purchased`.
- `Entity.__str__` should not default to `.name`, instead to `.__repr__`.
- Update rate limits of `thread_create` endpoint.
- Update rate limits of `thread_join` endpoint.
- Update rate limits of `thread_create_from_message` endpoint.
- Add `RATE_LIMIT_GROUPS.GROUP_THREAD_CREATE`.
- Add `RATE_LIMIT_GROUPS.GROUP_THREAD_ACTION`.
- Update rate limits of `thread_leave` endpoint.
- Update rate limits of `thread_user_add` endpoint.
- Update rate limits of `thread_user_delete` endpoint.
- Update rate limits of `thread_self_settings_edit` endpoint.
- Update rate limits of `thread_get_chunk_archived_public` endpoint.
- Update rate limits of `thread_get_chunk_self_archived` endpoint.
- Update rate limits of `thread_get_chunk_archived_private` endpoint.
- Update rate limits of `thread_get_chunk_active` endpoint.
- Update rate limits of `thread_user_get_all` endpoint.
- Add `type_` parameter to `Client.thread_create`.
- Add `ThreadProfileFlag.has_interacted`.
- Add `ThreadProfileFlag.all_messages`.
- Add `ThreadProfileFlag.only_mentions`.
- Add `ThreadProfileFlag.no_messages`.

Bug Fixes

- Fix an `AttributeError` in `Client.guild_sync`. (Pichu0357)
- Fix a `NameError` in `EventThread.open_unix_connection`.
- Fix a `TypeError` in `EventThread.create_unix_connection`.
- `User.__new__` was not setting `.thread_profiles`.
- Fix an `AttributeError` in `Client.thread_create`.
- `ChannelThread._create_empty` was not setting `.thread_users`.

Renames, Deprecation & Removals

- Deprecate `AuditLogChange.attr`.
- Rename `AuditLogChange.attr` to `.attribute_name`.
- Rename `StagePrivacyLevel` to `PrivacyLevel`
- Add `DiscordHTTPClient.thread_create_private` to `.thread_create`.
- Add `RATE_LIMIT_GROUPS.thread_create_private` to `.thread_create`.
- Add `DiscordHTTPClient.thread_create_public` to `.thread_create_from_message`.
- Add `RATE_LIMIT_GROUPS.thread_create_public` to `.thread_create_from_message`.
- Add `DiscordHTTPClient.thread_settings_edit` to `.thread_self_settings_edit`.
- Add `RATE_LIMIT_GROUPS.thread_settings_edit` to `.thread_self_settings_edit`.

1.1.92

Summary

Add rich creation for rich activity and for sub activity types.

Improvements

- Add `is_url`.
- Add `application_id` parameter to `ActivityRich`.
- Add `assets` parameter to `ActivityRich`.
- Add `created_at` parameter to `ActivityRich`.
- Add `details` parameter to `ActivityRich`.
- Add `flags` parameter to `ActivityRich`.
- Add `id_` parameter to `ActivityRich`.
- Add `party` parameter to `ActivityRich`.
- Add `secrets` parameter to `ActivityRich`.
- Add `session_id` parameter to `ActivityRich`.
- Add `state` parameter to `ActivityRich`.
- Add `sync_id` parameter to `ActivityRich`.
- Add `timestamps` parameter to `ActivityRich`.
- Add `EventThread.create_unix_connection`.
- Add `EventThread.create_unix_server`.
- Add `ComponentBase._replace_direct_sub_components`.
- Add `ComponentBase._iter_direct_sub_components`.
- Add `AuditLogEvent.thread_create`.
- Add `AuditLogEvent.thread_update`.
- Add `AuditLogEvent.thread_delete`.
- Add `auto_archive_after` change key converter for audit logs.
- Add `default_auto_archive_after` change key converter for audit logs.
- Add `Client.interaction_followup_message_get`.
- Add `DiscordHTTPClient.interaction_followup_message_get`.
- Add `RATE_LIMIT_GROUPS.interaction_followup_message_get`.

Bug Fixes

- Add missing `ComponentSelect.iter_components`.
- Handle correctly the cases, when `ComponentSelect.options` is `None`.
- `ComponentRow.components` is now `tuple`, `None` (from `list`, `tuple`, `None`).
- `ComponentSelect.options` is now `tuple`, `None` (from `list`, `None`).
- `Message.author` could be set as `WebhookRepr` for application command messages.

Renames, Deprecation & Removals

- Remove `ActivityBase.created`.
- Rename `GuildFeature.thread_archive_3_day` to `thread_archive_three_day`.
- Rename `GuildFeature.thread_archive_7_day` to `thread_archive_seven_day`.

1.1.91

Summary

Add float type to slash commands.

Improvements

- Add `ApplicationCommandOptionType.float`.
- Add `ERROR_CODES.sticker_animation_duration_exceeds_5_second`.
- Add `UserBase._update`.
- Add `UserBase._update_no_return`.
- Add `ERROR_CODES.asset_size_too_large`.
- Add `ERROR_CODES.invalid_lottie_json`.
- Add `Permission.use_external_stickers`.
- Add `IntegrationExpireBehavior`.
- `IntegrationDetail.expire_behavior` is now `IntegrationExpireBehavior` type (from int).
- `Client.guild_create` limit increased 200 for nitro users.
- Rework channel message collection.
- `ActivityTimestamps.start` is now `datetime` (from int).
- `ActivityTimestamps.end` is now `datetime` (from int).
- Add `ActivityTimestamps.__new__`.
- Add `ActivityAssets.__new__`.
- Add `ActivityParty.__new__`.
- Add `ActivitySecrets.__new__`.
- Add `DiscordHTTPClient.status_incident_unresolved`.
- Add `DiscordHTTPClient.status_maintenance_active`.
- Add `DiscordHTTPClient.status_maintenance_upcoming`.
- Add `RATE_LIMIT_GROUPS.status_incident_unresolved`.
- Add `RATE_LIMIT_GROUPS.status_maintenance_active`.
- Add `RATE_LIMIT_GROUPS.status_maintenance_upcoming`.

ext.slash
- Add `float` converter.

Bug Fixes

- Fix an `AttributeError` in `Client._delete`.
- `ClientUserBase._update` always dropped back `banner_color` as edited.
- `ClientUserBase._update_no_return` reset the user's guild profiles.
- `ComponentSelect`'s `custom_id` parameter was incorrectly auto generated.

ext.slash
- Slash snapshot could be built badly yielding not empty difference wrongly. (bad indention)

Renames, Deprecation & Removals

- Remove `UserOA2.system`.
- Remove `Client.system`.
- Rename `Webhook._update` to `._set_attributes`.
- Rename `._update` to `._difference_update_attributes`.
- Rename `._update_no_return` to `._update_attributes`.
- Remove `MassUserChunker.left` (We only chunk 1 guild with it for now.)
- Rename `._update_presence` to `._difference_update_presence`.
- Rename `._update_presence_no_return` to `._difference_update`.
- Rename `._update_sizes_no_return` to `._set_sizes`.
- Rename `._update_profile_only` to `._difference_update_profile_only`.
- rename `._update_profile_only_no_return` to `._update_profile_only`.
- Rename `._update_profile` to `._difference_update_profile`.
- Rename `._update_profile_no_return` to `._update_profile`.
- Rename `DIS_ENDPOINT` to `DISCORD_ENDPOINT`
- Rename `ActivityTimestamps.__init__` -> `.from_data`.
- Rename `ActivityAssets.__init__` -> `.from_data`.
- Rename `ActivityParty.__init__` -> `.from_data`

Page 24 of 29

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.