Skip to content

Commit ef1db8d

Browse files
committed
Merge branch 'master' into develop
2 parents c4fe564 + 22865fd commit ef1db8d

File tree

2 files changed

+20
-4
lines changed

2 files changed

+20
-4
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
Changes in [32.2.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v32.2.0) (2024-05-07)
2+
==================================================================================================
3+
## ✨ Features
4+
5+
* Use a different error code for UTDs when user was not in the room ([#4172](https://github.com/matrix-org/matrix-js-sdk/pull/4172)). Contributed by @uhoreg.
6+
* Modernize window.crypto access constants ([#4169](https://github.com/matrix-org/matrix-js-sdk/pull/4169)). Contributed by @turt2live.
7+
* Improve compliance with MSC3266 ([#4155](https://github.com/matrix-org/matrix-js-sdk/pull/4155)). Contributed by @AndrewFerr.
8+
* Add comment to make clear that RoomStateEvent.Events does not update related objects in the js-sdk ([#4152](https://github.com/matrix-org/matrix-js-sdk/pull/4152)). Contributed by @toger5.
9+
* Crypto: use a new error code for UTDs from device-relative historical events ([#4139](https://github.com/matrix-org/matrix-js-sdk/pull/4139)). Contributed by @richvdh.
10+
11+
## 🐛 Bug Fixes
12+
13+
* Element-R: Fix rust migration when ssss secret are stored not encryted in cache (old legacy behavior) ([#4168](https://github.com/matrix-org/matrix-js-sdk/pull/4168)). Contributed by @BillCarsonFr.
14+
15+
116
Changes in [32.1.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v32.1.0) (2024-04-23)
217
==================================================================================================
318
## ✨ Features

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "matrix-js-sdk",
3-
"version": "32.1.0",
3+
"version": "32.2.0",
44
"description": "Matrix Client-Server SDK for Javascript",
55
"engines": {
66
"node": ">=18.0.0"
@@ -31,8 +31,8 @@
3131
"keywords": [
3232
"matrix-org"
3333
],
34-
"main": "./src/index.ts",
35-
"browser": "./src/browser-index.ts",
34+
"main": "./lib/index.js",
35+
"browser": "./lib/browser-index.js",
3636
"matrix_src_main": "./src/index.ts",
3737
"matrix_src_browser": "./src/browser-index.ts",
3838
"matrix_lib_main": "./lib/index.js",
@@ -132,5 +132,6 @@
132132
"outputDirectory": "coverage",
133133
"outputName": "jest-sonar-report.xml",
134134
"relativePaths": true
135-
}
135+
},
136+
"typings": "./lib/index.d.ts"
136137
}

0 commit comments

Comments
 (0)