Releases: Vaelor/python-mattermost-driver
4.3.2
4.3.1
4.2.1
4.2.0
4.1.0
This release mostly improves on the documentation.
The sphinx theme has been changed to the readthedocs one.
This also adds a debug
option, which enables a very verbose log output.
Be careful, as everything, even your mattermost password when you log in,
is readable in the log output!
This is definitely not for production usage!
4.0.2
4.0.1
The release 4.0.0 was not quite correct, since the following changes did not really happen, only the api documentation for mattermost 4.4.0 changed.
Endpoints moved from team to channels https://github.com/mattermost/mattermost-api-reference/pull/298/files
- get_public_channels
- get_deleted_channels
- search_channels
In this release, I readded these endpoints to Teams
but left them in Channels
, too. I recommend you change to the ones in Channels
already. They will use the /teams
endpoint instead of the /channels
one, so they should work. If Mattermost moves them for real, you won't have a Breaking change then. :-)
Thanks to @towolf
e2633c2#commitcomment-25648528
4.0.0
This has some changes related to Mattermost 4.4
BREAKING CHANGES:
- Endpoints moved from
team
tochannels
https://github.com/mattermost/mattermost-api-reference/pull/298/filesget_public_channels
get_deleted_channels
search_channels
Added endpoints:
revoke_all_user_sessions
in/users
disable_personal_access_token
in/users
enable_personal_access_token
in/users
Also, you can now access the api endpoints directly,
without using Driver.api['endpoint']
, instead you can
Driver.users.get_user('me')
.
Both ways are working, so no breaking change there.
Related Issue for this: #5