Skip to content

Releases: GetStream/stream-chat-python

v3.15.0

12 Nov 22:19

Choose a tag to compare

  • Add update message partial support
  • Add pin message and unpin message helpers

v3.14.0

01 Nov 20:27

Choose a tag to compare

  • Add support for async endpoints
    • get_task
    • delete_users
    • delete_channels
  • Add support for permissions v2
  • Add convenience helpers for shadow ban
  • Use json helper for unmarshal response in async
  • Add support for Python 3.10

v3.13.1

14 Sep 14:01

Choose a tag to compare

  • Tweak connection pool configuration for idle timeouts

v3.13.0

07 Sep 08:39

Choose a tag to compare

  • Add optional message into member updates

v3.12.2

31 Aug 18:45

Choose a tag to compare

  • Use POST instead of GET requests in query channels

v3.12.1

24 Aug 14:45

Choose a tag to compare

  • Add namespace for ease of use and consistency in campaign update endpoints.

v3.12.0

23 Aug 19:51

Choose a tag to compare

  • Add support for channel exports

v3.11.2

20 Aug 12:48

Choose a tag to compare

  • Set base url to edge, there is no need to set a region anymore.
  • Fix file uploads from a local file.

v3.11.1

19 Aug 12:07

Choose a tag to compare

  • Fix base path for listing campaigns

v3.11.0

05 Jul 15:14
e7670f6

Choose a tag to compare

BREAKING CHANGE
In this release we introduced breaking changes for undocumented endpoints.

Please evaluate your usage of list_roles method as it now returns list of objects instead of list of strings. To upgrade, replace client.list_roles()['roles'] with [role['name'] for role in client.list_roles()['roles']]