Damir Jelić
Damir Jelić
It's time, I don't think we can realistically afford to not have a proper release process anymore or invent ever more complicated schemes how EW and EX can use the...
The test used some internal API to test if our zeroization works. We have now switched to the publicly available Ed25519 secret key type. Some additional changes were needed to...
We may receive a room key with an incomplete ratchet (first known message index of 1) but ideal SenderData, only to later find another room key with a complete ratchet...
This partially and very hackishly fixes a problem where focused timelines don't replace UTDs after the event cache redecrypts the event. The problem is more closely described in https://github.com/matrix-org/matrix-rust-sdk/issues/5954. This...
The gist of the issue comes from the fact that the event cache uses indices to send out updates. So if a new event comes around or an event replaces...
As discovered in #4596, updating `async-stream` cause some tests to fail. The reason the `identity_status_changes` test fail is because the event handler for the `m.room.member` event registered over here: https://github.com/matrix-org/matrix-rust-sdk/blob/8d27b0c811c96d00673eb43b0a813bb3bcf26542/crates/matrix-sdk/src/room/identity_status_changes.rs#L178-L193...
We seem to have a panic in the codebase because one of the functions we pass to `sort_by()` doesn't implement a total order. A sentry report was sent to use...
*Do not merge*! This depends on an unmerged version of vodozemac, but this can be used to get all our ducks in a row.
# Introduction As users post messages and the room history grows over time, manually scrolling to find a past conversation becomes inefficient and frustrating. In today's world, users expect to...
Until now junit support was only used in the coverage run. But we want to collect statistics for other runs as well.