Skip to content

Releases: GetStream/stream-chat-python

v4.23.0

Choose a tag to compare

@github-actions github-actions released this 11 Mar 17:05
690484a

4.23.0 (2025-03-11)

v4.22.0

Choose a tag to compare

@github-actions github-actions released this 19 Feb 10:37
514a795

4.22.0 (2025-02-18)

v4.21.0

Choose a tag to compare

@github-actions github-actions released this 11 Feb 09:05
efc2558

4.21.0 (2025-02-11)

v4.20.0

Choose a tag to compare

@github-actions github-actions released this 07 Dec 08:46
35da0fa

4.20.0 (2024-12-07)

v4.19.0

Choose a tag to compare

@github-actions github-actions released this 05 Sep 11:41
fa23514

4.19.0 (2024-09-05)

v4.18.0

Choose a tag to compare

@github-actions github-actions released this 05 Jul 11:45
c8a13a9

4.18.0 (2024-07-03)

Features

  • Add support for mark_unread msg or thread (#172) (1981ab7)

v4.17.0

Choose a tag to compare

@github-actions github-actions released this 29 May 07:44
03bae72

4.17.0 (2024-05-29)

Features

v4.16.0

Choose a tag to compare

@github-actions github-actions released this 17 May 15:19
4087024

4.16.0 (2024-05-17)

Features

  • New API endpoint query_message_history (#168) (f3f4c9f)
response = client.query_message_history(
    filter={"message_id": {"$eq": msg_id}},
    sort=[{"message_updated_at": -1}],
    **{"limit": 1},
)

response_next = client.query_message_history(
    filter={"message_id": {"$eq": msg_id}},
    sort=[{"message_updated_at": -1}],
    **{"limit": 1, "next": response["next"]},
)

v4.15.0

Choose a tag to compare

@github-actions github-actions released this 19 Mar 20:58
62a5ea0

4.15.0 (2024-03-19)

Features

  • support all_users & all_sender_channels for segment (#164) (7d57dcc)

v4.14.0

Choose a tag to compare

@github-actions github-actions released this 08 Mar 16:16
c6dc110

4.14.0 (2024-03-08)

Features

  • add support for show_deleted_message in getMessage (#161) (e42aa94)