matrix-js-sdk 34.3.0-rc.0 → 34.3.0
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 +17 -0
- package/git-revision.txt +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
Changes in [34.3.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v34.3.0) (2024-08-13)
|
|
2
|
+
==================================================================================================
|
|
3
|
+
## ✨ Features
|
|
4
|
+
|
|
5
|
+
* Bump matrix-widget-api ([#4336](https://github.com/matrix-org/matrix-js-sdk/pull/4336)). Contributed by @AndrewFerr.
|
|
6
|
+
* Also check for MSC3757 for session state keys ([#4334](https://github.com/matrix-org/matrix-js-sdk/pull/4334)). Contributed by @AndrewFerr.
|
|
7
|
+
* Support Futures via widgets ([#4311](https://github.com/matrix-org/matrix-js-sdk/pull/4311)). Contributed by @AndrewFerr.
|
|
8
|
+
* Support MSC4140: Delayed events (Futures) ([#4294](https://github.com/matrix-org/matrix-js-sdk/pull/4294)). Contributed by @AndrewFerr.
|
|
9
|
+
* Handle late-arriving `m.room_key.withheld` messages ([#4310](https://github.com/matrix-org/matrix-js-sdk/pull/4310)). Contributed by @richvdh.
|
|
10
|
+
* Be specific about what is considered a MSC4143 call member event. ([#4328](https://github.com/matrix-org/matrix-js-sdk/pull/4328)). Contributed by @toger5.
|
|
11
|
+
* Add index.ts for matrixrtc module ([#4314](https://github.com/matrix-org/matrix-js-sdk/pull/4314)). Contributed by @toger5.
|
|
12
|
+
|
|
13
|
+
## 🐛 Bug Fixes
|
|
14
|
+
|
|
15
|
+
* Fix hashed ID server lookups with no Olm ([#4333](https://github.com/matrix-org/matrix-js-sdk/pull/4333)). Contributed by @dbkr.
|
|
16
|
+
|
|
17
|
+
|
|
1
18
|
Changes in [34.2.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v34.2.0) (2024-07-30)
|
|
2
19
|
==================================================================================================
|
|
3
20
|
## 🐛 Bug Fixes
|
package/git-revision.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
1ae0c2f3ee0b708a2ff1ebd9dc7fc45ed8f797be
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matrix-js-sdk",
|
|
3
|
-
"version": "34.3.0
|
|
3
|
+
"version": "34.3.0",
|
|
4
4
|
"description": "Matrix Client-Server SDK for Javascript",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=20.0.0"
|
|
@@ -54,6 +54,7 @@
|
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@babel/runtime": "^7.12.5",
|
|
56
56
|
"@matrix-org/matrix-sdk-crypto-wasm": "^7.0.0",
|
|
57
|
+
"@matrix-org/olm": "3.2.15",
|
|
57
58
|
"another-json": "^0.2.0",
|
|
58
59
|
"bs58": "^6.0.0",
|
|
59
60
|
"content-type": "^1.0.4",
|
|
@@ -82,7 +83,6 @@
|
|
|
82
83
|
"@babel/preset-env": "^7.12.11",
|
|
83
84
|
"@babel/preset-typescript": "^7.12.7",
|
|
84
85
|
"@casualbot/jest-sonar-reporter": "2.2.7",
|
|
85
|
-
"@matrix-org/olm": "3.2.15",
|
|
86
86
|
"@peculiar/webcrypto": "^1.4.5",
|
|
87
87
|
"@types/bs58": "^4.0.1",
|
|
88
88
|
"@types/content-type": "^1.1.5",
|