Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bindings/matrix-sdk-ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ crate-type = [

[features]
default = ["bundled-sqlite", "unstable-msc4274", "experimental-element-recent-emojis", "experimental-push-secrets", "experimental-search"]
experimental-search = ["matrix-sdk/experimental-search"]
experimental-search = ["matrix-sdk/experimental-search", "matrix-sdk-ui/experimental-search"]
# Use SQLite for the session storage.
sqlite = ["matrix-sdk/sqlite"]
# Use an embedded version of SQLite.
Expand Down
1 change: 1 addition & 0 deletions bindings/matrix-sdk-ffi/changelog.d/6695.changed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[**breaking**] The message search FFI is now reactive. `Client::search_messages` (and its `GlobalSearchIterator`) and `Room::search_messages` (and its `RoomSearchIterator`) are removed, replaced by `Client::search_service(query, filter)` which returns a `SearchService` object. Call `SearchService::subscribe_to_results` with a `SearchServiceResultsListener` to receive `SearchServiceResultsUpdate`s (`VectorDiff`-style) over a single list of typed `SearchResult`s.
2 changes: 1 addition & 1 deletion bindings/matrix-sdk-ffi/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ mod room_preview;
mod ruma;
mod runtime;
#[cfg(feature = "experimental-search")]
mod search;
mod search_service;
mod session_verification;
mod spaces;
mod store;
Expand Down
203 changes: 0 additions & 203 deletions bindings/matrix-sdk-ffi/src/search.rs

This file was deleted.

Loading
Loading