Skip to content

Commit d0951b8

Browse files
committed
Merge tag 'v19.1.0' into sc
* Remove MSC3244 support ([\matrix-org#2504](matrix-org#2504)). * `room` now exports `KNOWN_SAFE_ROOM_VERSION` ([\matrix-org#2474](matrix-org#2474)). * Don't crash with undefined room in `processBeaconEvents()` ([\matrix-org#2500](matrix-org#2500)). Fixes matrix-org#2494. * Properly re-insert room ID in bundled thread relation messages from sync ([\matrix-org#2505](matrix-org#2505)). Fixes element-hq/element-web#22094. Contributed by @duxovni. * Actually store the identity server in the client when given as an option ([\matrix-org#2503](matrix-org#2503)). Fixes element-hq/element-web#22757. * Fix call.collectCallStats() ([\matrix-org#2480](matrix-org#2480)).
2 parents dd3932f + 7731579 commit d0951b8

20 files changed

+2046
-1587
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
Changes in [19.1.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v19.1.0) (2022-07-26)
2+
==================================================================================================
3+
4+
## 🦖 Deprecations
5+
* Remove MSC3244 support ([\#2504](https://github.com/matrix-org/matrix-js-sdk/pull/2504)).
6+
7+
## ✨ Features
8+
* `room` now exports `KNOWN_SAFE_ROOM_VERSION` ([\#2474](https://github.com/matrix-org/matrix-js-sdk/pull/2474)).
9+
10+
## 🐛 Bug Fixes
11+
* Don't crash with undefined room in `processBeaconEvents()` ([\#2500](https://github.com/matrix-org/matrix-js-sdk/pull/2500)). Fixes #2494.
12+
* 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.
13+
* 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.
14+
* Fix call.collectCallStats() ([\#2480](https://github.com/matrix-org/matrix-js-sdk/pull/2480)).
15+
116
Changes in [19.0.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v19.0.0) (2022-07-05)
217
==================================================================================================
318

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "matrix-js-sdk",
3-
"version": "19.0.0",
3+
"version": "19.1.0",
44
"description": "Matrix Client-Server SDK for Javascript",
55
"engines": {
66
"node": ">=12.9.0"
@@ -81,7 +81,7 @@
8181
"@matrix-org/olm": "https://gitlab.matrix.org/api/v4/projects/27/packages/npm/@matrix-org/olm/-/@matrix-org/olm-3.2.8.tgz",
8282
"@types/bs58": "^4.0.1",
8383
"@types/content-type": "^1.1.5",
84-
"@types/jest": "^27.0.0",
84+
"@types/jest": "^28.0.0",
8585
"@types/node": "12",
8686
"@types/request": "^2.48.5",
8787
"@typescript-eslint/eslint-plugin": "^5.6.0",
@@ -92,7 +92,7 @@
9292
"better-docs": "^2.4.0-beta.9",
9393
"browserify": "^17.0.0",
9494
"docdash": "^1.2.0",
95-
"eslint": "8.16.0",
95+
"eslint": "8.18.0",
9696
"eslint-config-google": "^0.14.0",
9797
"eslint-plugin-import": "^2.25.4",
9898
"eslint-plugin-matrix-org": "^0.5.0",

spec/TestClient.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,4 +236,8 @@ export class TestClient {
236236
public isFallbackICEServerAllowed(): boolean {
237237
return true;
238238
}
239+
240+
public getUserId(): string {
241+
return this.userId;
242+
}
239243
}

0 commit comments

Comments
 (0)