You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+47Lines changed: 47 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,53 @@ This file is updated every release with the use of `towncrier` from the fragment
6
6
7
7
.. towncrier release notes start
8
8
9
+
Hikari 2.0.0.dev106 (2022-02-03)
10
+
================================
11
+
12
+
Breaking Changes
13
+
----------------
14
+
15
+
- Running the standard interaction server implementation now requires a `hikari[server]` install.
16
+
17
+
This matches a switch over to PyNacl for the cryptographic payload validation. ([#986](https://github.com/hikari-py/hikari/issues/986))
18
+
19
+
20
+
Deprecation
21
+
-----------
22
+
23
+
- Deprecated `RESTClient.command_builder` and `RESTClient.create_application_command`.
24
+
25
+
You should switch to `RESTClient.slash_command_builder`and `RESTClient.create_slash_command` respectively. ([#924](https://github.com/hikari-py/hikari/issues/924))
26
+
27
+
28
+
Features
29
+
--------
30
+
31
+
- Add context menu commands and command autocomplete. ([#924](https://github.com/hikari-py/hikari/issues/924))
32
+
- Added support for GET /users/@me/guilds/{guild}/member. ([#955](https://github.com/hikari-py/hikari/issues/955))
33
+
- Add the `SUPPRESS_USER_JOIN_REPLIES` system channel flag. ([#957](https://github.com/hikari-py/hikari/issues/957))
34
+
- Add new message content intent related application flags. ([#958](https://github.com/hikari-py/hikari/issues/958))
35
+
- Add the `BOT_HTTP_INTERACTIONS` user flag. ([#959](https://github.com/hikari-py/hikari/issues/959))
36
+
- Add new presence activity flags. ([#960](https://github.com/hikari-py/hikari/issues/960))
37
+
- Add URL methods and properties for rich presence assets. ([#961](https://github.com/hikari-py/hikari/issues/961))
38
+
- Add `locale` and `guild_locale` properties to interactions. ([#962](https://github.com/hikari-py/hikari/issues/962))
39
+
- Add ability to send attachments in an interaction initial response. ([#971](https://github.com/hikari-py/hikari/issues/971))
40
+
- Add `display_avatar_url` property to `hikari.Member` and `hikari.User`. ([#975](https://github.com/hikari-py/hikari/issues/975))
41
+
- old_x keyword arguments in the event factory now default to `None`. ([#984](https://github.com/hikari-py/hikari/issues/984))
42
+
- Strip tokens in the standard bot impls and RESTApp.
43
+
44
+
This helps avoids a common mistake with trailing new-lines which leads to confusing errors on request. ([#989](https://github.com/hikari-py/hikari/issues/989))
45
+
46
+
47
+
Bugfixes
48
+
--------
49
+
50
+
- Relaxed typing of methods with union entry specific specialisations through overloads. ([#876](https://github.com/hikari-py/hikari/issues/876))
51
+
- Fix deprecation warnings raised by usage of `asyncio.gather` outside of an active event loop in `GatewayBot.run`. ([#954](https://github.com/hikari-py/hikari/issues/954))
52
+
- UTF-8 characters are now properly handled for audit-log reasons in REST requests. ([#963](https://github.com/hikari-py/hikari/issues/963))
53
+
- Fix magic methods for `UserImpl` and its subclasses. ([#982](https://github.com/hikari-py/hikari/issues/982))
0 commit comments