matrix-js-sdk 13.0.0 → 14.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +39 -0
- package/dist/browser-matrix.js +307 -65
- package/dist/browser-matrix.js.map +14 -14
- package/dist/browser-matrix.min.js +5 -5
- package/dist/browser-matrix.min.js.map +1 -1
- package/git-revision.txt +1 -1
- package/lib/@types/threepids.d.ts +1 -0
- package/lib/client.d.ts +7 -4
- package/lib/client.js +8 -1
- package/lib/crypto/backup.d.ts +1 -0
- package/lib/models/MSC3089Branch.d.ts +24 -3
- package/lib/models/MSC3089Branch.js +92 -10
- package/lib/models/MSC3089TreeSpace.d.ts +8 -2
- package/lib/models/MSC3089TreeSpace.js +28 -5
- package/lib/models/event-timeline-set.d.ts +8 -2
- package/lib/models/event-timeline-set.js +20 -7
- package/lib/models/event-timeline.d.ts +1 -1
- package/lib/models/event-timeline.js +5 -2
- package/lib/models/event.js +37 -7
- package/lib/models/room-state.d.ts +1 -1
- package/lib/models/room.d.ts +2 -2
- package/lib/models/room.js +1 -10
- package/lib/models/thread.d.ts +7 -1
- package/lib/models/thread.js +21 -8
- package/lib/room-hierarchy.d.ts +2 -1
- package/lib/room-hierarchy.js +4 -0
- package/lib/sync.js +1 -3
- package/lib/webrtc/call.d.ts +14 -3
- package/lib/webrtc/call.js +96 -11
- package/lib/webrtc/callFeed.d.ts +2 -0
- package/lib/webrtc/callFeed.js +26 -10
- package/package.json +1 -1
- package/src/@types/threepids.ts +1 -0
- package/src/client.ts +18 -5
- package/src/crypto/backup.ts +2 -0
- package/src/models/MSC3089Branch.ts +98 -12
- package/src/models/MSC3089TreeSpace.ts +29 -6
- package/src/models/event-timeline-set.ts +21 -5
- package/src/models/event-timeline.ts +5 -2
- package/src/models/event.ts +35 -7
- package/src/models/room-state.ts +1 -1
- package/src/models/room.ts +4 -11
- package/src/models/thread.ts +28 -3
- package/src/room-hierarchy.ts +5 -1
- package/src/sync.ts +1 -1
- package/src/webrtc/call.ts +105 -12
- package/src/webrtc/callFeed.ts +25 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,42 @@
|
|
|
1
|
+
Changes in [14.0.1](https://github.com/vector-im/element-desktop/releases/tag/v14.0.1) (2021-10-12)
|
|
2
|
+
===================================================================================================
|
|
3
|
+
|
|
4
|
+
## 🚨 BREAKING CHANGES
|
|
5
|
+
* Support for call upgrades. `setLocalVideoMuted()` and `setMicrophoneMuted()` are now `async` and return the new mute state ([\#1827](https://github.com/matrix-org/matrix-js-sdk/pull/1827)). Contributed by [SimonBrandner](https://github.com/SimonBrandner).
|
|
6
|
+
|
|
7
|
+
## ✨ Features
|
|
8
|
+
* Implement file versioning for tree spaces ([\#1952](https://github.com/matrix-org/matrix-js-sdk/pull/1952)).
|
|
9
|
+
* Allow answering calls without audio/video ([\#1950](https://github.com/matrix-org/matrix-js-sdk/pull/1950)). Contributed by [SimonBrandner](https://github.com/SimonBrandner).
|
|
10
|
+
* Add `bound` to `IThreepid` ([\#1941](https://github.com/matrix-org/matrix-js-sdk/pull/1941)). Contributed by [SimonBrandner](https://github.com/SimonBrandner).
|
|
11
|
+
* Add `trusted_locally` to `TrustInfo` ([\#1942](https://github.com/matrix-org/matrix-js-sdk/pull/1942)). Contributed by [SimonBrandner](https://github.com/SimonBrandner).
|
|
12
|
+
|
|
13
|
+
## 🐛 Bug Fixes
|
|
14
|
+
* Fix incorrect return value type in getJoinedRooms() ([\#1959](https://github.com/matrix-org/matrix-js-sdk/pull/1959)). Contributed by [psrpinto](https://github.com/psrpinto).
|
|
15
|
+
* Make sure to set `callLengthInterval` only once ([\#1958](https://github.com/matrix-org/matrix-js-sdk/pull/1958)). Fixes vector-im/element-web#19221 and vector-im/element-web#19221. Contributed by [SimonBrandner](https://github.com/SimonBrandner).
|
|
16
|
+
* Fix event partitioning from non threading ready clients ([\#1948](https://github.com/matrix-org/matrix-js-sdk/pull/1948)).
|
|
17
|
+
* Ensure unencrypted fields get exposed by getEffectiveEvent() ([\#1938](https://github.com/matrix-org/matrix-js-sdk/pull/1938)). Fixes vector-im/element-web#19062 and vector-im/element-web#19062.
|
|
18
|
+
|
|
19
|
+
Changes in [14.0.0-rc.2](https://github.com/vector-im/element-desktop/releases/tag/v14.0.0-rc.2) (2021-10-07)
|
|
20
|
+
=============================================================================================================
|
|
21
|
+
|
|
22
|
+
Changes in [14.0.0-rc.1](https://github.com/vector-im/element-desktop/releases/tag/v14.0.0-rc.1) (2021-10-04)
|
|
23
|
+
=============================================================================================================
|
|
24
|
+
|
|
25
|
+
## 🚨 BREAKING CHANGES
|
|
26
|
+
* Support for call upgrades. `setLocalVideoMuted()` and `setMicrophoneMuted()` are now `async` and return the new mute state ([\#1827](https://github.com/matrix-org/matrix-js-sdk/pull/1827)). Contributed by [SimonBrandner](https://github.com/SimonBrandner).
|
|
27
|
+
|
|
28
|
+
## ✨ Features
|
|
29
|
+
* Implement file versioning for tree spaces ([\#1952](https://github.com/matrix-org/matrix-js-sdk/pull/1952)).
|
|
30
|
+
* Allow answering calls without audio/video ([\#1950](https://github.com/matrix-org/matrix-js-sdk/pull/1950)). Contributed by [SimonBrandner](https://github.com/SimonBrandner).
|
|
31
|
+
* Add `bound` to `IThreepid` ([\#1941](https://github.com/matrix-org/matrix-js-sdk/pull/1941)). Contributed by [SimonBrandner](https://github.com/SimonBrandner).
|
|
32
|
+
* Add `trusted_locally` to `TrustInfo` ([\#1942](https://github.com/matrix-org/matrix-js-sdk/pull/1942)). Contributed by [SimonBrandner](https://github.com/SimonBrandner).
|
|
33
|
+
|
|
34
|
+
## 🐛 Bug Fixes
|
|
35
|
+
* Fix incorrect return value type in getJoinedRooms() ([\#1959](https://github.com/matrix-org/matrix-js-sdk/pull/1959)). Contributed by [psrpinto](https://github.com/psrpinto).
|
|
36
|
+
* Make sure to set `callLengthInterval` only once ([\#1958](https://github.com/matrix-org/matrix-js-sdk/pull/1958)). Fixes vector-im/element-web#19221 and vector-im/element-web#19221. Contributed by [SimonBrandner](https://github.com/SimonBrandner).
|
|
37
|
+
* Fix event partitioning from non threading ready clients ([\#1948](https://github.com/matrix-org/matrix-js-sdk/pull/1948)).
|
|
38
|
+
* Ensure unencrypted fields get exposed by getEffectiveEvent() ([\#1938](https://github.com/matrix-org/matrix-js-sdk/pull/1938)). Fixes vector-im/element-web#19062 and vector-im/element-web#19062.
|
|
39
|
+
|
|
1
40
|
Changes in [13.0.0](https://github.com/vector-im/element-desktop/releases/tag/v13.0.0) (2021-09-27)
|
|
2
41
|
===================================================================================================
|
|
3
42
|
|