Skip to content

Commit daa17b3

Browse files
committed
Merge branch 'master' into develop
2 parents 6bc8057 + c7f8871 commit daa17b3

File tree

2 files changed

+29
-3
lines changed

2 files changed

+29
-3
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
Changes in [9.11.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v9.11.0) (2021-04-12)
2+
==================================================================================================
3+
[Full Changelog](https://github.com/matrix-org/matrix-js-sdk/compare/v9.11.0-rc.1...v9.11.0)
4+
5+
* No changes since rc.1
6+
7+
Changes in [9.11.0-rc.1](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v9.11.0-rc.1) (2021-04-07)
8+
============================================================================================================
9+
[Full Changelog](https://github.com/matrix-org/matrix-js-sdk/compare/v9.10.0...v9.11.0-rc.1)
10+
11+
* Only try to cache private keys we know exist
12+
[\#1657](https://github.com/matrix-org/matrix-js-sdk/pull/1657)
13+
* Properly terminate screen-share calls if NoUserMedia
14+
[\#1654](https://github.com/matrix-org/matrix-js-sdk/pull/1654)
15+
* Attended transfer
16+
[\#1652](https://github.com/matrix-org/matrix-js-sdk/pull/1652)
17+
* Remove catch handlers in private key retrieval
18+
[\#1653](https://github.com/matrix-org/matrix-js-sdk/pull/1653)
19+
* Fixed the media fail error on caller's side
20+
[\#1651](https://github.com/matrix-org/matrix-js-sdk/pull/1651)
21+
* Add function to share megolm keys for historical messages, take 2
22+
[\#1640](https://github.com/matrix-org/matrix-js-sdk/pull/1640)
23+
* Cache cross-signing private keys if needed on bootstrap
24+
[\#1649](https://github.com/matrix-org/matrix-js-sdk/pull/1649)
25+
126
Changes in [9.10.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v9.10.0) (2021-03-29)
227
==================================================================================================
328
[Full Changelog](https://github.com/matrix-org/matrix-js-sdk/compare/v9.10.0-rc.1...v9.10.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": "9.10.0",
3+
"version": "9.11.0",
44
"description": "Matrix Client-Server SDK for Javascript",
55
"scripts": {
66
"prepublishOnly": "yarn build",
@@ -27,7 +27,7 @@
2727
"keywords": [
2828
"matrix-org"
2929
],
30-
"main": "./src/index.ts",
30+
"main": "./lib/index.js",
3131
"browser": "./lib/browser-index.js",
3232
"matrix_src_main": "./src/index.ts",
3333
"matrix_src_browser": "./src/browser-index.js",
@@ -95,5 +95,6 @@
9595
},
9696
"jest": {
9797
"testEnvironment": "node"
98-
}
98+
},
99+
"typings": "./lib/index.d.ts"
99100
}

0 commit comments

Comments
 (0)