Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit ed6b772

Browse files
committed
resolve conflict with mypy.ini, pulled from upstream.
2 parents 317065a + 96e0cdb commit ed6b772

File tree

29 files changed

+212
-136
lines changed

29 files changed

+212
-136
lines changed

.github/workflows/latest_deps.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,15 @@ jobs:
3232
with:
3333
python-version: "3.x"
3434
poetry-version: "1.2.0b1"
35+
extras: "all"
3536
# Dump installed versions for debugging.
3637
- run: poetry run pip list > before.txt
3738
# Upgrade all runtime dependencies only. This is intended to mimic a fresh
3839
# `pip install matrix-synapse[all]` as closely as possible.
3940
- run: poetry update --no-dev
4041
- run: poetry run pip list > after.txt && (diff -u before.txt after.txt || true)
42+
- name: Remove warn_unused_ignores from mypy config
43+
run: sed '/warn_unused_ignores = True/d' -i mypy.ini
4144
- run: poetry run mypy
4245
trial:
4346
runs-on: ubuntu-latest

.github/workflows/twisted_trunk.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ jobs:
2424
poetry remove twisted
2525
poetry add --extras tls git+https://github.com/twisted/twisted.git#trunk
2626
poetry install --no-interaction --extras "all test"
27+
- name: Remove warn_unused_ignores from mypy config
28+
run: sed '/warn_unused_ignores = True/d' -i mypy.ini
2729
- run: poetry run mypy
2830

2931
trial:

CHANGES.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
Synapse 1.58.0 (2022-05-03)
2+
===========================
3+
4+
As of this release, the groups/communities feature in Synapse is now disabled by default. See [\#11584](https://github.com/matrix-org/synapse/issues/11584) for details. As mentioned in [the upgrade notes](https://github.com/matrix-org/synapse/blob/develop/docs/upgrade.md#upgrading-to-v1580), this feature will be removed in Synapse 1.61.
5+
6+
No significant changes since 1.58.0rc2.
7+
8+
19
Synapse 1.58.0rc2 (2022-04-26)
210
==============================
311

@@ -19,8 +27,6 @@ Internal Changes
1927
Synapse 1.58.0rc1 (2022-04-26)
2028
==============================
2129

22-
As of this release, the groups/communities feature in Synapse is now disabled by default. See [\#11584](https://github.com/matrix-org/synapse/issues/11584) for details. As mentioned in [the upgrade notes](https://github.com/matrix-org/synapse/blob/develop/docs/upgrade.md#upgrading-to-v1580), this feature will be removed in Synapse 1.61.
23-
2430
Features
2531
--------
2632

changelog.d/12556.misc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Release script: confirm the commit to be tagged before tagging.

changelog.d/12570.bugfix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix a bug introduced in Synapse 1.57 which could cause `Failed to calculate hosts in room` errors to be logged for outbound federation.

changelog.d/12576.misc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Allow unused `#type: ignore` comments in bleeding edge CI jobs.

changelog.d/12589.misc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Remove special-case for `twisted` logger from default log config.

changelog.d/12594.bugfix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix race when persisting an event and deleting a room that could lead to outbound federation breaking.

changelog.d/12596.removal

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Remove unstable identifiers from [MSC3069](https://github.com/matrix-org/matrix-doc/pull/3069).

changelog.d/12608.misc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Remove redundant lines of config from `mypy.ini`.

0 commit comments

Comments
 (0)