Releases: mautrix/python
Releases · mautrix/python
v0.4.0
https://pypi.org/project/mautrix/0.4.0/
- Initial "stable" release of the major restructuring.
- Package now includes the Matrix client framework and other utilities instead of just an appservice module.
- Package renamed from mautrix-appservice to mautrix.
- Switched license from MIT to MPLv2.
v0.4.0-rc2
https://pypi.org/project/mautrix/0.4.0rc2/
- Added command to get bridge version
- Made bridges refuse to start if config contains example values
v0.4.0-rc1
https://pypi.org/project/mautrix/0.4.0rc1/
Too many changes
v0.3.11
https://pypi.org/project/mautrix-appservice/0.3.11/
- Update state store after sending state event. This is required for some servers like t2bot.io that have disabled echoing state events to appservices.
v0.3.10
https://pypi.org/project/mautrix-appservice/0.3.10.dev1/
- Hacky fix for null m.relates_to's
v0.3.9
https://pypi.org/project/mautrix-appservice/0.3.9/
- Only use json.dumps() in request() if content is json-serializable
v0.3.8
https://pypi.org/project/mautrix-appservice/0.3.8/
- Added missing room/event ID quotings
v0.3.7
https://pypi.org/project/mautrix-appservice/0.3.7/
- Fixed
get_room_members()
returningdict_keys
rather thanlist
when getting only joined members.
v0.3.6
https://pypi.org/project/mautrix-appservice/0.3.6/
- Fixed
get_room_joined_memberships()
(PR #6 by @turt2live)
v0.3.5
https://pypi.org/project/mautrix-appservice/0.3.5/
- Added parameter to change aiohttp Application parameters
- Fixed
get_power_levels()
with state store implementations that don't throw aValueError
on cache miss.