Skip to content

Commit 944dc51

Browse files
committed
Merge branch 'master' into develop
2 parents c6b43dd + 38898a6 commit 944dc51

File tree

2 files changed

+18
-4
lines changed

2 files changed

+18
-4
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
Changes in [32.3.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v32.3.0) (2024-05-21)
2+
==================================================================================================
3+
## ✨ Features
4+
5+
* Simplify OIDC types \& export `decodeIdToken` ([#4193](https://github.com/matrix-org/matrix-js-sdk/pull/4193)). Contributed by @t3chguy.
6+
* Add helpers for authenticated media, and associated documentation ([#4185](https://github.com/matrix-org/matrix-js-sdk/pull/4185)). Contributed by @turt2live.
7+
8+
## 🐛 Bug Fixes
9+
10+
* Fix state\_events.ts types ([#4196](https://github.com/matrix-org/matrix-js-sdk/pull/4196)). Contributed by @t3chguy.
11+
* Fix sendEventHttpRequest for `m.room.redaction` events without `redacts` ([#4192](https://github.com/matrix-org/matrix-js-sdk/pull/4192)). Contributed by @t3chguy.
12+
13+
114
Changes in [32.2.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v32.2.0) (2024-05-07)
215
==================================================================================================
316
## ✨ 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.2.0",
3+
"version": "32.3.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)