diff --git a/CHANGELOG.md b/CHANGELOG.md index 60b7bed5d..151ab7ad3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # UNRELEASED +# matrix-sdk-crypto-wasm v6.2.1 + +- Update matrix-rust-sdk to `7b25a1c2f`, which includes fixes to bugs introduced in v6.2.0. + ([#3651](https://github.com/matrix-org/matrix-rust-sdk/pull/3651)) + # matrix-sdk-crypto-wasm v6.2.0 - Update matrix-rust-sdk to `09d53a52a`, which includes: diff --git a/Cargo.lock b/Cargo.lock index dfdd44225..2a4449e18 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -845,7 +845,7 @@ dependencies = [ [[package]] name = "matrix-sdk-common" version = "0.7.0" -source = "git+https://github.com/matrix-org/matrix-rust-sdk#09d53a52adbcc17c8edd64400fff5d8a6c5b6ffb" +source = "git+https://github.com/matrix-org/matrix-rust-sdk#7b25a1c2f02ea6abd74e6772b0326a98fb4e184f" dependencies = [ "async-trait", "futures-core", @@ -867,7 +867,7 @@ dependencies = [ [[package]] name = "matrix-sdk-crypto" version = "0.7.1" -source = "git+https://github.com/matrix-org/matrix-rust-sdk#09d53a52adbcc17c8edd64400fff5d8a6c5b6ffb" +source = "git+https://github.com/matrix-org/matrix-rust-sdk#7b25a1c2f02ea6abd74e6772b0326a98fb4e184f" dependencies = [ "aes", "as_variant", @@ -934,7 +934,7 @@ dependencies = [ [[package]] name = "matrix-sdk-indexeddb" version = "0.7.0" -source = "git+https://github.com/matrix-org/matrix-rust-sdk#09d53a52adbcc17c8edd64400fff5d8a6c5b6ffb" +source = "git+https://github.com/matrix-org/matrix-rust-sdk#7b25a1c2f02ea6abd74e6772b0326a98fb4e184f" dependencies = [ "anyhow", "async-trait", @@ -962,7 +962,7 @@ dependencies = [ [[package]] name = "matrix-sdk-qrcode" version = "0.7.0" -source = "git+https://github.com/matrix-org/matrix-rust-sdk#09d53a52adbcc17c8edd64400fff5d8a6c5b6ffb" +source = "git+https://github.com/matrix-org/matrix-rust-sdk#7b25a1c2f02ea6abd74e6772b0326a98fb4e184f" dependencies = [ "byteorder", "qrcode", @@ -974,7 +974,7 @@ dependencies = [ [[package]] name = "matrix-sdk-store-encryption" version = "0.7.0" -source = "git+https://github.com/matrix-org/matrix-rust-sdk#09d53a52adbcc17c8edd64400fff5d8a6c5b6ffb" +source = "git+https://github.com/matrix-org/matrix-rust-sdk#7b25a1c2f02ea6abd74e6772b0326a98fb4e184f" dependencies = [ "base64", "blake3", diff --git a/package.json b/package.json index 07449435a..4f37e89c1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@matrix-org/matrix-sdk-crypto-wasm", - "version": "6.2.0", + "version": "6.2.1", "homepage": "https://github.com/matrix-org/matrix-rust-sdk-wasm", "description": "WebAssembly bindings of the matrix-sdk-crypto encryption library", "license": "Apache-2.0", diff --git a/tests/machine.test.ts b/tests/machine.test.ts index 141161e12..522e98fcd 100644 --- a/tests/machine.test.ts +++ b/tests/machine.test.ts @@ -102,7 +102,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: 10 }, + { name: `${storeName}::matrix-sdk-crypto`, version: 11 }, ]); // Creating a new Olm machine, with the stored state. @@ -221,7 +221,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: 10 }, + { name: `${storeName}::matrix-sdk-crypto`, version: 11 }, ]); // Let's force to close the `OlmMachine`.