mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-25 11:05:49 +03:00
Merge branch 'release-v1.85'
This commit is contained in:
commit
b5b7bb7c0f
4 changed files with 17 additions and 2 deletions
|
@ -1,3 +1,12 @@
|
||||||
|
Synapse 1.85.2 (2023-06-08)
|
||||||
|
===========================
|
||||||
|
|
||||||
|
Bugfixes
|
||||||
|
--------
|
||||||
|
|
||||||
|
- Fix regression where using TLS for HTTP replication between workers did not work. Introduced in v1.85.0. ([\#15746](https://github.com/matrix-org/synapse/issues/15746))
|
||||||
|
|
||||||
|
|
||||||
Synapse 1.85.1 (2023-06-07)
|
Synapse 1.85.1 (2023-06-07)
|
||||||
===========================
|
===========================
|
||||||
|
|
||||||
|
|
6
debian/changelog
vendored
6
debian/changelog
vendored
|
@ -1,3 +1,9 @@
|
||||||
|
matrix-synapse-py3 (1.85.2) stable; urgency=medium
|
||||||
|
|
||||||
|
* New Synapse release 1.85.2.
|
||||||
|
|
||||||
|
-- Synapse Packaging team <packages@matrix.org> Thu, 08 Jun 2023 13:04:18 +0100
|
||||||
|
|
||||||
matrix-synapse-py3 (1.85.1) stable; urgency=medium
|
matrix-synapse-py3 (1.85.1) stable; urgency=medium
|
||||||
|
|
||||||
* New Synapse release 1.85.1.
|
* New Synapse release 1.85.1.
|
||||||
|
|
|
@ -89,7 +89,7 @@ manifest-path = "rust/Cargo.toml"
|
||||||
|
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "matrix-synapse"
|
name = "matrix-synapse"
|
||||||
version = "1.85.1"
|
version = "1.85.2"
|
||||||
description = "Homeserver for the Matrix decentralised comms protocol"
|
description = "Homeserver for the Matrix decentralised comms protocol"
|
||||||
authors = ["Matrix.org Team and Contributors <packages@matrix.org>"]
|
authors = ["Matrix.org Team and Contributors <packages@matrix.org>"]
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
|
|
|
@ -76,7 +76,7 @@ class ReplicationEndpointFactory:
|
||||||
endpoint = wrapClientTLS(
|
endpoint = wrapClientTLS(
|
||||||
# The 'port' argument below isn't actually used by the function
|
# The 'port' argument below isn't actually used by the function
|
||||||
self.context_factory.creatorForNetloc(
|
self.context_factory.creatorForNetloc(
|
||||||
self.instance_map[worker_name].host,
|
self.instance_map[worker_name].host.encode("utf-8"),
|
||||||
self.instance_map[worker_name].port,
|
self.instance_map[worker_name].port,
|
||||||
),
|
),
|
||||||
endpoint,
|
endpoint,
|
||||||
|
|
Loading…
Reference in a new issue