Skip to content

Commit

Permalink
Release 1.89.0.0 for synapse 1.89.0
Browse files Browse the repository at this point in the history
  • Loading branch information
julianhille committed Nov 19, 2023
1 parent 71c631a commit 0974708
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 3 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.89.0.0] - 2023-11-19

### Updated

- Synapse to 1.89.0

### [1.88.0.0] - 2023-11-19

### Updated
Expand Down Expand Up @@ -191,7 +197,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.88.0.0...HEAD
[unreleased]: https://github.com/conhealth/LifeTime-Desktop/compare/v1.89.0.0...HEAD
[1.89.0.0]: https://github.com/conhealth/LifeTime-Desktop/compare/v1.88.0.0...v1.89.0.0
[1.88.0.0]: https://github.com/conhealth/LifeTime-Desktop/compare/v1.87.0.0...v1.88.0.0
[1.87.0.0]: https://github.com/conhealth/LifeTime-Desktop/compare/v1.86.0.0...v1.87.0.0
[1.86.0.0]: https://github.com/conhealth/LifeTime-Desktop/compare/v1.85.1.0...v1.86.0.0
Expand Down
32 changes: 31 additions & 1 deletion matrix_synapse_testutils/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
IConnector,
IConsumer,
IHostnameResolver,
IListeningPort,
IProducer,
IProtocol,
IPullProducer,
Expand All @@ -62,7 +63,7 @@
IResolverSimple,
ITransport,
)
from twisted.internet.protocol import ClientFactory, DatagramProtocol
from twisted.internet.protocol import ClientFactory, DatagramProtocol, Factory
from twisted.python import threadpool
from twisted.python.failure import Failure
from twisted.test.proto_helpers import AccumulatingProtocol, MemoryReactorClock
Expand Down Expand Up @@ -523,6 +524,35 @@ def add_tcp_client_callback(
"""
self._tcp_callbacks[(host, port)] = callback

def connectUNIX(
self,
address: str,
factory: ClientFactory,
timeout: float = 30,
checkPID: int = 0,
) -> IConnector:
"""
Unix sockets aren't supported for unit tests yet. Make it obvious to any
developer trying it out that they will need to do some work before being able
to use it in tests.
"""
raise Exception("Unix sockets are not implemented for tests yet, sorry.")

def listenUNIX(
self,
address: str,
factory: Factory,
backlog: int = 50,
mode: int = 0o666,
wantPID: int = 0,
) -> IListeningPort:
"""
Unix sockets aren't supported for unit tests yet. Make it obvious to any
developer trying it out that they will need to do some work before being able
to use it in tests.
"""
raise Exception("Unix sockets are not implemented for tests, sorry")

def connectTCP(
self,
host: str,
Expand Down
1 change: 1 addition & 0 deletions matrix_synapse_testutils/unittest.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,7 @@ def setUp(self) -> None:
server_version_string="1",
max_request_body_size=4096,
reactor=self.reactor,
hs=self.hs,
)

from matrix_synapse_testutils.rest.client.utils import RestHelper
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.88.0"
"matrix-synapse[test]==1.89.0"
]

[project.urls]
Expand Down

0 comments on commit 0974708

Please sign in to comment.