Skip to content

Commit 7941b16

Browse files
committed
Merge branch 'master' into develop
2 parents 0b7b35f + 3ff517e commit 7941b16

File tree

2 files changed

+59
-3
lines changed

2 files changed

+59
-3
lines changed

CHANGELOG.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,58 @@
1+
Changes in [9.9.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v9.9.0) (2021-03-15)
2+
================================================================================================
3+
[Full Changelog](https://github.com/matrix-org/matrix-js-sdk/compare/v9.9.0-rc.1...v9.9.0)
4+
5+
* No changes since rc.1
6+
7+
Changes in [9.9.0-rc.1](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v9.9.0-rc.1) (2021-03-10)
8+
==========================================================================================================
9+
[Full Changelog](https://github.com/matrix-org/matrix-js-sdk/compare/v9.8.0...v9.9.0-rc.1)
10+
11+
* Remove detailed Olm session logging
12+
[\#1638](https://github.com/matrix-org/matrix-js-sdk/pull/1638)
13+
* Add space summary suggested only param
14+
[\#1637](https://github.com/matrix-org/matrix-js-sdk/pull/1637)
15+
* Check TURN servers periodically, and at start of calls
16+
[\#1634](https://github.com/matrix-org/matrix-js-sdk/pull/1634)
17+
* Support sending invite reasons
18+
[\#1624](https://github.com/matrix-org/matrix-js-sdk/pull/1624)
19+
* Bump elliptic from 6.5.3 to 6.5.4
20+
[\#1636](https://github.com/matrix-org/matrix-js-sdk/pull/1636)
21+
* Add a function to get a room's MXC URI
22+
[\#1635](https://github.com/matrix-org/matrix-js-sdk/pull/1635)
23+
* Stop streams if the call has ended
24+
[\#1633](https://github.com/matrix-org/matrix-js-sdk/pull/1633)
25+
* Remove export keyword from global.d.ts
26+
[\#1631](https://github.com/matrix-org/matrix-js-sdk/pull/1631)
27+
* Fix IndexedDB store creation example
28+
[\#1445](https://github.com/matrix-org/matrix-js-sdk/pull/1445)
29+
* An attempt to cleanup how constraints are handled in calls
30+
[\#1613](https://github.com/matrix-org/matrix-js-sdk/pull/1613)
31+
* Extract display name patterns to constants
32+
[\#1628](https://github.com/matrix-org/matrix-js-sdk/pull/1628)
33+
* Bump pug-code-gen from 2.0.2 to 2.0.3
34+
[\#1630](https://github.com/matrix-org/matrix-js-sdk/pull/1630)
35+
* Avoid deadlocks when ensuring Olm sessions for devices
36+
[\#1627](https://github.com/matrix-org/matrix-js-sdk/pull/1627)
37+
* Filter out edits from other senders in history
38+
[\#1626](https://github.com/matrix-org/matrix-js-sdk/pull/1626)
39+
* Fix ContentHelpers export
40+
[\#1618](https://github.com/matrix-org/matrix-js-sdk/pull/1618)
41+
* Add logging to in progress Olm sessions
42+
[\#1621](https://github.com/matrix-org/matrix-js-sdk/pull/1621)
43+
* Don't ignore ICE candidates received before offer/answer
44+
[\#1623](https://github.com/matrix-org/matrix-js-sdk/pull/1623)
45+
* Better handling of send failures on VoIP events
46+
[\#1622](https://github.com/matrix-org/matrix-js-sdk/pull/1622)
47+
* Log when turn creds expire
48+
[\#1620](https://github.com/matrix-org/matrix-js-sdk/pull/1620)
49+
* Initial Spaces [MSC1772] support
50+
[\#1563](https://github.com/matrix-org/matrix-js-sdk/pull/1563)
51+
* Add logging to crypto store transactions
52+
[\#1617](https://github.com/matrix-org/matrix-js-sdk/pull/1617)
53+
* Room helper for getting type and checking if it is a space room
54+
[\#1610](https://github.com/matrix-org/matrix-js-sdk/pull/1610)
55+
156
Changes in [9.8.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v9.8.0) (2021-03-01)
257
================================================================================================
358
[Full Changelog](https://github.com/matrix-org/matrix-js-sdk/compare/v9.8.0-rc.1...v9.8.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.8.0",
3+
"version": "9.9.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)