Codebase list matrix-synapse / 4378c9f
New upstream version 0.25.1 Erik Johnston 6 years ago
3 changed file(s) with 10 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
0 Changes in synapse v0.25.1 (2017-11-17)
1 =======================================
2
3 Bug fixes:
4
5 * Fix login with LDAP and other password provider modules (PR #2678). Thanks to
6 @jkolo!
7
08 Changes in synapse v0.25.0 (2017-11-15)
19 =======================================
210
1515 """ This is a reference implementation of a Matrix home server.
1616 """
1717
18 __version__ = "0.25.0"
18 __version__ = "0.25.1"
550550 qualified_user_id, password,
551551 )
552552 if is_valid:
553 defer.returnValue(qualified_user_id)
553 defer.returnValue((qualified_user_id, None))
554554
555555 if (not hasattr(provider, "get_supported_login_types")
556556 or not hasattr(provider, "check_auth")):