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: docs/getting-started/changelog.rst
+16-3Lines changed: 16 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,11 @@ Changelog
24
24
- :class:`twitchio.ChatterColor` no longer errors whan no valid hex is provided by Twitch.
25
25
- Some general typing/spelling errors cleaned up in Documentation and Logging.
26
26
- Removed some redundant logging.
27
+
- Fixed internal parsing of the payload received in :meth:`twitchio.PartialUser.warn_user` which was resulting in an error.
28
+
29
+
- twitchio.Client
30
+
- Bug fixes
31
+
- Fixed tokens not being saved properly when ``load_tokens`` was ``False`` in :meth:`twitchio.Client.login`
27
32
28
33
- twitchio.AutoClient
29
34
- Additions
@@ -105,14 +110,19 @@ Changelog
105
110
- twitchio.web.AiohttpAdapter
106
111
- Bug fixes
107
112
- Fixed the redirect URL not allowing HOST/PORT when a custom domain was passed.
108
-
- The redirect URL is now determined based on where the request came from.
113
+
- The redirect URL is now determined based on where the request came from.
114
+
- Now correctly changes the protocol to ``https`` when SSL is used directly on the adapter.
109
115
110
116
- twitchio.web.StarletteAdapter
117
+
- Additions
118
+
- Added the ``timeout_keep_alive`` keyword parameter which allows controlling how long ``Starlette/Uvicorn`` will wait to gracefully close.
119
+
111
120
- Bug fixes
112
121
- Fixed the redirect URL not allowing HOST/PORT when a custom domain was passed.
113
-
- The redirect URL is now determined based on where the request came from.
122
+
- The redirect URL is now determined based on where the request came from.
114
123
- Fixed Uvicorn hanging the process when attempting to close the :class:`asyncio.Loop` on **Windows**.
115
-
- After ``5 seconds`` Uvicorn will be forced closed if it cannot gracefully close in this time.
124
+
- After a default of ``5 seconds`` Uvicorn will be forced closed if it cannot gracefully close in this time. This time can be changed with the ``timeout_keep_alive`` parameter.
125
+
- Now correctly changes the protocol to ``https`` when SSL is used directly on the adapter.
- :class:`~twitchio.ext.commands.Context` is now ``Generic`` and accepts a generic argument bound to :class:`~twitchio.ext.commands.Bot` or :class:`~twitchio.ext.commands.AutoBot`.
136
146
147
+
- Bug fixes
148
+
- Prevent multiple :class:`~twitchio.ext.commands.Component`'s of the same name being added to a bot resulting in one overriding the other.
0 commit comments