Skip to content

Commit

Permalink
Release 1.95.0.0 for synapse 1.95.0
Browse files Browse the repository at this point in the history
  • Loading branch information
julianhille committed Nov 19, 2023
1 parent 71b2694 commit e1c84f1
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 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.95.0.0] - 2023-11-19

### Updated

- Synapse to 1.95.0

### [1.94.0.0] - 2023-11-19

### Updated
Expand Down Expand Up @@ -239,7 +245,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.94.0.0...HEAD
[unreleased]: https://github.com/conhealth/LifeTime-Desktop/compare/v1.95.0.0...HEAD
[1.95.0.0]: https://github.com/conhealth/LifeTime-Desktop/compare/v1.94.0.0...v1.95.0.0
[1.94.0.0]: https://github.com/conhealth/LifeTime-Desktop/compare/v1.93.0.0...v1.94.0.0
[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
Expand Down
6 changes: 2 additions & 4 deletions matrix_synapse_testutils/rest/client/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,14 @@
from typing_extensions import Literal

from twisted.test.proto_helpers import MemoryReactorClock
from twisted.web.resource import Resource
from twisted.web.server import Site

from synapse.api.constants import Membership
from synapse.api.errors import Codes
from synapse.server import HomeServer
from synapse.types import JsonDict

from matrix_synapse_testutils.server import FakeChannel, FakeSite, make_request
from matrix_synapse_testutils.server import FakeChannel, make_request
from matrix_synapse_testutils.test_utils.html_parsers import TestHtmlParser
from matrix_synapse_testutils.test_utils.oidc import FakeAuthorizationGrant, FakeOidcServer

Expand Down Expand Up @@ -558,7 +557,6 @@ def send_state(

def upload_media(
self,
resource: Resource,
image_data: bytes,
tok: str,
filename: str = "test.png",
Expand All @@ -576,7 +574,7 @@ def upload_media(
path = "/_matrix/media/r0/upload?filename=%s" % (filename,)
channel = make_request(
self.reactor,
FakeSite(resource, self.reactor),
self.site,
"POST",
path,
content=image_data,
Expand Down
4 changes: 2 additions & 2 deletions matrix_synapse_testutils/unittest.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
from synapse.config.server import DEFAULT_ROOM_VERSION
from synapse.crypto.event_signing import add_hashes_and_signatures
from synapse.federation.transport.server import TransportLayerServer
from synapse.http.server import JsonResource
from synapse.http.server import JsonResource, OptionsResource
from synapse.http.site import SynapseRequest, SynapseSite
from synapse.logging.context import (
SENTINEL_CONTEXT,
Expand Down Expand Up @@ -459,7 +459,7 @@ def create_test_resource(self) -> Resource:
The default calls `self.create_resource_dict` and builds the resultant dict
into a tree.
"""
root_resource = Resource()
root_resource = OptionsResource()
create_resource_tree(self.create_resource_dict(), root_resource)
return root_resource

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.94.0"
"matrix-synapse[test]==1.95.0"
]

[project.urls]
Expand Down

0 comments on commit e1c84f1

Please sign in to comment.