-
Notifications
You must be signed in to change notification settings - Fork 126
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
Remove support for the sliding sync proxy. #3801
Conversation
Handles changes that removed support for the sliding sync proxy.
@@ -75,9 +75,11 @@ protocol ClientProxyProtocol: AnyObject, MediaLoaderProtocol { | |||
var deviceID: String? { get } | |||
|
|||
var homeserver: String { get } | |||
|
|||
|
|||
// TODO: This is a temporary value, in the future we should throw a migration error |
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.
⚠️ TODOs should be resolved (This is a temporary value, in ...) (todo
)
let container = try decoder.container(keyedBy: MatrixRustSDK.Session.CodingKeys.self) | ||
session = try Session(from: decoder) | ||
|
||
// TODO: In the future we should decode this in the Session and throw a migration error if it contains a value. |
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.
⚠️ TODOs should be resolved (In the future we should decode...) (todo
)
|
Codecov ReportAttention: Patch coverage is
✅ All tests successful. No failed tests found. Additional details and impacted files@@ Coverage Diff @@
## develop #3801 +/- ##
==========================================
Coverage ? 78.68%
==========================================
Files ? 794
Lines ? 69483
Branches ? 0
==========================================
Hits ? 54674
Misses ? 14809
Partials ? 0
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
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.
Love a good (almost) spring cleanup!
The SDK no longer supports a sliding sync proxy, so this update will force logout anyone using a sliding sync proxy:
migration.mp4