Skip to content

Commit 8f00eb6

Browse files
committed
Merge branch 'master' into develop
2 parents ba06e43 + 01ec518 commit 8f00eb6

File tree

2 files changed

+20
-5
lines changed

2 files changed

+20
-5
lines changed

CHANGELOG.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
Changes in [17.1.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v17.1.0) (2022-04-26)
2+
==================================================================================================
3+
4+
## ✨ Features
5+
* Add MatrixClient.doesServerSupportLogoutDevices() for MSC2457 ([\#2297](https://github.com/matrix-org/matrix-js-sdk/pull/2297)).
6+
* Live location sharing - expose room liveBeaconIds ([\#2296](https://github.com/matrix-org/matrix-js-sdk/pull/2296)).
7+
* Support for MSC2457 logout_devices param for setPassword() ([\#2285](https://github.com/matrix-org/matrix-js-sdk/pull/2285)).
8+
* Stabilise token authenticated registration support ([\#2181](https://github.com/matrix-org/matrix-js-sdk/pull/2181)). Contributed by @govynnus.
9+
* Live location sharing - Aggregate beacon locations on beacons ([\#2268](https://github.com/matrix-org/matrix-js-sdk/pull/2268)).
10+
11+
## 🐛 Bug Fixes
12+
* Prevent duplicated re-emitter setups in event-mapper ([\#2293](https://github.com/matrix-org/matrix-js-sdk/pull/2293)).
13+
* Make self membership less prone to races ([\#2277](https://github.com/matrix-org/matrix-js-sdk/pull/2277)). Fixes vector-im/element-web#21661.
14+
115
Changes in [17.0.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v17.0.0) (2022-04-11)
216
==================================================================================================
317

@@ -670,7 +684,7 @@ Changes in [11.0.0-rc.1](https://github.com/matrix-org/matrix-js-sdk/releases/ta
670684
BREAKING CHANGES
671685
---
672686

673-
* `MatrixCall` and related APIs have been redesigned to support multiple streams
687+
* `MatrixCall` and related APIs have been redesigned to support multiple streams
674688
(see [\#1660](https://github.com/matrix-org/matrix-js-sdk/pull/1660) for more details)
675689

676690
All changes
@@ -1343,7 +1357,7 @@ BREAKING CHANGES
13431357
---
13441358

13451359
* `RoomState` events changed to use a Map instead of an object, which changes the collection APIs available to access them.
1346-
1360+
13471361
All Changes
13481362
---
13491363

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "matrix-js-sdk",
3-
"version": "17.0.0",
3+
"version": "17.1.0",
44
"description": "Matrix Client-Server SDK for Javascript",
55
"scripts": {
66
"prepublishOnly": "yarn build",
@@ -29,7 +29,7 @@
2929
"keywords": [
3030
"matrix-org"
3131
],
32-
"main": "./src/index.ts",
32+
"main": "./lib/index.js",
3333
"browser": "./lib/browser-index.js",
3434
"matrix_src_main": "./src/index.ts",
3535
"matrix_src_browser": "./src/browser-index.js",
@@ -116,5 +116,6 @@
116116
"text",
117117
"json"
118118
]
119-
}
119+
},
120+
"typings": "./lib/index.d.ts"
120121
}

0 commit comments

Comments
 (0)