1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-28 05:03:59 +03:00

Merge branch 'master' into develop

This commit is contained in:
RiotRobot
2022-08-02 17:01:11 +01:00
2 changed files with 19 additions and 3 deletions

View File

@@ -1,3 +1,18 @@
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
* 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) Changes in [19.1.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v19.1.0) (2022-07-26)
================================================================================================== ==================================================================================================

View File

@@ -1,6 +1,6 @@
{ {
"name": "matrix-js-sdk", "name": "matrix-js-sdk",
"version": "19.1.0", "version": "19.2.0",
"description": "Matrix Client-Server SDK for Javascript", "description": "Matrix Client-Server SDK for Javascript",
"engines": { "engines": {
"node": ">=12.9.0" "node": ">=12.9.0"
@@ -32,7 +32,7 @@
"keywords": [ "keywords": [
"matrix-org" "matrix-org"
], ],
"main": "./src/index.ts", "main": "./lib/index.js",
"browser": "./lib/browser-index.js", "browser": "./lib/browser-index.js",
"matrix_src_main": "./src/index.ts", "matrix_src_main": "./src/index.ts",
"matrix_src_browser": "./src/browser-index.js", "matrix_src_browser": "./src/browser-index.js",
@@ -125,5 +125,6 @@
"jestSonar": { "jestSonar": {
"reportPath": "coverage", "reportPath": "coverage",
"sonar56x": true "sonar56x": true
} },
"typings": "./lib/index.d.ts"
} }