Merge branch 'release-v1.40' into develop
This commit is contained in:
commit
f8e86b7d2e
21
CHANGES.md
21
CHANGES.md
|
@ -1,3 +1,24 @@
|
||||||
|
Synapse 1.40.0rc3 (2021-08-09)
|
||||||
|
==============================
|
||||||
|
|
||||||
|
Features
|
||||||
|
--------
|
||||||
|
|
||||||
|
- Support [MSC3289: room version 8](https://github.com/matrix-org/matrix-doc/pull/3289). ([\#10449](https://github.com/matrix-org/synapse/issues/10449))
|
||||||
|
|
||||||
|
|
||||||
|
Bugfixes
|
||||||
|
--------
|
||||||
|
|
||||||
|
- Mark the experimental room version from [MSC2716](https://github.com/matrix-org/matrix-doc/pull/2716) as unstable. ([\#10449](https://github.com/matrix-org/synapse/issues/10449))
|
||||||
|
|
||||||
|
|
||||||
|
Improved Documentation
|
||||||
|
----------------------
|
||||||
|
|
||||||
|
- Fix broken links in `upgrade.md`. Contributed by @dklimpel. ([\#10543](https://github.com/matrix-org/synapse/issues/10543))
|
||||||
|
|
||||||
|
|
||||||
Synapse 1.40.0rc2 (2021-08-04)
|
Synapse 1.40.0rc2 (2021-08-04)
|
||||||
==============================
|
==============================
|
||||||
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
Fix broken links in `upgrade.md`. Contributed by @dklimpel.
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
matrix-synapse-py3 (1.40.0~rc3) stable; urgency=medium
|
||||||
|
|
||||||
|
* New synapse release 1.40.0~rc3.
|
||||||
|
|
||||||
|
-- Synapse Packaging team <packages@matrix.org> Mon, 09 Aug 2021 13:41:08 +0100
|
||||||
|
|
||||||
matrix-synapse-py3 (1.40.0~rc2) stable; urgency=medium
|
matrix-synapse-py3 (1.40.0~rc2) stable; urgency=medium
|
||||||
|
|
||||||
* New synapse release 1.40.0~rc2.
|
* New synapse release 1.40.0~rc2.
|
||||||
|
|
|
@ -47,7 +47,7 @@ try:
|
||||||
except ImportError:
|
except ImportError:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
__version__ = "1.40.0rc2"
|
__version__ = "1.40.0rc3"
|
||||||
|
|
||||||
if bool(os.environ.get("SYNAPSE_TEST_PATCH_LOG_CONTEXTS", False)):
|
if bool(os.environ.get("SYNAPSE_TEST_PATCH_LOG_CONTEXTS", False)):
|
||||||
# We import here so that we don't have to install a bunch of deps when
|
# We import here so that we don't have to install a bunch of deps when
|
||||||
|
|
|
@ -62,7 +62,7 @@ class JoinRules:
|
||||||
INVITE = "invite"
|
INVITE = "invite"
|
||||||
PRIVATE = "private"
|
PRIVATE = "private"
|
||||||
# As defined for MSC3083.
|
# As defined for MSC3083.
|
||||||
MSC3083_RESTRICTED = "restricted"
|
RESTRICTED = "restricted"
|
||||||
|
|
||||||
|
|
||||||
class RestrictedJoinRuleTypes:
|
class RestrictedJoinRuleTypes:
|
||||||
|
|
|
@ -177,20 +177,6 @@ class RoomVersions:
|
||||||
msc2403_knocking=False,
|
msc2403_knocking=False,
|
||||||
msc2716_historical=False,
|
msc2716_historical=False,
|
||||||
)
|
)
|
||||||
MSC3083 = RoomVersion(
|
|
||||||
"org.matrix.msc3083.v2",
|
|
||||||
RoomDisposition.UNSTABLE,
|
|
||||||
EventFormatVersions.V3,
|
|
||||||
StateResolutionVersions.V2,
|
|
||||||
enforce_key_validity=True,
|
|
||||||
special_case_aliases_auth=False,
|
|
||||||
strict_canonicaljson=True,
|
|
||||||
limit_notifications_power_levels=True,
|
|
||||||
msc2176_redaction_rules=False,
|
|
||||||
msc3083_join_rules=True,
|
|
||||||
msc2403_knocking=False,
|
|
||||||
msc2716_historical=False,
|
|
||||||
)
|
|
||||||
V7 = RoomVersion(
|
V7 = RoomVersion(
|
||||||
"7",
|
"7",
|
||||||
RoomDisposition.STABLE,
|
RoomDisposition.STABLE,
|
||||||
|
@ -207,7 +193,7 @@ class RoomVersions:
|
||||||
)
|
)
|
||||||
MSC2716 = RoomVersion(
|
MSC2716 = RoomVersion(
|
||||||
"org.matrix.msc2716",
|
"org.matrix.msc2716",
|
||||||
RoomDisposition.STABLE,
|
RoomDisposition.UNSTABLE,
|
||||||
EventFormatVersions.V3,
|
EventFormatVersions.V3,
|
||||||
StateResolutionVersions.V2,
|
StateResolutionVersions.V2,
|
||||||
enforce_key_validity=True,
|
enforce_key_validity=True,
|
||||||
|
@ -219,6 +205,20 @@ class RoomVersions:
|
||||||
msc2403_knocking=True,
|
msc2403_knocking=True,
|
||||||
msc2716_historical=True,
|
msc2716_historical=True,
|
||||||
)
|
)
|
||||||
|
V8 = RoomVersion(
|
||||||
|
"8",
|
||||||
|
RoomDisposition.STABLE,
|
||||||
|
EventFormatVersions.V3,
|
||||||
|
StateResolutionVersions.V2,
|
||||||
|
enforce_key_validity=True,
|
||||||
|
special_case_aliases_auth=False,
|
||||||
|
strict_canonicaljson=True,
|
||||||
|
limit_notifications_power_levels=True,
|
||||||
|
msc2176_redaction_rules=False,
|
||||||
|
msc3083_join_rules=True,
|
||||||
|
msc2403_knocking=True,
|
||||||
|
msc2716_historical=False,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
KNOWN_ROOM_VERSIONS: Dict[str, RoomVersion] = {
|
KNOWN_ROOM_VERSIONS: Dict[str, RoomVersion] = {
|
||||||
|
@ -231,9 +231,9 @@ KNOWN_ROOM_VERSIONS: Dict[str, RoomVersion] = {
|
||||||
RoomVersions.V5,
|
RoomVersions.V5,
|
||||||
RoomVersions.V6,
|
RoomVersions.V6,
|
||||||
RoomVersions.MSC2176,
|
RoomVersions.MSC2176,
|
||||||
RoomVersions.MSC3083,
|
|
||||||
RoomVersions.V7,
|
RoomVersions.V7,
|
||||||
RoomVersions.MSC2716,
|
RoomVersions.MSC2716,
|
||||||
|
RoomVersions.V8,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -370,10 +370,7 @@ def _is_membership_change_allowed(
|
||||||
raise AuthError(403, "You are banned from this room")
|
raise AuthError(403, "You are banned from this room")
|
||||||
elif join_rule == JoinRules.PUBLIC:
|
elif join_rule == JoinRules.PUBLIC:
|
||||||
pass
|
pass
|
||||||
elif (
|
elif room_version.msc3083_join_rules and join_rule == JoinRules.RESTRICTED:
|
||||||
room_version.msc3083_join_rules
|
|
||||||
and join_rule == JoinRules.MSC3083_RESTRICTED
|
|
||||||
):
|
|
||||||
# This is the same as public, but the event must contain a reference
|
# This is the same as public, but the event must contain a reference
|
||||||
# to the server who authorised the join. If the event does not contain
|
# to the server who authorised the join. If the event does not contain
|
||||||
# the proper content it is rejected.
|
# the proper content it is rejected.
|
||||||
|
|
|
@ -240,7 +240,7 @@ class EventAuthHandler:
|
||||||
|
|
||||||
# If the join rule is not restricted, this doesn't apply.
|
# If the join rule is not restricted, this doesn't apply.
|
||||||
join_rules_event = await self._store.get_event(join_rules_event_id)
|
join_rules_event = await self._store.get_event(join_rules_event_id)
|
||||||
return join_rules_event.content.get("join_rule") == JoinRules.MSC3083_RESTRICTED
|
return join_rules_event.content.get("join_rule") == JoinRules.RESTRICTED
|
||||||
|
|
||||||
async def get_rooms_that_allow_join(
|
async def get_rooms_that_allow_join(
|
||||||
self, state_ids: StateMap[str]
|
self, state_ids: StateMap[str]
|
||||||
|
|
|
@ -341,7 +341,7 @@ class PruneEventTestCase(unittest.TestCase):
|
||||||
"signatures": {},
|
"signatures": {},
|
||||||
"unsigned": {},
|
"unsigned": {},
|
||||||
},
|
},
|
||||||
room_version=RoomVersions.MSC3083,
|
room_version=RoomVersions.V8,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -231,13 +231,13 @@ class SpaceSummaryTestCase(unittest.HomeserverTestCase):
|
||||||
invited_room = self._create_room_with_join_rule(JoinRules.INVITE)
|
invited_room = self._create_room_with_join_rule(JoinRules.INVITE)
|
||||||
self.helper.invite(invited_room, targ=user2, tok=self.token)
|
self.helper.invite(invited_room, targ=user2, tok=self.token)
|
||||||
restricted_room = self._create_room_with_join_rule(
|
restricted_room = self._create_room_with_join_rule(
|
||||||
JoinRules.MSC3083_RESTRICTED,
|
JoinRules.RESTRICTED,
|
||||||
room_version=RoomVersions.MSC3083.identifier,
|
room_version=RoomVersions.V8.identifier,
|
||||||
allow=[],
|
allow=[],
|
||||||
)
|
)
|
||||||
restricted_accessible_room = self._create_room_with_join_rule(
|
restricted_accessible_room = self._create_room_with_join_rule(
|
||||||
JoinRules.MSC3083_RESTRICTED,
|
JoinRules.RESTRICTED,
|
||||||
room_version=RoomVersions.MSC3083.identifier,
|
room_version=RoomVersions.V8.identifier,
|
||||||
allow=[
|
allow=[
|
||||||
{
|
{
|
||||||
"type": RestrictedJoinRuleTypes.ROOM_MEMBERSHIP,
|
"type": RestrictedJoinRuleTypes.ROOM_MEMBERSHIP,
|
||||||
|
@ -477,7 +477,7 @@ class SpaceSummaryTestCase(unittest.HomeserverTestCase):
|
||||||
{
|
{
|
||||||
"room_id": restricted_room,
|
"room_id": restricted_room,
|
||||||
"world_readable": False,
|
"world_readable": False,
|
||||||
"join_rules": JoinRules.MSC3083_RESTRICTED,
|
"join_rules": JoinRules.RESTRICTED,
|
||||||
"allowed_spaces": [],
|
"allowed_spaces": [],
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
@ -486,7 +486,7 @@ class SpaceSummaryTestCase(unittest.HomeserverTestCase):
|
||||||
{
|
{
|
||||||
"room_id": restricted_accessible_room,
|
"room_id": restricted_accessible_room,
|
||||||
"world_readable": False,
|
"world_readable": False,
|
||||||
"join_rules": JoinRules.MSC3083_RESTRICTED,
|
"join_rules": JoinRules.RESTRICTED,
|
||||||
"allowed_spaces": [self.room],
|
"allowed_spaces": [self.room],
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
|
|
@ -384,7 +384,7 @@ class EventAuthTestCase(unittest.TestCase):
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
event_auth.check(
|
event_auth.check(
|
||||||
RoomVersions.MSC3083,
|
RoomVersions.V8,
|
||||||
authorised_join_event,
|
authorised_join_event,
|
||||||
auth_events,
|
auth_events,
|
||||||
do_sig_check=False,
|
do_sig_check=False,
|
||||||
|
@ -400,7 +400,7 @@ class EventAuthTestCase(unittest.TestCase):
|
||||||
"@inviter:foo.test"
|
"@inviter:foo.test"
|
||||||
)
|
)
|
||||||
event_auth.check(
|
event_auth.check(
|
||||||
RoomVersions.MSC3083,
|
RoomVersions.V8,
|
||||||
_join_event(
|
_join_event(
|
||||||
pleb,
|
pleb,
|
||||||
additional_content={
|
additional_content={
|
||||||
|
@ -414,7 +414,7 @@ class EventAuthTestCase(unittest.TestCase):
|
||||||
# A join which is missing an authorised server is rejected.
|
# A join which is missing an authorised server is rejected.
|
||||||
with self.assertRaises(AuthError):
|
with self.assertRaises(AuthError):
|
||||||
event_auth.check(
|
event_auth.check(
|
||||||
RoomVersions.MSC3083,
|
RoomVersions.V8,
|
||||||
_join_event(pleb),
|
_join_event(pleb),
|
||||||
auth_events,
|
auth_events,
|
||||||
do_sig_check=False,
|
do_sig_check=False,
|
||||||
|
@ -427,7 +427,7 @@ class EventAuthTestCase(unittest.TestCase):
|
||||||
)
|
)
|
||||||
with self.assertRaises(AuthError):
|
with self.assertRaises(AuthError):
|
||||||
event_auth.check(
|
event_auth.check(
|
||||||
RoomVersions.MSC3083,
|
RoomVersions.V8,
|
||||||
_join_event(
|
_join_event(
|
||||||
pleb,
|
pleb,
|
||||||
additional_content={
|
additional_content={
|
||||||
|
@ -442,7 +442,7 @@ class EventAuthTestCase(unittest.TestCase):
|
||||||
# *would* be valid, but is sent be a different user.)
|
# *would* be valid, but is sent be a different user.)
|
||||||
with self.assertRaises(AuthError):
|
with self.assertRaises(AuthError):
|
||||||
event_auth.check(
|
event_auth.check(
|
||||||
RoomVersions.MSC3083,
|
RoomVersions.V8,
|
||||||
_member_event(
|
_member_event(
|
||||||
pleb,
|
pleb,
|
||||||
"join",
|
"join",
|
||||||
|
@ -459,7 +459,7 @@ class EventAuthTestCase(unittest.TestCase):
|
||||||
auth_events[("m.room.member", pleb)] = _member_event(pleb, "ban")
|
auth_events[("m.room.member", pleb)] = _member_event(pleb, "ban")
|
||||||
with self.assertRaises(AuthError):
|
with self.assertRaises(AuthError):
|
||||||
event_auth.check(
|
event_auth.check(
|
||||||
RoomVersions.MSC3083,
|
RoomVersions.V8,
|
||||||
authorised_join_event,
|
authorised_join_event,
|
||||||
auth_events,
|
auth_events,
|
||||||
do_sig_check=False,
|
do_sig_check=False,
|
||||||
|
@ -468,7 +468,7 @@ class EventAuthTestCase(unittest.TestCase):
|
||||||
# A user who left can re-join.
|
# A user who left can re-join.
|
||||||
auth_events[("m.room.member", pleb)] = _member_event(pleb, "leave")
|
auth_events[("m.room.member", pleb)] = _member_event(pleb, "leave")
|
||||||
event_auth.check(
|
event_auth.check(
|
||||||
RoomVersions.MSC3083,
|
RoomVersions.V8,
|
||||||
authorised_join_event,
|
authorised_join_event,
|
||||||
auth_events,
|
auth_events,
|
||||||
do_sig_check=False,
|
do_sig_check=False,
|
||||||
|
@ -478,7 +478,7 @@ class EventAuthTestCase(unittest.TestCase):
|
||||||
# be authorised since the user is already joined.)
|
# be authorised since the user is already joined.)
|
||||||
auth_events[("m.room.member", pleb)] = _member_event(pleb, "join")
|
auth_events[("m.room.member", pleb)] = _member_event(pleb, "join")
|
||||||
event_auth.check(
|
event_auth.check(
|
||||||
RoomVersions.MSC3083,
|
RoomVersions.V8,
|
||||||
_join_event(pleb),
|
_join_event(pleb),
|
||||||
auth_events,
|
auth_events,
|
||||||
do_sig_check=False,
|
do_sig_check=False,
|
||||||
|
@ -490,7 +490,7 @@ class EventAuthTestCase(unittest.TestCase):
|
||||||
pleb, "invite", sender=creator
|
pleb, "invite", sender=creator
|
||||||
)
|
)
|
||||||
event_auth.check(
|
event_auth.check(
|
||||||
RoomVersions.MSC3083,
|
RoomVersions.V8,
|
||||||
_join_event(pleb),
|
_join_event(pleb),
|
||||||
auth_events,
|
auth_events,
|
||||||
do_sig_check=False,
|
do_sig_check=False,
|
||||||
|
|
Loading…
Reference in New Issue