Skip to content
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

Update matrix-sdk + others, release v10.1.0 #159

Merged
merged 3 commits into from
Oct 30, 2024
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
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# UNRELEASED

# matrix-sdk-crypto-wasm v10.1.0

- Update matrix-rust-sdk to `ce9dc73376b4ee`
- Update other dependencies

# matrix-sdk-crypto-wasm v10.0.0

**BREAKING CHANGES**
Expand All @@ -11,7 +16,7 @@
- Rename `UserIdentity` to `OtherUserIdentity` (in line with changes
to matrix-rust-sdk).

- Update matrix-rust-sdk to `#3558886b9`.
- Update matrix-rust-sdk to `3558886b9`.

# matrix-sdk-crypto-wasm v9.1.0

Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@matrix-org/matrix-sdk-crypto-wasm",
"version": "10.0.0",
"version": "10.1.0",
"homepage": "https://github.com/matrix-org/matrix-rust-sdk-wasm",
"description": "WebAssembly bindings of the matrix-sdk-crypto encryption library",
"license": "Apache-2.0",
Expand Down
3 changes: 2 additions & 1 deletion src/verification.rs
Original file line number Diff line number Diff line change
Expand Up @@ -915,7 +915,8 @@ impl VerificationRequest {
#[wasm_bindgen(js_name = "getVerification")]
pub fn get_verification(&self) -> JsValue {
let result: Option<JsValue> =
if let VerificationRequestState::Transitioned { verification } = self.inner.state() {
if let VerificationRequestState::Transitioned { verification, .. } = self.inner.state()
{
Verification(verification).try_into().ok()
} else {
None
Expand Down
Loading