Skip to content

feat(wasm): add feature support for indexedb and sqlite to matrix-sdk-ffi #5245

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

Open
wants to merge 18 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
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
29 changes: 12 additions & 17 deletions bindings/matrix-sdk-ffi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,26 +7,21 @@ All notable changes to this project will be documented in this file.
## [Unreleased] - ReleaseDate

### Features

- Configuration of the session store has been changed to allow for use of either IndexedDb
or SQLite on relevant platforms. These can be enabled via features, `indexeddb` or `sqlite`.

Previously the code to configure a sqlite session would look something like this in a host language:
```
builder
.sessionPaths("data_path", "cache_path")
.passphrase("foobar")
```
With the new system, a helper object is exposed for either SQLite or IndexedDB to group those settings.
```
builder
.session_store_sqlite(
SqliteSessionStoreBuilder.new({ dataPath: "data_path", cachePath: "cache_path" })
.passphrase("foobar")
)
```

The following methods from `ClientBuilder` have been moved onto `SqliteSessionStoreBuilder`:
`session_paths`, `session_passphrase`, `session_pool_max_size`, `session_cache_size`, and `session_journal_size_limit`.
Previously the code to configure a sqlite session would look something like this in a host language:

\```rust
builder
.sessionPaths("data_path", "cache_path")
.passphrase("foobar")
\```

With the new system, a helper object is exposed for either SQLite or IndexedDB to group those settings.

// etc


### Refactor
Expand Down
Loading