diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2020-08-03 13:56:43 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-03 21:56:43 +0100 |
commit | 481f76c7aabfc786796fd5de7c324c851ed00844 (patch) | |
tree | a53eaa48080d8febd21cc99533e1a6658f9a54ce /changelog.d | |
parent | Prevent join->join membership transitions changing member count (#7977) (diff) | |
download | synapse-481f76c7aabfc786796fd5de7c324c851ed00844.tar.xz |
Remove signature check on v1 identity server lookups (#8001)
We've [decided](https://github.com/matrix-org/synapse/issues/5253#issuecomment-665976308) to remove the signature check for v1 lookups. The signature check has been removed in v2 lookups. v1 lookups are currently deprecated. As mentioned in the above linked issue, this verification was causing deployments for the vector.im and matrix.org IS deployments, and this change is the simplest solution, without being unjustified. Implementations are encouraged to use the v2 lookup API as it has [increased privacy benefits](https://github.com/matrix-org/matrix-doc/pull/2134).
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/8001.misc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/8001.misc b/changelog.d/8001.misc new file mode 100644 index 0000000000..0be4b37d22 --- /dev/null +++ b/changelog.d/8001.misc @@ -0,0 +1 @@ +Remove redundant and unreliable signature check for v1 Identity Service lookup responses. |