Skip to content

Commit 2d86966

Browse files
Prepare for release of 2.3.2 (#2357)
Co-authored-by: hikari-bot <90276125+hikari-bot[bot]@users.noreply.github.com>
1 parent c6d8e28 commit 2d86966

11 files changed

+35
-20
lines changed

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,36 @@
1+
## 2.3.2 (2025-05-09)
2+
3+
### Deprecation
4+
5+
- Deprecate all `x_url` properties in favour of `make_x_url()` methods ([#2338](https://github.com/hikari-py/hikari/issues/2338))
6+
7+
### Features
8+
9+
- Added `rest.create_voice_message` to support sending voice messages. ([#2251](https://github.com/hikari-py/hikari/issues/2251))
10+
- Add AWEBP support for asset URLs and increase sticker asset availability ([#2338](https://github.com/hikari-py/hikari/issues/2338))
11+
- Add `old_thread` field to `GuildThreadUpdateEvent`. ([#2353](https://github.com/hikari-py/hikari/issues/2353))
12+
- Add reason parameter to the following endpoints:
13+
- `delete_permission_overwrite`
14+
- `delete_webhook`
15+
- `delete_invite`
16+
- `reposition_channels`
17+
- `reposition_roles`
18+
- `delete_role`
19+
- `create_stage_instance`
20+
- `edit_stage_instance`
21+
- `delete_stage_instance` ([#2354](https://github.com/hikari-py/hikari/issues/2354))
22+
23+
### Optimizations
24+
25+
- Optimize reusing file resources when uploading repeated ones ([#2336](https://github.com/hikari-py/hikari/issues/2336))
26+
27+
### Bugfixes
28+
29+
- Fix event filtering for interaction create specialized events ([#2335](https://github.com/hikari-py/hikari/issues/2335))
30+
- Fix duplicated uploaded attachments when reusing resources in embeds ([#2336](https://github.com/hikari-py/hikari/issues/2336))
31+
- Added partial missing documentation for rest voice-message interaction methods. ([#2355](https://github.com/hikari-py/hikari/issues/2355))
32+
33+
---
134
## 2.3.1 (2025-04-27)
235

336
### Features

changes/2251.feature.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes/2335.bugfix.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes/2336.bugfix.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes/2336.optimization.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes/2338.deprecation.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes/2338.feature.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes/2353.feature.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes/2354.feature.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

changes/2355.bugfix.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

hikari/_about.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@
3333
__copyright__: typing.Final[str] = "2021-present, davfsa"
3434
__coverage__: typing.Final[str] = "https://app.codecov.io/github/hikari-py/hikari"
3535
__discord_invite__: typing.Final[str] = "https://discord.gg/Jx4cNGG"
36-
__docs__: typing.Final[str] = "https://docs.hikari-py.dev/en/master"
36+
__docs__: typing.Final[str] = "https://docs.hikari-py.dev/en/2.3.2"
3737
__email__: typing.Final[str] = "[email protected]"
3838
__issue_tracker__: typing.Final[str] = "https://github.com/hikari-py/hikari/issues"
3939
__license__: typing.Final[str] = "MIT"
4040
__url__: typing.Final[str] = "https://github.com/hikari-py/hikari"
41-
__version__: typing.Final[str] = "2.3.2.dev0"
41+
__version__: typing.Final[str] = "2.3.2"
4242
__git_sha1__: typing.Final[str] = "HEAD"

0 commit comments

Comments
 (0)