From de2add5d5dbff3a312ebbf94bac39eb8d26129f8 Mon Sep 17 00:00:00 2001 From: RiotRobot Date: Tue, 12 Jul 2022 14:03:08 +0100 Subject: [PATCH 1/4] Prepare changelog for v19.1.0-rc.1 --- CHANGELOG.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c8e28925..5a84a2018 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +Changes in [19.1.0-rc.1](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v19.1.0-rc.1) (2022-07-12) +============================================================================================================ + +## 🦖 Deprecations + * Remove MSC3244 support ([\#2504](https://github.com/matrix-org/matrix-js-sdk/pull/2504)). + +## ✨ Features + * `room` now exports `KNOWN_SAFE_ROOM_VERSION` ([\#2474](https://github.com/matrix-org/matrix-js-sdk/pull/2474)). + +## 🐛 Bug Fixes + * Don't crash with undefined room in `processBeaconEvents()` ([\#2500](https://github.com/matrix-org/matrix-js-sdk/pull/2500)). Fixes #2494. + * Properly re-insert room ID in bundled thread relation messages from sync ([\#2505](https://github.com/matrix-org/matrix-js-sdk/pull/2505)). Fixes vector-im/element-web#22094. Contributed by @duxovni. + * Actually store the identity server in the client when given as an option ([\#2503](https://github.com/matrix-org/matrix-js-sdk/pull/2503)). Fixes vector-im/element-web#22757. + * Fix call.collectCallStats() ([\#2480](https://github.com/matrix-org/matrix-js-sdk/pull/2480)). + Changes in [19.0.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v19.0.0) (2022-07-05) ================================================================================================== From 7c560b6daa8bf9a3f6ee9066f010425b23e5b7f0 Mon Sep 17 00:00:00 2001 From: RiotRobot Date: Tue, 12 Jul 2022 14:03:09 +0100 Subject: [PATCH 2/4] v19.1.0-rc.1 --- package.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index e4496f7e6..87a226191 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "matrix-js-sdk", - "version": "19.0.0", + "version": "19.1.0-rc.1", "description": "Matrix Client-Server SDK for Javascript", "engines": { "node": ">=12.9.0" @@ -32,7 +32,7 @@ "keywords": [ "matrix-org" ], - "main": "./src/index.ts", + "main": "./lib/index.js", "browser": "./lib/browser-index.js", "matrix_src_main": "./src/index.ts", "matrix_src_browser": "./src/browser-index.js", @@ -125,5 +125,6 @@ "jestSonar": { "reportPath": "coverage", "sonar56x": true - } + }, + "typings": "./lib/index.d.ts" } From 55ab38a097d4184641f354383d1bee318b264144 Mon Sep 17 00:00:00 2001 From: RiotRobot Date: Tue, 26 Jul 2022 16:08:27 +0100 Subject: [PATCH 3/4] Prepare changelog for v19.1.0 --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a84a2018..065109f51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -Changes in [19.1.0-rc.1](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v19.1.0-rc.1) (2022-07-12) -============================================================================================================ +Changes in [19.1.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v19.1.0) (2022-07-26) +================================================================================================== ## 🦖 Deprecations * Remove MSC3244 support ([\#2504](https://github.com/matrix-org/matrix-js-sdk/pull/2504)). From 773157979629b9e6c79fae887c58cccffbdbdefb Mon Sep 17 00:00:00 2001 From: RiotRobot Date: Tue, 26 Jul 2022 16:08:28 +0100 Subject: [PATCH 4/4] v19.1.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 87a226191..7a68fc933 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "matrix-js-sdk", - "version": "19.1.0-rc.1", + "version": "19.1.0", "description": "Matrix Client-Server SDK for Javascript", "engines": { "node": ">=12.9.0"