Skip to content

Commit e2f8d11

Browse files
authored
Bump Rust SDK to 0.12.0 (#244)
1 parent fd5abbc commit e2f8d11

File tree

4 files changed

+38
-16
lines changed

4 files changed

+38
-16
lines changed

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
/docs
33
/pkg
44
/target
5+
/xtask/target

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
# UNRELEASED
22

3-
- Update matrix-rusk-sdk to `0f73ffde6`, which includes:
3+
- Update matrix-rusk-sdk to `0.12.0`, which includes:
44

55
- Send stable identifier `sender_device_keys` for MSC4147 (Including device
66
keys with Olm-encrypted events).
77
([#4964](https://github.com/matrix-org/matrix-rust-sdk/pull/4964))
88

9+
- Check the `sender_device_keys` field on _all_ incoming Olm-encrypted to-device messages
10+
and ignore any to-device messages which include the field but whose data is invalid
11+
(as per [MSC4147](https://github.com/matrix-org/matrix-spec-proposals/pull/4147)).
12+
([#4922](https://github.com/matrix-org/matrix-rust-sdk/pull/4922))
13+
914
- Fix bug which caused room keys to be unnecessarily rotated on every send in the
1015
presence of blacklisted/withheld devices in the room.
1116
([#4954](https://github.com/matrix-org/matrix-rust-sdk/pull/4954))

Cargo.lock

Lines changed: 27 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ futures-util = "0.3.27"
6464
getrandom = { version = "0.3.0", features = ["wasm_js"] }
6565
http = "1.1.0"
6666
js-sys = "0.3.49"
67-
matrix-sdk-common = { git = "https://github.com/matrix-org/matrix-rust-sdk", rev = "0f73ffde6", features = ["js"] }
68-
matrix-sdk-indexeddb = { git = "https://github.com/matrix-org/matrix-rust-sdk", rev = "0f73ffde6", default-features = false, features = ["e2e-encryption"] }
69-
matrix-sdk-qrcode = { git = "https://github.com/matrix-org/matrix-rust-sdk", rev = "0f73ffde6", optional = true }
67+
matrix-sdk-common = { version = "0.12.0", features = ["js"] }
68+
matrix-sdk-indexeddb = { version = "0.12.0", default-features = false, features = ["e2e-encryption"] }
69+
matrix-sdk-qrcode = { version = "0.12.0", optional = true }
7070
serde = "1.0.91"
7171
serde_json = "1.0.91"
7272
serde-wasm-bindgen = "0.6.5"
@@ -83,8 +83,7 @@ wasm-bindgen-test = "0.3.37"
8383
vergen-gitcl = { version = "1.0.0", features = ["build"] }
8484

8585
[dependencies.matrix-sdk-crypto]
86-
git = "https://github.com/matrix-org/matrix-rust-sdk"
87-
rev = "0f73ffde6"
86+
version = "0.12.0"
8887
default-features = false
8988
features = ["js", "automatic-room-key-forwarding"]
9089

0 commit comments

Comments
 (0)