-
Notifications
You must be signed in to change notification settings - Fork 332
feat(sdk): add support for thread subscription endpoints (MSC4306) #5439
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
Conversation
b90eabf
to
e2378bf
Compare
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #5439 +/- ##
==========================================
- Coverage 88.89% 88.88% -0.01%
==========================================
Files 333 333
Lines 91884 91993 +109
Branches 91884 91993 +109
==========================================
+ Hits 81677 81768 +91
- Misses 6376 6390 +14
- Partials 3831 3835 +4 ☔ View full report in Codecov by Sentry. |
00c89c9
to
c93af79
Compare
c93af79
to
c46046b
Compare
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.
Looks good - some small questions. Thanks!
c46046b
to
4cc5f48
Compare
This doesn't store the subscriptions locally, nor does it implement the automatic thread subscription.
…he current sub status
4cc5f48
to
51e7e84
Compare
[MSC4306](https://github.com/matrix-org/matrix-spec-proposals/pull/4306), with the | ||
`Room::fetch_thread_subscription()`, `Room::subscribe_thread()` and `Room::unsubscribe_thread()` | ||
methods. | ||
([#5442](https://github.com/matrix-org/matrix-rust-sdk/pull/5442)) |
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's 5439, not 5442 :-D.
The link for an entry was wrong. It's matrix-org#5439, not matrix-org#5442.
Feel free to PR :P
…On Wed, Aug 13, 2025 at 9:38 AM Ivan Enderlin ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In crates/matrix-sdk/CHANGELOG.md
<#5439 (comment)>
:
> @@ -8,6 +8,11 @@ All notable changes to this project will be documented in this file.
### Features
+- Add experimental support for
+ [MSC4306](matrix-org/matrix-spec-proposals#4306), with the
+ `Room::fetch_thread_subscription()`, `Room::subscribe_thread()` and `Room::unsubscribe_thread()`
+ methods.
+ ([#5442](#5442))
It's 5439, not 5442 :-D.
—
Reply to this email directly, view it on GitHub
<#5439 (review)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAJAC43ZCCVIQZ4PW4QJJQL3NLTN3AVCNFSM6AAAAACCF6PNP2VHI2DSMVQWIX3LMV43YUDVNRWFEZLROVSXG5CSMV3GSZLXHMZTCMJUGMYTMNZXGA>
.
You are receiving this because you modified the open/close state.Message
ID: ***@***.***>
|
This implements the three new endpoints introduced by MSC4306, with tests and support in multiverse.
Depends on ruma/ruma#2169 and element-hq/synapse#18722.
Part of #4869 / #5038.