Skip to content

Releases: Vaelor/python-mattermost-driver

4.3.2

22 Feb 13:19
Compare
Choose a tag to compare

A bit late, but for completeness...

Fixes

4.3.1

02 Feb 08:46
Compare
Choose a tag to compare

Added endpoints

  • create_user_access_token in /users #23

4.2.1

30 Jan 17:59
Compare
Choose a tag to compare

Fixes

Thanks to @dan-klasson for these!!

4.2.0

16 Jan 12:16
Compare
Choose a tag to compare

Release for Mattermost 4.6 api changes.

Added endpoints:

  • get_user_access_token in /users
  • search_tokens in /users
  • update_user_authentication_method in /users

4.1.0

04 Jan 17:12
Compare
Choose a tag to compare

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

26 Nov 16:33
Compare
Choose a tag to compare

This release makes some internal changes on how the endpoints are accessed.

Since this works much better then using api['endpoint'], api['..'] has been deprecated for the next Major release.

Fixes #5

4.0.1

16 Nov 11:10
Compare
Choose a tag to compare

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

11 Nov 19:26
Compare
Choose a tag to compare

This has some changes related to Mattermost 4.4

BREAKING CHANGES:

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

3.0.1

02 Nov 09:35
Compare
Choose a tag to compare

Thanks to @SmartHoneybee !

  • #14 Changed setup of the logger

3.0.0

16 Oct 09:56
Compare
Choose a tag to compare

Major release because of dropped python 3.3 support.

  • Removed python 3.3 from supported versions
  • Add data_retention endpoint (new since Mattermost >4.3)