Releases: ludeeus/pytautulli
Releases · ludeeus/pytautulli
23.1.1
23.1.0
What’s Changed
dependabot
- #28 Bump actions/setup-python from 2.2.2 to 2.3.1 @dependabot
- #27 Bump black from 21.10b0 to 21.11b1 @dependabot
- #29 Bump black from 21.11b1 to 21.12b0 @dependabot
- #30 Bump black from 21.12b0 to 22.1.0 @dependabot
- #31 Bump actions/setup-python from 2.3.1 to 2.3.2 @dependabot
- #32 Bump actions/setup-python from 2.3.2 to 3 @dependabot
- #33 Bump actions/checkout from 2 to 3 @dependabot
- #34 Bump black from 22.1.0 to 22.3.0 @dependabot
- #35 Bump actions/setup-python from 3 to 4 @dependabot
- #36 Bump black from 22.3.0 to 22.6.0 @dependabot
- #39 Bump black from 22.6.0 to 22.12.0 @dependabot
21.11.0
What’s Changed
- #21 Bump black from 21.9b0 to 21.10b0 @dependabot
- #23 Drop loop kwarg from async_timeout.timeout @bdraco
- #22 Update async-timeout requirement from <=3.0.1 to <4.0.1 @dependabot
- #24 Remove async_timeout usage @ludeeus
21.10.1
21.10.0
21.8.1
21.8.0
BREAKING RELEASE!
This release is breaking in all aspects since it has fully been rewritten.
- The client class has been renamed from
Tautulli
toPyTautulli
. - A
PyTautulliHostConfiguration
has been added to simplify the client configuration. - It now returns the responses when calling methods.
- Fully typed responses with,
async_get_activity
,async_get_home_stats
,async_get_users
,async_get_server_info
. - For untyped responses, you can use
async_command
with any command, or passraw_response=True
to the client. - Exceptions are thrown for connection/authentication and unknown issues.
- The API key is redacted in logs/exceptions by default, pass
redact=False
to the client to disable that.
The changes was done in #12