matrix-js-sdk 23.3.0-rc.1 → 23.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 +5 -2
- package/git-revision.txt +1 -1
- package/package.json +2 -2
- package/release.sh +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
Changes in [23.3.0
|
|
2
|
-
|
|
1
|
+
Changes in [23.3.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v23.3.0) (2023-02-14)
|
|
2
|
+
==================================================================================================
|
|
3
3
|
|
|
4
4
|
## ✨ Features
|
|
5
5
|
* Element-R: implement encryption of outgoing events ([\#3122](https://github.com/matrix-org/matrix-js-sdk/pull/3122)).
|
|
@@ -14,6 +14,9 @@ Changes in [23.3.0-rc.1](https://github.com/matrix-org/matrix-js-sdk/releases/ta
|
|
|
14
14
|
* Introduces a backwards-compatible API change. `MegolmEncrypter#prepareToEncrypt`'s return type has changed from `void` to `() => void`. ([\#3035](https://github.com/matrix-org/matrix-js-sdk/pull/3035)). Contributed by @clarkf.
|
|
15
15
|
|
|
16
16
|
## 🐛 Bug Fixes
|
|
17
|
+
* Stop the ICE disconnected timer on call terminate ([\#3147](https://github.com/matrix-org/matrix-js-sdk/pull/3147)).
|
|
18
|
+
* Clear notifications when we can infer read status from receipts ([\#3139](https://github.com/matrix-org/matrix-js-sdk/pull/3139)). Fixes vector-im/element-web#23991.
|
|
19
|
+
* Messages sent out of order after one message fails ([\#3131](https://github.com/matrix-org/matrix-js-sdk/pull/3131)). Fixes vector-im/element-web#22885 and vector-im/element-web#18942. Contributed by @justjanne.
|
|
17
20
|
* Element-R: fix a bug which prevented encryption working after a reload ([\#3126](https://github.com/matrix-org/matrix-js-sdk/pull/3126)).
|
|
18
21
|
* Element-R: Fix invite processing ([\#3121](https://github.com/matrix-org/matrix-js-sdk/pull/3121)).
|
|
19
22
|
* Don't throw with no `opponentDeviceInfo` ([\#3107](https://github.com/matrix-org/matrix-js-sdk/pull/3107)).
|
package/git-revision.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
182534288cac90bfad9b20c40219b10bc051c0fa
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matrix-js-sdk",
|
|
3
|
-
"version": "23.3.0
|
|
3
|
+
"version": "23.3.0",
|
|
4
4
|
"description": "Matrix Client-Server SDK for Javascript",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=16.0.0"
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"matrix-org"
|
|
34
34
|
],
|
|
35
35
|
"main": "./lib/index.js",
|
|
36
|
-
"browser": "./
|
|
36
|
+
"browser": "./lib/browser-index.js",
|
|
37
37
|
"matrix_src_main": "./src/index.ts",
|
|
38
38
|
"matrix_src_browser": "./src/browser-index.ts",
|
|
39
39
|
"matrix_lib_main": "./lib/index.js",
|
package/release.sh
CHANGED
|
@@ -180,7 +180,7 @@ yarn version --no-git-tag-version --new-version "$release"
|
|
|
180
180
|
# they exist). This small bit of gymnastics allows us to use the TypeScript
|
|
181
181
|
# source directly for development without needing to build before linting or
|
|
182
182
|
# testing.
|
|
183
|
-
for i in main typings
|
|
183
|
+
for i in main typings browser
|
|
184
184
|
do
|
|
185
185
|
lib_value=$(jq -r ".matrix_lib_$i" package.json)
|
|
186
186
|
if [ "$lib_value" != "null" ]; then
|