From 300d8b026aa704d370aafe856a068e69ba26d46c Mon Sep 17 00:00:00 2001 From: RiotRobot Date: Tue, 26 Jul 2022 17:22:48 +0100 Subject: [PATCH 1/4] Prepare changelog for v19.2.0-rc.1 --- CHANGELOG.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 065109f51..36f35d1b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +Changes in [19.2.0-rc.1](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v19.2.0-rc.1) (2022-07-26) +============================================================================================================ + +## 🦖 Deprecations + * Remove unstable support for `m.room_key.withheld` ([\#2512](https://github.com/matrix-org/matrix-js-sdk/pull/2512)). Fixes #2233. + +## ✨ Features + * Add support for MSC3575: Sliding Sync ([\#2242](https://github.com/matrix-org/matrix-js-sdk/pull/2242)). + +## 🐛 Bug Fixes + * Re-insert room IDs when decrypting bundled redaction events returned by `/sync` ([\#2531](https://github.com/matrix-org/matrix-js-sdk/pull/2531)). Contributed by @duxovni. + * Correct the units in TURN servers expiry documentation ([\#2520](https://github.com/matrix-org/matrix-js-sdk/pull/2520)). + Changes in [19.1.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v19.1.0) (2022-07-26) ================================================================================================== From a7fd7fd539193c4b9e34d0c10121235bcd2eca30 Mon Sep 17 00:00:00 2001 From: RiotRobot Date: Tue, 26 Jul 2022 17:22:49 +0100 Subject: [PATCH 2/4] v19.2.0-rc.1 --- package.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 787aa0833..a58864f39 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "matrix-js-sdk", - "version": "19.1.0", + "version": "19.2.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 e3873ddef5f7d2fe08ff22b4aa7661bf010b9380 Mon Sep 17 00:00:00 2001 From: RiotRobot Date: Tue, 2 Aug 2022 16:58:53 +0100 Subject: [PATCH 3/4] Prepare changelog for v19.2.0 --- CHANGELOG.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 36f35d1b3..12ebda0ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,17 @@ -Changes in [19.2.0-rc.1](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v19.2.0-rc.1) (2022-07-26) -============================================================================================================ +Changes in [19.2.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v19.2.0) (2022-08-02) +================================================================================================== ## 🦖 Deprecations * Remove unstable support for `m.room_key.withheld` ([\#2512](https://github.com/matrix-org/matrix-js-sdk/pull/2512)). Fixes #2233. ## ✨ Features + * Sliding sync: add missing filters from latest MSC ([\#2555](https://github.com/matrix-org/matrix-js-sdk/pull/2555)). + * Use stable prefixes for MSC3827 ([\#2537](https://github.com/matrix-org/matrix-js-sdk/pull/2537)). * Add support for MSC3575: Sliding Sync ([\#2242](https://github.com/matrix-org/matrix-js-sdk/pull/2242)). ## 🐛 Bug Fixes - * Re-insert room IDs when decrypting bundled redaction events returned by `/sync` ([\#2531](https://github.com/matrix-org/matrix-js-sdk/pull/2531)). Contributed by @duxovni. * Correct the units in TURN servers expiry documentation ([\#2520](https://github.com/matrix-org/matrix-js-sdk/pull/2520)). + * Re-insert room IDs when decrypting bundled redaction events returned by `/sync` ([\#2531](https://github.com/matrix-org/matrix-js-sdk/pull/2531)). Contributed by @duxovni. Changes in [19.1.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v19.1.0) (2022-07-26) ================================================================================================== From aac0023338496256ed4d72691542cab96a77a2fe Mon Sep 17 00:00:00 2001 From: RiotRobot Date: Tue, 2 Aug 2022 16:58:54 +0100 Subject: [PATCH 4/4] v19.2.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a58864f39..186637d3c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "matrix-js-sdk", - "version": "19.2.0-rc.1", + "version": "19.2.0", "description": "Matrix Client-Server SDK for Javascript", "engines": { "node": ">=12.9.0"