From 3df473a56daa8c6c75373253d0d69dfbfc7a3690 Mon Sep 17 00:00:00 2001 From: Richard van der Hoff Date: Mon, 15 May 2023 15:07:03 +0100 Subject: [PATCH 1/3] update CHANGELOG --- bindings/matrix-sdk-crypto-js/CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bindings/matrix-sdk-crypto-js/CHANGELOG.md b/bindings/matrix-sdk-crypto-js/CHANGELOG.md index 4a5dc9d6a..ea4334d26 100644 --- a/bindings/matrix-sdk-crypto-js/CHANGELOG.md +++ b/bindings/matrix-sdk-crypto-js/CHANGELOG.md @@ -2,6 +2,8 @@ - Extend `OlmDevice.markRequestAsSent` to accept responses to `SigningKeysUploadRequest`s. +- Add a missing `const` for compatiblity with ECMAScript Module compatibility + mode. - Fix the body of `SignatureUploadRequest`s to match the spec. # v0.1.0-alpha.8 From 3049328078e07db74d05f73f3f5ef0b4605f6bda Mon Sep 17 00:00:00 2001 From: Richard van der Hoff Date: Mon, 15 May 2023 15:07:14 +0100 Subject: [PATCH 2/3] matrix-sdk-crypto-js v0.1.0-alpha.9 --- bindings/matrix-sdk-crypto-js/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/matrix-sdk-crypto-js/package.json b/bindings/matrix-sdk-crypto-js/package.json index 4b1f94a93..023bf0f0d 100644 --- a/bindings/matrix-sdk-crypto-js/package.json +++ b/bindings/matrix-sdk-crypto-js/package.json @@ -1,6 +1,6 @@ { "name": "@matrix-org/matrix-sdk-crypto-js", - "version": "0.1.0-alpha.8", + "version": "0.1.0-alpha.9", "homepage": "https://github.com/matrix-org/matrix-rust-sdk", "description": "Matrix encryption library, for JavaScript", "license": "Apache-2.0", From 89bf7f27f37752999e8e5699c08c880d82657723 Mon Sep 17 00:00:00 2001 From: Richard van der Hoff <1389908+richvdh@users.noreply.github.com> Date: Mon, 15 May 2023 18:42:58 +0100 Subject: [PATCH 3/3] fix typo --- bindings/matrix-sdk-crypto-js/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/matrix-sdk-crypto-js/CHANGELOG.md b/bindings/matrix-sdk-crypto-js/CHANGELOG.md index ea4334d26..0340d957e 100644 --- a/bindings/matrix-sdk-crypto-js/CHANGELOG.md +++ b/bindings/matrix-sdk-crypto-js/CHANGELOG.md @@ -2,7 +2,7 @@ - Extend `OlmDevice.markRequestAsSent` to accept responses to `SigningKeysUploadRequest`s. -- Add a missing `const` for compatiblity with ECMAScript Module compatibility +- Add a missing `const` for compatibility with ECMAScript Module compatibility mode. - Fix the body of `SignatureUploadRequest`s to match the spec.