Skip to content

Commit 77ffc16

Browse files
committed
Release 1.93.0.0 for synapse 1.93.0
1 parent 3fafa4e commit 77ffc16

File tree

3 files changed

+22
-15
lines changed

3 files changed

+22
-15
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
### [1.93.0.0] - 2023-11-19
11+
12+
### Updated
13+
14+
- Synapse to 1.93.0
15+
1016
### [1.92.2.0] - 2023-11-19
1117

1218
### Updated
@@ -227,7 +233,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
227233
- Location of github action workflow file `build.yml`
228234
- Fix robustness for matrix-synapse name and packages changes and rebuilding in the same path (updater script)
229235

230-
[unreleased]: https://github.com/conhealth/LifeTime-Desktop/compare/v1.92.2.0...HEAD
236+
[unreleased]: https://github.com/conhealth/LifeTime-Desktop/compare/v1.93.0.0...HEAD
237+
[1.93.0.0]: https://github.com/conhealth/LifeTime-Desktop/compare/v1.92.2.0...v1.93.0.0
231238
[1.92.2.0]: https://github.com/conhealth/LifeTime-Desktop/compare/v1.92.1.0...v1.92.2.0
232239
[1.92.1.0]: https://github.com/conhealth/LifeTime-Desktop/compare/v1.91.1.0...v1.92.1.0
233240
[1.91.1.0]: https://github.com/conhealth/LifeTime-Desktop/compare/v1.91.0.0...v1.91.1.0

matrix_synapse_testutils/unittest.py

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@
7070
)
7171
from synapse.rest import RegisterServletsFunc
7272
from synapse.server import HomeServer
73+
from synapse.storage.keys import FetchKeyResult
7374
from synapse.types import JsonDict, Requester, UserID, create_requester
7475
from synapse.util import Clock
7576
from synapse.util.httpresourcetree import create_resource_tree
@@ -858,23 +859,22 @@ def prepare(self, reactor: MemoryReactor, clock: Clock, hs: HomeServer) -> None:
858859
verify_key_id = "%s:%s" % (verify_key.alg, verify_key.version)
859860

860861
self.get_success(
861-
hs.get_datastores().main.store_server_keys_json(
862+
hs.get_datastores().main.store_server_keys_response(
862863
self.OTHER_SERVER_NAME,
863-
verify_key_id,
864864
from_server=self.OTHER_SERVER_NAME,
865-
ts_now_ms=clock.time_msec(),
866-
ts_expires_ms=clock.time_msec() + 10000,
867-
key_json_bytes=canonicaljson.encode_canonical_json(
868-
{
869-
"verify_keys": {
870-
verify_key_id: {
871-
"key": signedjson.key.encode_verify_key_base64(
872-
verify_key
873-
)
874-
}
865+
ts_added_ms=clock.time_msec(),
866+
verify_keys={
867+
verify_key_id: FetchKeyResult(
868+
verify_key=verify_key, valid_until_ts=clock.time_msec() + 10000
869+
),
870+
},
871+
response_json={
872+
"verify_keys": {
873+
verify_key_id: {
874+
"key": signedjson.key.encode_verify_key_base64(verify_key)
875875
}
876876
}
877-
),
877+
},
878878
)
879879
)
880880

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ classifiers = [
1616
"Topic :: Software Development"
1717
]
1818
dependencies = [
19-
"matrix-synapse[test]==1.92.2"
19+
"matrix-synapse[test]==1.93.0"
2020
]
2121

2222
[project.urls]

0 commit comments

Comments
 (0)