Skip to content

Commit b8ec62e

Browse files
committed
Merge master
1 parent 286500e commit b8ec62e

File tree

2 files changed

+40
-3
lines changed

2 files changed

+40
-3
lines changed

CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
Changes in [17.0.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v17.0.0) (2022-04-11)
2+
==================================================================================================
3+
4+
## 🚨 BREAKING CHANGES
5+
* Remove groups and groups-related APIs ([\#2234](https://github.com/matrix-org/matrix-js-sdk/pull/2234)).
6+
7+
## ✨ Features
8+
* Add Element video room type ([\#2273](https://github.com/matrix-org/matrix-js-sdk/pull/2273)).
9+
* Live location sharing - handle redacted beacons ([\#2269](https://github.com/matrix-org/matrix-js-sdk/pull/2269)).
10+
11+
## 🐛 Bug Fixes
12+
* Fix getSessionsNeedingBackup() limit support ([\#2270](https://github.com/matrix-org/matrix-js-sdk/pull/2270)). Contributed by @adamvy.
13+
* Fix issues with /search and /context API handling for threads ([\#2261](https://github.com/matrix-org/matrix-js-sdk/pull/2261)). Fixes vector-im/element-web#21543.
14+
* Prevent exception 'Unable to set up secret storage' ([\#2260](https://github.com/matrix-org/matrix-js-sdk/pull/2260)).
15+
16+
Changes in [16.0.2-rc.1](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v16.0.2-rc.1) (2022-04-05)
17+
============================================================================================================
18+
19+
## 🚨 BREAKING CHANGES
20+
* Remove groups and groups-related APIs ([\#2234](https://github.com/matrix-org/matrix-js-sdk/pull/2234)).
21+
22+
## ✨ Features
23+
* Add Element video room type ([\#2273](https://github.com/matrix-org/matrix-js-sdk/pull/2273)).
24+
* Live location sharing - handle redacted beacons ([\#2269](https://github.com/matrix-org/matrix-js-sdk/pull/2269)).
25+
26+
## 🐛 Bug Fixes
27+
* Fix getSessionsNeedingBackup() limit support ([\#2270](https://github.com/matrix-org/matrix-js-sdk/pull/2270)). Contributed by @adamvy.
28+
* Fix issues with /search and /context API handling for threads ([\#2261](https://github.com/matrix-org/matrix-js-sdk/pull/2261)). Fixes vector-im/element-web#21543.
29+
* Prevent exception 'Unable to set up secret storage' ([\#2260](https://github.com/matrix-org/matrix-js-sdk/pull/2260)).
30+
131
Changes in [16.0.1](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v16.0.1) (2022-03-28)
232
==================================================================================================
333

@@ -1988,6 +2018,12 @@ All Changes
19882018
* [BREAKING] Refactor the entire build process
19892019
[\#1113](https://github.com/matrix-org/matrix-js-sdk/pull/1113)
19902020

2021+
Changes in [3.42.2-rc.3](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v3.42.2-rc.3) (2022-04-08)
2022+
============================================================================================================
2023+
2024+
## 🐛 Bug Fixes
2025+
* Make self membership less prone to races ([\#2277](https://github.com/matrix-org/matrix-js-sdk/pull/2277)). Fixes vector-im/element-web#21661.
2026+
19912027
Changes in [3.0.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v3.0.0) (2020-01-13)
19922028
================================================================================================
19932029
[Full Changelog](https://github.com/matrix-org/matrix-js-sdk/compare/v3.0.0-rc.1...v3.0.0)

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": "16.0.1",
3+
"version": "17.0.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)