-
Notifications
You must be signed in to change notification settings - Fork 270
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
feat: Remove the experimental-sliding-sync
feature flag
#4483
feat: Remove the experimental-sliding-sync
feature flag
#4483
Conversation
86e59b1
to
818b8a2
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #4483 +/- ##
==========================================
+ Coverage 85.31% 85.36% +0.05%
==========================================
Files 284 284
Lines 31741 31885 +144
==========================================
+ Hits 27080 27219 +139
- Misses 4661 4666 +5 ☔ View full report in Codecov by Sentry. |
6becf8d
to
8853be3
Compare
ca9daef
to
81b1294
Compare
@poljar The PR is finally ready for a review. CI has caught an issue with |
Sliding sync is no longer experimental. It has a solid MSC4186, along with a solid implementation inside Synapse. It's time to consider it mature. The SDK continues to support the old MSC3575 in addition to MSC4186. This patch only removes the `experimental-sliding-sync` feature flag.
…with `wasm32-u-u`.
This patch removes `SlidingSyncRoomInner::client` because, first off, it's not `Send`, and second, it's useless. Nobody uses it, it's basically dead code… annoying dead code… bad dead code!
05948a9
to
93d18e6
Compare
(rebased on top of |
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 the removal of Client
from SlidingSyncRoomInner
should have been its own PR, but whatever.
Yes I agree. I've already extracted multiple patches into their own PR, I should have continue this process. Thanks for the approval. |
Sliding sync is no longer experimental. It has a solid MSC4186, along with a solid implementation inside Synapse. It's time to consider it mature.
The SDK continues to support the old MSC3575 in addition to MSC4186. This patch only removes the
experimental-sliding-sync
feature flag.