Skip to content

Commit

Permalink
Release 1.93.0.0 for synapse 1.93.0
Browse files Browse the repository at this point in the history
  • Loading branch information
julianhille committed Nov 19, 2023
1 parent 3fafa4e commit 77ffc16
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 15 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

### [1.93.0.0] - 2023-11-19

### Updated

- Synapse to 1.93.0

### [1.92.2.0] - 2023-11-19

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

[unreleased]: https://github.com/conhealth/LifeTime-Desktop/compare/v1.92.2.0...HEAD
[unreleased]: https://github.com/conhealth/LifeTime-Desktop/compare/v1.93.0.0...HEAD
[1.93.0.0]: https://github.com/conhealth/LifeTime-Desktop/compare/v1.92.2.0...v1.93.0.0
[1.92.2.0]: https://github.com/conhealth/LifeTime-Desktop/compare/v1.92.1.0...v1.92.2.0
[1.92.1.0]: https://github.com/conhealth/LifeTime-Desktop/compare/v1.91.1.0...v1.92.1.0
[1.91.1.0]: https://github.com/conhealth/LifeTime-Desktop/compare/v1.91.0.0...v1.91.1.0
Expand Down
26 changes: 13 additions & 13 deletions matrix_synapse_testutils/unittest.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@
)
from synapse.rest import RegisterServletsFunc
from synapse.server import HomeServer
from synapse.storage.keys import FetchKeyResult
from synapse.types import JsonDict, Requester, UserID, create_requester
from synapse.util import Clock
from synapse.util.httpresourcetree import create_resource_tree
Expand Down Expand Up @@ -858,23 +859,22 @@ def prepare(self, reactor: MemoryReactor, clock: Clock, hs: HomeServer) -> None:
verify_key_id = "%s:%s" % (verify_key.alg, verify_key.version)

self.get_success(
hs.get_datastores().main.store_server_keys_json(
hs.get_datastores().main.store_server_keys_response(
self.OTHER_SERVER_NAME,
verify_key_id,
from_server=self.OTHER_SERVER_NAME,
ts_now_ms=clock.time_msec(),
ts_expires_ms=clock.time_msec() + 10000,
key_json_bytes=canonicaljson.encode_canonical_json(
{
"verify_keys": {
verify_key_id: {
"key": signedjson.key.encode_verify_key_base64(
verify_key
)
}
ts_added_ms=clock.time_msec(),
verify_keys={
verify_key_id: FetchKeyResult(
verify_key=verify_key, valid_until_ts=clock.time_msec() + 10000
),
},
response_json={
"verify_keys": {
verify_key_id: {
"key": signedjson.key.encode_verify_key_base64(verify_key)
}
}
),
},
)
)

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ classifiers = [
"Topic :: Software Development"
]
dependencies = [
"matrix-synapse[test]==1.92.2"
"matrix-synapse[test]==1.93.0"
]

[project.urls]
Expand Down

0 comments on commit 77ffc16

Please sign in to comment.