Hikari

Latest version: v2.2.0

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

Scan your dependencies

Page 3 of 8

2.0.0.dev119

Breaking Changes

- Remove deprecated functionality for 2.0.0.dev119
- Removed `TextInputBuilder.required` in favour of `TextInputBuilder.is_required`.
- Removed the ability to pass `CommandChoices` instead of `AutocompleteChoiceBuilders` when making autocomplete responses. ([1580](https://github.com/hikari-py/hikari/issues/1580))

Bugfixes

- Fix `messages` argument typing for `RESTClient.delete_messages`. ([1581](https://github.com/hikari-py/hikari/issues/1581))
- Default `HTTPSettings.enable_cleanup_closed` to `False`.
- CPython3.11 changes around SSLProto have made this quite unstable and prone to errors when dealing with unclosed TLS transports, which ends up in aiohttp calling close and abort twice. ([1585](https://github.com/hikari-py/hikari/issues/1585))
- `Guild.get_channel`, `Guild.get_emoji`, `Guild.get_sticker` and `Guild.get_role` now only return entries from the relevant guild. ([1608](https://github.com/hikari-py/hikari/issues/1608))

---

2.0.0.dev118

Breaking Changes

- Refactors to the component builder interfaces which make them flatter:

* Removed `add_to_container` from `ButtonBuilder`, `LinkButtonBuilder`, `InteractiveButtonBuilder`, `SelectMenuBuilder`, `ChannelSelectMenuBuilder`, and `TextInputBuilder`; these classes are no-longer generic and no-longer take `container` in their inits.
* Replaced `TextSelectMenuBuilder.add_to_container` with the `TextSelectMenuBuilder.parent` property.
This new property doesn't "finalise" the addition but rather just returns the parent object, or raises if the select menu is an orphan. This change also involves replacing the `container` parameter in `TextSelectMenuBuilder.__init__` with an optional `parent` parameter.
* Removed `SelectOptionBuilder.add_to_menu`; this class isn't generic anymore.
* `TextSelectMenuBuilder.add_option` now takes all the option's configuration as parameters and returns `Self`.
* Split `MessageActionRowBuilder.add_button` into `.add_interactive_button` and `.add_link_button`.
These both now take all the button's configuration as parameters and return `Self`.
* `MessageActionRowBuilder.add_select_menu` now takes all the menu's configuration as parameters and returns `Self`.
The new `.add_channel_menu` and `.add_text_menu` methods should be used for adding text and channel menus. Where `.add_channel_menu` returns `Self` and `.add_text_menu` returns a text menu builder with a `parent` property for getting back to the action row builder.
* `ModalActionRowBuilder.add_text_input` now takes all the text input's configuration as parameters and returns `Self`.
* `min_length` and `max_length` can no-longer be `hikari.undefined.UNDEFINED` for the text input builder, and default to `0` and `4000` respectively. This change effects both the types accepted by `ModalActionRowBuilder.__init__` and the return types of the relevant properties.
* Removed the `emoji_id` and `emoji_name` parameters from `LinkButtonBuilder.__init__`, and `InteractiveButtonBuilder.__init__`.
* Removed the `style` and `custom_id` parameters from `LinkButtonBuilder.__init__`.
* Removed the `url` parameter from `InteractiveButtonBuilder.__init__`. ([1533](https://github.com/hikari-py/hikari/issues/1533))
- Remove previously deprecated functionality:
- `Intents.GUILD_BANS` (deprecated alias for `Intents.GUILD_MODERATION`)
- `ComponentType.SELECT_MENU` (deprecated alias for `Intents.TEXT_SELECT_MENU`)
- Not passing type through `type` argument explicitly to `MessageActionRowBuilder.add_select_menu` ([1535](https://github.com/hikari-py/hikari/issues/1535))
- Renamed `StickerPack.banner_hash` to `StickerPack.banner_asset_id`. ([1572](https://github.com/hikari-py/hikari/issues/1572))

Deprecation

- Renamed `TextInputBuilder.required` property to `TextInputBuilder.is_required`. ([1533](https://github.com/hikari-py/hikari/issues/1533))
- Passing `CommandChoice`s instead of `AutocompleteChoiceBuilder`s when making autocomplete responses. ([1539](https://github.com/hikari-py/hikari/issues/1539))
- `hikari.impl.bot` moved to `hikari.impl.gateway_bot`. ([1576](https://github.com/hikari-py/hikari/issues/1576))

Features

- `Role.mention` now returns `"everyone"` for the `everyone` role. ([1528](https://github.com/hikari-py/hikari/issues/1528))
- Refactors to the component builder interfaces which make them flatter:

* `hikari.undefined.UNDEFINED` can now be passed to `TextInputBuilder.set_placeholder` and `TextInputBuilder.set_value`.
* The standard implementation of a select option builder is now exposed at `hikari.impl.special_endpoints.SelectOptionBuilder`. ([1533](https://github.com/hikari-py/hikari/issues/1533))
- `CommandChoice.name_localizations` field and separate `AutocompleteChoiceBuilder` for use when making autocomplete responses. ([1539](https://github.com/hikari-py/hikari/issues/1539))
- Implement guild role subscriptions. ([1550](https://github.com/hikari-py/hikari/issues/1550))
- Add `Role.is_guild_linked_role`. ([1551](https://github.com/hikari-py/hikari/issues/1551))
- `hikari.iterators.LazyIterator.flatten` method for flattening a lazy iterator of synchronous iterables. ([1562](https://github.com/hikari-py/hikari/issues/1562))
- Support sending stickers when creating a message. ([1571](https://github.com/hikari-py/hikari/issues/1571))
- Added several set methods for required values to the builders:

* `CommandBuilder.set_name`
* `SlashCommandBuilder.set_description`
* `InteractiveButtonBuilder.set_custom_id`
* `SelectOptionBuilder.set_label`
* `SelectOptionBuilder.set_value`
* `SelectMenuBuilder.set_custom_id` ([1574](https://github.com/hikari-py/hikari/issues/1574))

Bugfixes

- `emoji=` can now be passed to `LinkButtonBuilder.__init__` and `InteractiveButtonBuilder.__init__` alone without causing serialization issues (and Pyright will now let you pass it). ([1533](https://github.com/hikari-py/hikari/issues/1533))
- Open `banner.txt`s with `utf-8` encoding explicitly. ([1545](https://github.com/hikari-py/hikari/issues/1545))
- Pyright will now let you pass `role_mentions` and `user_mentions` to `InteractionMessageBuilder.__init__`. ([1560](https://github.com/hikari-py/hikari/issues/1560))
- Fixed forum channel applied tags not being a sequence of snowflakes. ([1564](https://github.com/hikari-py/hikari/issues/1564))
- Switch to using <https://github.com/discord/twemoji> for emoji images. ([#1568](https://github.com/hikari-py/hikari/issues/1568))
- Fixed sticker pack handling and typing:

* Fixed deserialization raising when `"banner_asset_id"` or `"cover_sticker_id"` weren't included in the payload.
* `StickerPack.banner_asset_id` is now correctly typed as `Optional[Snowflake]`.
* `StickerPack.banner_url` and `StickerPack.make_banner_url` both now correctly return `None` when `StickerPack.banner_asset_id` is `None`. ([1572](https://github.com/hikari-py/hikari/issues/1572))

---

2.0.0.dev117

Breaking Changes

- Remove previously deprecated functionality:
- `delete_message_days` parameter for `ban` methods. ([1496](https://github.com/hikari-py/hikari/issues/1496))
- `type` can no-longer be specified while initialise `hikari.impl.special_endpoints.TextSelectMenuBuilder` and `hikari.impl.special_endpoints.ChannelSelectMenuBuilder`.
`hikari.api.special_endpoints.SelectOptionBuilder` no-longer inherits from `hikari.api.special_endpoints.ComponentBuilder` (but it still has a `build` method). ([1509](https://github.com/hikari-py/hikari/issues/1509))

Features

- Pre-maturely fetch the public key if not present when starting an interaction server. ([1423](https://github.com/hikari-py/hikari/issues/1423))
- Add and document the new `SUPPRESS_NOTIFICATIONS` message flag. ([1504](https://github.com/hikari-py/hikari/issues/1504))
- `hikari.impl.special_endpoints.ChannelSelectMenuBuilder` and `hikari.impl.special_endpoints.TextSelectMenuBuilder` are now both exported directly on `hikari.impl`. ([1508](https://github.com/hikari-py/hikari/issues/1508))
- `type` property to the component builders. ([1509](https://github.com/hikari-py/hikari/issues/1509))
- Traits now use `abc.abstractmethod`. This gives better type errors. ([1516](https://github.com/hikari-py/hikari/issues/1516))
- `token_type` now defaults to `"Bot"` when initialising `RESTBot` with a string token. ([1527](https://github.com/hikari-py/hikari/issues/1527))

Bugfixes

- Re-export missing exports from `hikari.api.special_endpoints` and `hikari.components`. ([1501](https://github.com/hikari-py/hikari/issues/1501))
- Fix `PartialSticker.image_url` not accounting for stickers with GIF format. ([1506](https://github.com/hikari-py/hikari/issues/1506))
- Await bucket manager gc task to completion when closing ([1529](https://github.com/hikari-py/hikari/issues/1529))

---

2.0.0.dev116

Breaking Changes

- Remove `RateLimitedError` in favour of always waiting on ratelimits. ([1441](https://github.com/hikari-py/hikari/issues/1441))
- ([1455](https://github.com/hikari-py/hikari/issues/1455))
- Default logging to `sys.stdout` stream to bring more in-line with banner output. ([1485](https://github.com/hikari-py/hikari/issues/1485))

Deprecation

- Deprecate selects v1 functionality:
- `ComponentType.SELECT_MENU` -> `ComponentType.TEXT_SELECT_MENU`
- Not passing `MessageActionRowBuilder.add_select_menu`'s `type` argument explicitly.
- `InteractionChannel` and `ResolvedOptionData` moved from `hikari.interactions.command_interactions` to `hikari.interactions.base_interactions`. ([1455](https://github.com/hikari-py/hikari/issues/1455))
- Renamed `Intents.GUILD_BANS` to `Intents.GUILD_MODERATION`. ([1471](https://github.com/hikari-py/hikari/issues/1471))

Features

- Add linked roles support (models + endpoints). ([1422](https://github.com/hikari-py/hikari/issues/1422))
- Add selects v2 components. ([1455](https://github.com/hikari-py/hikari/issues/1455))
- Added `fetch_self`, `edit`, `delete`, `sync`, and `create_guild` methods to `hikari.templates.Template`. ([1457](https://github.com/hikari-py/hikari/issues/1457))
- Add ability to suppress optimization warnings through `suppress_optimization_warning=True` to the `GatewayBot` or `RESTBot` constructors. ([1459](https://github.com/hikari-py/hikari/issues/1459))
- Support GIF sticker image format ([1464](https://github.com/hikari-py/hikari/issues/1464))
- Add support for guild audit log entry create events. ([1471](https://github.com/hikari-py/hikari/issues/1471))
- Update `RESTClient.edit_channnel` to support setting `applied_tags` on forum threads. ([1474](https://github.com/hikari-py/hikari/issues/1474))
- Implement `reply_must_exist` in create message methods ([1475](https://github.com/hikari-py/hikari/issues/1475))
- Support loading files through `logging.config.fileConfig` in `init_logging`. ([1485](https://github.com/hikari-py/hikari/issues/1485))
- Add `orjson` as an optional speedup and allow to pass custom `json.dumps` and `json.loads` functions to all components. ([1486](https://github.com/hikari-py/hikari/issues/1486))

Bugfixes

- The global ratelimit now abides by `max_rate_limit`. ([1441](https://github.com/hikari-py/hikari/issues/1441))
- Move `description_localizations` from `PartialCommand` to `SlashCommand` (removing it from `ContextMenuCommand`). ([1470](https://github.com/hikari-py/hikari/issues/1470))
- Add missing fields to `GuildChannel.edit`. ([1474](https://github.com/hikari-py/hikari/issues/1474))
- Fix `hikari.webhooks.ChannelFollowWebhook` not including source in all cases.
- `source_channel` and `source_guild` will be `None` instead. ([1480](https://github.com/hikari-py/hikari/issues/1480))
- Fix colour logging not occurring on specific terminals (ie, Pycharm). ([1485](https://github.com/hikari-py/hikari/issues/1485))

---

2.0.0.dev115

Breaking Changes

- Remove previously deprecated functionality.
This includes:
- `RESTClient.build_action_row` ([1438](https://github.com/hikari-py/hikari/issues/1438))

Bugfixes

- Fix deserializing old forum channels on `GUILD_CREATE` missing some fields. ([1439](https://github.com/hikari-py/hikari/issues/1439))

---

2.0.0.dev114

Breaking Changes

- `BulkDeleteError`:
- No longer contains a `messages_skipped` attribute.
- `messages_deleted` renamed to `deleted_messages`. ([1134](https://github.com/hikari-py/hikari/issues/1134))
- `RESTApp` and `RESTBucketManager` now need to be started and stopped by using `.start` and `.close`. ([1230](https://github.com/hikari-py/hikari/issues/1230))
- Remove long deprecated `async with` support for `EventStream`. ([1426](https://github.com/hikari-py/hikari/issues/1426))

Deprecation

- Deprecate the `delete_message_days` parameter for PartialGuild.ban and Member.ban. ([1378](https://github.com/hikari-py/hikari/issues/1378))

Features

- Allow async iterators in `RESTClient.delete_messages`. ([1134](https://github.com/hikari-py/hikari/issues/1134))
- `RESTClientImpl` improvements:
- You can now share client sessions and bucket managers across these objects or have them created for you.
- Speedup of request lifetime
- No-ratelimit routes no longer attempt to acquire rate limits
- Just for safety, a check is in place to treat the route as a rate limited route if a bucket is ever received for it and a error log is emitted. If you spot it around, please inform us! ([1230](https://github.com/hikari-py/hikari/issues/1230))
- Add `save()` method to `Resource`. ([1272](https://github.com/hikari-py/hikari/issues/1272))
- Allow specifying the `delete_message_seconds` parameter for PartialGuild.ban and Member.ban.
- This parameter can be specified as either an int, a float, or a datetime.timedelta object. ([1378](https://github.com/hikari-py/hikari/issues/1378))
- Support yielding in interaction listeners. ([1383](https://github.com/hikari-py/hikari/issues/1383))
- Add Indonesian locale as `hikari.Locale.ID`. ([1404](https://github.com/hikari-py/hikari/issues/1404))
- Improve pyright support ([1412](https://github.com/hikari-py/hikari/issues/1412))
- Improve error raised when attempting to use an asynchronous iterator synchronously. ([1419](https://github.com/hikari-py/hikari/issues/1419))
- Add missing `Application` fields:
- `Application.custom_install_url`
- `Application.tags`
- `Application.install_parameters` ([1420](https://github.com/hikari-py/hikari/issues/1420))
- Add support for guild forum channels. ([1430](https://github.com/hikari-py/hikari/issues/1430))
- Add a warning when not running in (at least) level 1 optimization mode. ([1431](https://github.com/hikari-py/hikari/issues/1431))

Bugfixes

- Buckets across different authentications are not shared any more, which would lead to incorrect rate limiting. ([1230](https://github.com/hikari-py/hikari/issues/1230))
- Suppress incorrect deprecation warning regarding event loops. ([1425](https://github.com/hikari-py/hikari/issues/1425))
- Properly close unclosed file descriptor when reading banner.
- This only affects versions of Python >= 3.9. ([1434](https://github.com/hikari-py/hikari/issues/1434))
- Start GC of bucket manager when creating a rest client. ([1435](https://github.com/hikari-py/hikari/issues/1435))
- Fix incorrect value in `CommandBuilder.is_nsfw`. ([1436](https://github.com/hikari-py/hikari/issues/1436))

---

Page 3 of 8

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.