Skip to content

Commit

Permalink
Bump rust-sdk's version to f64af126f1a
Browse files Browse the repository at this point in the history
For improvements to Indexed DB performance by moving to schema v10.
  • Loading branch information
andybalaam committed Jan 31, 2024
1 parent 7b05cf0 commit b247e04
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
11 changes: 6 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions tests/machine.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ describe(OlmMachine.name, () => {
expect(databases).toHaveLength(2);
expect(databases).toStrictEqual([
{ name: `${storeName}::matrix-sdk-crypto-meta`, version: 1 },
{ name: `${storeName}::matrix-sdk-crypto`, version: 8 },
{ name: `${storeName}::matrix-sdk-crypto`, version: 10 },
]);

// Creating a new Olm machine, with the stored state.
Expand Down Expand Up @@ -187,7 +187,7 @@ describe(OlmMachine.name, () => {
expect(databases).toHaveLength(2);
expect(databases).toStrictEqual([
{ name: `${storeName}::matrix-sdk-crypto-meta`, version: 1 },
{ name: `${storeName}::matrix-sdk-crypto`, version: 8 },
{ name: `${storeName}::matrix-sdk-crypto`, version: 10 },
]);

// Let's force to close the `OlmMachine`.
Expand Down

0 comments on commit b247e04

Please sign in to comment.