-
Notifications
You must be signed in to change notification settings - Fork 412
MSC4306: Thread Subscriptions #4306
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
1b3a088
to
3f1e83a
Compare
- Clients could maintain thread subscription settings in Room Account Data, as a map from event ID to the subscription settings. | ||
- This would be inefficient by requiring the entire subscription set for an entire room to be transferred at once, for example in Sliding Sync. | ||
- This would make subscriptions vulnerable to Read-Modify-Write race conditions (though this could be addressed with extensions to the Room Account Data APIs). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My hope was you could use (room) account data, but that doesn't have a "state key" or anything. I think it also limits you in size, which probably wouldn't work. 😢
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was also thinking of account data and I believe it isn't subject to the 64KiB limit?
What were you planning to use a state key for with thread subscriptions?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using account data in this way may not have the 64 kiB limit, but ideally we should try to avoid using it in more places that will make it hard to add that limit. (Since the lack of a limit is a mistake, I believe.)
The two problems I noted above are the main reasons I don't like using account data here:
- The read-modify-write issue
- Clients and servers having to operate on whole lists when they only care about one tiny portion of it.
I think Patrick's 'state key' mention is along the lines of: 'we only have a single key for each piece of room account data: the type'.
You could imagine using having an extra key, so room account data could be keyed on (m.thread.subscription
, $abc123def456
).
Or we could stretch things further to have 'Event Account Data' or something.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think Patrick's 'state key' mention is along the lines of: 'we only have a single key for each piece of room account data: the type'.
You could imagine using having an extra key, so room account data could be keyed on (m.thread.subscription
,$abc123def456
).
Oh, I see.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since the lack of a limit is a mistake, I believe.
Correct.
And your example of a state keys is spot on for what I was thinking.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder if expanding this to "relation subscriptions" would be helpful for any other use-cases. So a subscription is parent event+relation type?
Might not be super useful with the current relations though.
|
||
- Messages in unsubscribed threads should not count as activity at all; as a user, I do not want to see the room as unread because there are new messages in an unsubscribed thread. | ||
- Exceptions: if the user is mentioned, this should generate a notification as usual. (The push notification thus generated is also useful for the client to realise it needs to create an automatic thread subscription.) | ||
- Messages in subscribed threads should always count as a notification, and the (effective) room notification settings should not matter at all. E.g. the room can be muted, but if I, as a user, am subscribed to a thread, I still want to get a notification for new messages in that thread. If I do not want that, then I will unsubscribe. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
An API listing active subscriptions per room might also make unsubscribing easier?
- There is precedent for this granularity in the popular forum software *Discourse*, but the author is not aware of Instant Messaging software with this granularity. | ||
- With that said, this could be feasibly extended by a later MSC with no apparent issues. | ||
|
||
## Alternatives |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm kind of surprised there's no changes to the /threads
API?
|
||
- Messages in unsubscribed threads should not count as activity at all; as a user, I do not want to see the room as unread because there are new messages in an unsubscribed thread. | ||
- Exceptions: if the user is mentioned, this should generate a notification as usual. (The push notification thus generated is also useful for the client to realise it needs to create an automatic thread subscription.) | ||
- Messages in subscribed threads should always count as a notification, and the (effective) room notification settings should not matter at all. E.g. the room can be muted, but if I, as a user, am subscribed to a thread, I still want to get a notification for new messages in that thread. If I do not want that, then I will unsubscribe. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When a user mutes a room, it puts an override rule in for that room. And this override rule is the highest priority
So this is not possible to receive notification from a thread in a muted room.
The manual subscription should be disabled in this room at the UI level until the end user unmutes the room.
When a room is muted, the client should pursue the automatic thread subscriptions. These subscriptions will be ignored until the room is unmuted Keep managing the automatic subscription eases the potential switch mute/unmute of a room. The client UI should let the end user know any potential thread subscription is disabled in a muted room
- a new push rule (including a new push rule condition) that prevents notifying about threads that the user has not subscribed to. | ||
|
||
|
||
### New Endpoints |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why isn't there an endpoint to paginate all thread subscriptions in a room? (my expectation)
Similar to how clients back-paginate with messages in a room by starting with /sync
and then using /messages
to get the rest as necessary.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This would be pretty shoddy for performance if it was per-room (= 1 request needed per room), but maybe a global endpoint would be OK.
It just felt like sliding sync would do the job of getting the state down to the client without much fuss (like for room account data), but maybe that's wrong
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It just felt like sliding sync would do the job of getting the state down to the client without much fuss (like for room account data), but maybe that's wrong
We'd need to increase the equivalent of "timeline_limit" to simulate back-pagination, and that complicates a few things:
- if we're using the same SSS connection, then we're penalizing other updates, because we might change the connection parameters again and again until we've "paginated" all the receipts of all rooms
- …or we have to use a different SSS connection just for that, but it sounds a bit overkill 🥲
So agreed with @MadLittleMods that having the same "N last + pagination token if needs be" would be ideal.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems to boil down to: we should add an endpoint for backpaginating these. I'm tempted to push that into MSC4308 since it seems to complement the Sliding Sync API nicely
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pagination endpoint added in MSC4308
More discussion -> element-hq/synapse#18695 (comment)
This adds support for [MSC4306](matrix-org/matrix-spec-proposals#4306) endpoints, with a new Cargo feature for both.
|
||
This proposal consists of three main parts: | ||
- 3 simple endpoints for subscribing to and unsubscribing from threads; | ||
- new prescribed client behaviour when the user is mentioned in a thread; and |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we also subscribe when a user sends a message within a thread?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes IMO
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added the semantics for this in 84be8db, let me know if that works :)
|
||
- Messages in unsubscribed threads should not count as activity at all; as a user, I do not want to see the room as unread because there are new messages in an unsubscribed thread. | ||
- Exceptions: if the user is mentioned, this should generate a notification as usual. (The push notification thus generated is also useful for the client to realise it needs to create an automatic thread subscription.) | ||
- Messages in subscribed threads should always count as a notification, and the (effective) room notification settings should not matter at all. E.g. the room can be muted, but if I, as a user, am subscribed to a thread, I still want to get a notification for new messages in that thread. If I do not want that, then I will unsubscribe. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For what it's worth, I thought there was a little chicken-and-egg problem here, in the case of a new automatic subscription, but turns out there might not be.
Say I receive an event that would automatically subscribe me to a thread I haven't subscribed to (nor unsubscribed from). At this point, the thread subscription push rule wouldn't be triggered, because the subscription doesn't exist quite yet. But I'd expect the client to still notify about the thing! However, if an automatic subscription were to happen, that's likely because other push rules decided so: I've been mentioned in the thread, or there was a keyword mention, or something else. So there should be some notification created for that other event, which then causes the automatic subscription to the thread.
A notification will exist for the initial event that causes an automatic subscription; it is just not created by the new push rule yet. Future events in this thread will imply notifications because of the thread subscription push rule.
Am I getting this right? If so, it may be worth mentioning this around here, to help client implementations?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, you have it right.
Notably, the push rule unsubscribed_thread
is lower priority than the push rules for mentions, so it won't prevent you getting notifications for mentions
Though looking at it now, this unsubscribed_thread
does have higher priority than the rule that makes the server always push encrypted events to clients, so that's an angle we might need to find a solution for.
Could well be 'this rule needs to get ignored on encrypted events' :/
|
||
### New Client Behaviour: subscribe on mention | ||
|
||
When a user is mentioned in a thread (by another user — the *mentioning user*), the user's client should perform an automatic subscription to that thread using `PUT /subscription` with `{"automatic": true}`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Another precision question: should the wording say "when a user is mentioned" (in which case we're only interested in intentional mentions), or should the wording say "whenever a notification would be generated by push rules" (which then also includes keyword mentions, and would nicely generalize to any trigger of current and future push rules, making it future compatible as well)?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, maybe not such a bright idea: in this case, in a room where I'd get a notification for any message, I would be automatically subscribed to every thread (since every thread message is a message, and would trigger a notification).
It would be nice to clarify the intent here:
- should we auto-subscribe any time a notification would be generated (per the push rules), as hinted in my previous comment?
- if not, what's a mention? (keyword mention? username mention in clear text? intentional mention in metadata?)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this was intended to be very explicitly mentions, but you're bang on that we should carefully say what we mean here.
Here's my thoughts:
@room
— both intentional and fallback- intentional user mentions
- fallback plaintext mentions
- keyword mentions
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fallback mentions are going to be removed from the spec since MSC4210 was accepted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added in c3fecfa, let me know if this suits
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Overall I love how clearly written this MSC is; kudos.
|
||
If the mentioning user is banned in the room or ignored by the user, the automatic thread subscription should not occur. | ||
|
||
#### What counts as a mention |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm curious how this portion of the MSC would be translated to spec text. I worry if we have a separate list of "what's a mention", then that may because out of date over time.
Was this included to minimise inconsistent behaviour between clients w.r.t subscribing to threads?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, the secret is, we don't have a concept of mention for the subscription rules, that's just the intent. It's actually based on the existing push rules. (Kind of hard to read in between all the threads that interrupt, but if you look closely it's there, I think!)
So the spec text should probably try to make a stronger distinction with e.g. 'subscribe-on-notified', perhaps clarifying that the intent was for mentions to trigger this, but not only.
If an automatic thread subscription occurs and the mentioning user is subsequently banned (or ignored by the user, but without loss of generality we refer to the user as banned hereinafter), then: | ||
|
||
- the thread subscription should be reversed, | ||
- provided that there aren't any other mentions by other, non-banned, users that would have caused the same automatic subscription. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Servers have access to ignored users and membership metadata (currently). Would it not make sense for the server to take this on?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hm, interesting point. Wasn't intending for the server to store the information about which events contain mentions (it's not super nice for metadata); was also ultimately hoping that sending the event IDs would be a temporary workaround until clients can determine ordering themselves.
Maybe we are just essentially divulging metadata to the server anyway, without making the most of the information server-side? Not sure.
|
||
- Since clients will be automatically updating the Thread Subscription Settings when their user is mentioned, server implementations should be ready to handle concurrent updates by multiple of the user's devices/clients when they are online at the same time. | ||
|
||
## Unstable amendments |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
M_SKIPPED
and M_NOT_IN_THREAD
should have unstable alternatives as well.
|
||
If an automatic subscription was requested but the automatic subscription is skipped by the server, returns 409 (Conflict) with `M_CONFLICTING_UNSUBSCRIPTION`. See the section below on *'Server-side automatic subscription ordering'*. | ||
|
||
If the thread does not exist, or if the user does not have access to it, returns 404/`M_NOT_FOUND`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it possible to pre-subscribe to a message so if people thread off it, you can catch it?
To this end, we must prevent automatic subscriptions being re-applied when an unsubscription occurred *after* receipt of the event causing a subscription. | ||
|
||
As clients are currently not privy to the ordering of events, we propose that the server is left in charge of making the ordering decision. | ||
|
||
For this to work, when a client requests an automatic subscription, it presents the event ID of the latest event it has seen that would give rise to this automatic subscription (**the 'cause event'**). | ||
|
||
The server will skip the subscription if it determines that the automatic subscription is for an event that was already acknowledged at the time a manual unsubscription was requested. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Spawning from a comment on a implementation PR,
Currently, in Synapse, this is implemented as when a person unsubscribes, it will store the latest stream_ordering
and topological_ordering
in the room to compare against any future subscription 'cause' events.
Looking up the max stream_ordering
and topological_ordering
on the server at the time of unsubscription has the flaw that if the client has an outdated view of the world and sends an unsubscribe, we will be unsubscribed even though other clients may see new mentions in the thread that they want to subscribe to.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My justification here is that, talking of user action, 'unsubscribe means unsubscribe' and 'subscribe means subscribe'. i.e. if the user wants to do something, we don't question them.
I think this is ultimately defensible, even if you could argue both ways about it.
It's a fairly slim window for a race, and even still, if you clicked unsubscribe at 18:09 but later scroll down and notice you are (still) auto-subscribed because of an event at 18:07 that you didn't read yet, would you think the software was being reasonable or unreasonable?
fc0d965
to
bd9e842
Compare
|
||
- Since clients will be automatically updating the Thread Subscription Settings when their user is mentioned, server implementations should be ready to handle concurrent updates by multiple of the user's devices/clients when they are online at the same time. | ||
|
||
## Unstable amendments |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
postcontent
should use an unstable prefix for now.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've used io.element.msc4306.postcontent
at the time being, in the Ruma PR implementing the new push rules changes. Not sure it should be that or post_content
, depending on how would one capitalize it: Postcontent
or PostContent
. (Let the doors of bikeshedding hell open :))
|
||
This proposal introduces a new mechanism, Thread Subscriptions, as a first-class way for users to signal which threads they care about. | ||
|
||
We then add a new push rule so that users can receive push notifications only for threads that they care about. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If the proposal is to receive notification for all messages from "subscribed" thread could not that be achieved with the existing push rules semantics? Example:
{
"conditions": [
{
"kind": "event_property_is",
"key": "content.m\\.relates_to.rel_type",
"value": "m.thread"
},
{
"kind": "event_property_is",
"key": "content.m\\.relates_to.event_id",
"value": "$thread_root_message_id"
}
],
"actions": [
"notify",
{
"set_tweak": "highlight"
}
],
"rule_id": "$thread_root_message_id",
"default": true,
"enabled": true
}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the set of conditions, where does the fact that the user is subscribed (or not) to a thread appear?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Client can check for the rule_id
generated with thread root event_id
in m.push_rules
. If it finds the rule that means user has opt for "subscribed" (if rule has actions) and "unsubscribed" (if actions are empty). If it does not find any rule, client will work how it works currently and suggest for "subscribe" / "mute" thread button in UI.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Interesting idea, thanks for bringing it up. I think that it's a tradeoff: the approach you're suggesting here would likely make the size of the rules event blow up, especially thanks to the prescribed automatic subscription mechanisms which could add lots and lots of subscribed threads by default. The approach suggested in this MSC makes it a default rule, that requires a bit more work during evaluation of the push rules (now, a client might need to fetch via network, or load from disk, the subscription status of a thread). The MSC's approach doesn't make the push rules event grow linearly with the number of threads one's subscribed to/muted, which I find a strong benefit here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Main problems I can see are that I would rather avoid speccing anything that depends on an unlimited account data size, ultimately.
Other than that, this doesn't support the automatic subscription ordering logic that we need.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After reading again through the msc, I have following concerns which might be helpful for this alternative consideration:
- Automatic subscription have exploitable behaviour and "Malicious users can be ignored by the user" is practically undoable as a system can not easily detect Malicious users, the same problem as we have with invites. And since the mention already create notification a user will notice the activity in thread and can decide to subscribe/ignore when they will open the thread.
- Since the notification preference for "subscribe" and "unsubscribed" is applied on all rooms a user can not configure it per-room bases. Example: 1) I want to receive notification for all thread messages from my work related room and not for public community rooms. 2) I want sound notification from my subscribed thread from work room but without sound from public community rooms.
- If a room is muted subscribed thread rule in
postContent
is suppressed as muted room rule will be inoverride
.
We may can consider this kind of three rules:
- In
underride
to configure default notification behaviour for all rooms and for all thread replies. - In
rooms
to configure notification behaviour for specific room for all thread replies. - In
override
to subscribe to specific thread
Although the event size will always be a limiting factor, but a client can provide a section for all subscribed threads to maintain this list but the experience of such a feature will depend on the quality of implementation.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Re (2), is there anything preventing a client from reusing the thread_subscription
condition kind in a rooms
rule? I don't see any such restriction, so the behavior you're describing could be implemented by reusing this condition kind in this section.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(1) Automatic subscription have exploitable behaviour and "Malicious users can be ignored by the user" is practically undoable as a system can not easily detect Malicious users,
This is referring to the user's own 'ignored user' list, not any automated system.
(2) can be configured with push rules, but we are cautious about suggesting exposing too many control knobs to users because it makes for confusing UI
(3) a room being muted when muted is indeed intentional. As described in the MSC, the mental model is that the 'Mentions & Keyword' setting becomes equivalent to 'Mentions, Keywords & Subscribed Thread' and this is the level we're working at. (Our hands are also tied whilst keeping the push rules as sane as possible, until push rules are replaced in the future)
The account data being of unlimited size is considered a mistake, fwiw, therefore I don't buy that we should rely on it for this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Re (2), is there anything preventing a client from reusing the thread_subscription condition kind in a rooms rule?
Yes, since the msc specify that:
we propose the addition of two new push rules, both added to a new push rule
kind
calledpostcontent
, which is ordered between content and room
any rule added in rooms
with condition kind
: thread_subscription
will be overridden by the same rule in the postcontent
since it has the high priority over rooms
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(3) a room being muted when muted is indeed intentional.
I am not sure if i get it correctly. What i mean was that msc says.
Messages in subscribed threads should always count as a notification, and the (effective) room notification settings should not matter at all. E.g. the room can be muted, but if I, as a user, am subscribed to a thread, I still want to get a notification for new messages in that thread. If I do not want that, then I will unsubscribe.
user can not get notification for subscribed thread because the room mute rule is added to the override
section and apply on every event and should suppress the subscribed thread notifications per the spec.
- Messages in unsubscribed threads should not count as activity at all; as a user, I do not want to see the room as unread because there are new messages in an unsubscribed thread. | ||
- Exceptions: if the user is mentioned, this should generate a notification as usual. (The push notification thus generated is also useful for the client to realise it needs to create an automatic thread subscription.) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since the default thread subscription state is "unsubscribed", could not this confuse user as the propose of showing "activity" is to advertise user that there can be possible interesting conversation. This suggestion can make user missing them.
Also the exceptions mentions to generate notification for "mentions" which includes room mentions, user/fallback mention, user configured keywords. but the push rule semantic is free for other personal customization wondering how that will with work with them.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The default 'unsubscription' state is intended to reduce noise and notification fatigue, so keeping it squirreled away in the UI is kind of intentional — not that you can't have other UI to surface missed activity there, just that it shouldn't (in principle) count as noisy room activity.
The semantics are written in https://github.com/matrix-org/matrix-spec-proposals/pull/4306/files#diff-f42a2b8bda41aad63a982965d5f5b7165e62ddc06484c0ee3806024646ab9fdaR140 and should generalise semi-well (about as well as one could hope, given the free-for-all nature of push rules) to custom rules.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The proposals says:
I do not want to see the room as unread because there are new messages in an unsubscribed thread.
It says unread (generally a dot without count) compare to notification (noisy/not) (badge with count). Notifications as badge-with-count are suppressed purposefully but unread as dot-without-count indicate general room activity is what I have concern about.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, suppressing the indicator of room-wide activity is considered a good thing, because it reduces the cognitive load on users. But for use cases where it's important to see all activity, I think it is easy to either disable the push rule or provide other UI if necessary
# Synapse 1.139.0 (2025-09-30) ## Features - Add experimental support for [MSC4308: Thread Subscriptions extension to Sliding Sync](matrix-org/matrix-spec-proposals#4308) when [MSC4306: Thread Subscriptions](matrix-org/matrix-spec-proposals#4306) and [MSC4186: Simplified Sliding Sync](matrix-org/matrix-spec-proposals#4186) are enabled. ([\#18695](element-hq/synapse#18695)) - Update push rules for experimental [MSC4306: Thread Subscriptions](matrix-org/matrix-spec-proposals#4306) to follow a newer draft. ([\#18846](element-hq/synapse#18846)) - Add `get_media_upload_limits_for_user` and `on_media_upload_limit_exceeded` module API callbacks to the media repository. ([\#18848](element-hq/synapse#18848)) - Support [MSC4169](matrix-org/matrix-spec-proposals#4169) for backwards-compatible redaction sending using the `/send` endpoint. Contributed by @SpiritCroc @ Beeper. ([\#18898](element-hq/synapse#18898)) - Add an in-memory cache to `_get_e2e_cross_signing_signatures_for_devices` to reduce DB load. ([\#18899](element-hq/synapse#18899)) - Update [MSC4190](matrix-org/matrix-spec-proposals#4190) support to return correct errors and allow appservices to reset cross-signing keys without user-interactive authentication. Contributed by @tulir @ Beeper. ([\#18946](element-hq/synapse#18946)) ## Deprecations and Removals - Remove obsolete and experimental `/sync/e2ee` endpoint. ([\#18583](element-hq/synapse#18583)) # Synapse 1.138.0 (2025-09-09) ## Features - Support for the stable endpoint and scopes of [MSC3861](matrix-org/matrix-spec-proposals#3861) & co. ([\#18549](element-hq/synapse#18549))
Rendered