Skip to content

Commit e8d7692

Browse files
Prepare for release of 2.0.0.dev109 (#1196)
Prepare for release of version 2.0.0.dev109 Co-authored-by: hikari-bot <90276125+hikari-bot[bot]@users.noreply.github.com>
1 parent b3d3a72 commit e8d7692

17 files changed

+49
-26
lines changed

CHANGELOG.md

+49
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,55 @@ This file is updated every release with the use of `towncrier` from the fragment
66

77
.. towncrier release notes start
88

9+
Hikari 2.0.0.dev109 (2022-06-26)
10+
================================
11+
12+
Breaking Changes
13+
----------------
14+
15+
- Removal of all application commands v1 related fields and endpoints.
16+
- Discord has completely disabled some endpoints, so we unfortunately can't
17+
deprecate them instead of removing them ([#1148](https://github.com/hikari-py/hikari/issues/1148))
18+
- Removed the `resolved` attribute from `AutocompleteInteraction` as autocomplete interactions never have resolved objects. ([#1152](https://github.com/hikari-py/hikari/issues/1152))
19+
- `build` methods are now typed as returning `MutableMapping[str, typing.Any]`. ([#1164](https://github.com/hikari-py/hikari/issues/1164))
20+
21+
22+
Deprecation
23+
-----------
24+
25+
- `messages.Mentions` object deprecated
26+
- Alternatives can be found in the base message object ([#1149](https://github.com/hikari-py/hikari/issues/1149))
27+
28+
29+
Features
30+
--------
31+
32+
- Add `create` method to `CommandBuilder`. ([#1016](https://github.com/hikari-py/hikari/issues/1016))
33+
- Support for attachments in REST-based interaction responses. ([#1048](https://github.com/hikari-py/hikari/issues/1048))
34+
- Add option to disable automatic member chunking.
35+
Added the `auto_chunk_members` kwarg to `GatewayBot` and `EventManagerImpl`, which when `False` will disable automatic member chunking. ([#1084](https://github.com/hikari-py/hikari/issues/1084))
36+
- Allow passing multiple event types to the listen decorator.
37+
Parse union type hints for events if listen decorator is empty. ([#1103](https://github.com/hikari-py/hikari/issues/1103))
38+
- Animated guild banner support. ([#1116](https://github.com/hikari-py/hikari/issues/1116))
39+
- Implement application commands permission v2.
40+
- New `default_member_permissions` and `is_dm_enabled` related fields.
41+
- Added `hikari.events.application_events.ApplicationCommandPermissionsUpdate`.
42+
- Added `APPLICATION_COMMAND_PERMISSION_UPDATE` audit log entry ([#1148](https://github.com/hikari-py/hikari/issues/1148))
43+
44+
45+
Bugfixes
46+
--------
47+
48+
- Improved pyright support. ([#1108](https://github.com/hikari-py/hikari/issues/1108))
49+
- `RESTClientImpl.fetch_bans` now return a `LazyIterator` to allow pagination of values. ([#1119](https://github.com/hikari-py/hikari/issues/1119))
50+
- Fix unicode decode error caused by `latin-1` encoding when sending the banner. ([#1120](https://github.com/hikari-py/hikari/issues/1120))
51+
- Don't error on an out-of-spec HTTP status code (e.g one of Cloudflare's custom status codes).
52+
`HTTPResponseError.status` may now be of type `http.HTTPStatus` or `int`. ([#1121](https://github.com/hikari-py/hikari/issues/1121))
53+
- Fix name of polish locale (`hikari.Locale.OL` -> `hikari.Locale.PL`) ([#1144](https://github.com/hikari-py/hikari/issues/1144))
54+
- Properly garbage collect message references in the cache
55+
- Properly deserialize `PartialMessage.referenced_message` as a partial message ([#1192](https://github.com/hikari-py/hikari/issues/1192))
56+
57+
958
Hikari 2.0.0.dev108 (2022-03-27)
1059
================================
1160

changes/1016.feature.md

-1
This file was deleted.

changes/1048.feature.md

-1
This file was deleted.

changes/1084.feature.md

-2
This file was deleted.

changes/1103.feature.md

-2
This file was deleted.

changes/1108.bugfix.md

-1
This file was deleted.

changes/1116.feature.md

-1
This file was deleted.

changes/1119.bugfix.md

-1
This file was deleted.

changes/1120.bugfix.md

-1
This file was deleted.

changes/1121.bugfix.md

-2
This file was deleted.

changes/1144.bugfix.md

-1
This file was deleted.

changes/1148.breaking.md

-3
This file was deleted.

changes/1148.feature.md

-4
This file was deleted.

changes/1149.deprecation.md

-2
This file was deleted.

changes/1152.breaking.md

-1
This file was deleted.

changes/1164.breaking.md

-1
This file was deleted.

changes/1192.bugfix.md

-2
This file was deleted.

0 commit comments

Comments
 (0)