Skip to content

Commit d81929d

Browse files
committed
Merge remote-tracking branch 'origin/develop' into develop
2 parents 27002a0 + bb2a0be commit d81929d

File tree

4 files changed

+28
-1
lines changed

4 files changed

+28
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ jobs:
2929
contents: write
3030
issues: write
3131
pull-requests: read
32+
id-token: write
3233
secrets: inherit
3334
with:
3435
final: ${{ inputs.mode == 'final' }}

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
Changes in [37.0.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v37.0.0) (2025-02-25)
2+
==================================================================================================
3+
## 🚨 BREAKING CHANGES
4+
5+
* Remove deprecated `PrefixedLogger` interface ([#4705](https://github.com/matrix-org/matrix-js-sdk/pull/4705)). Contributed by @richvdh.
6+
* Remove legacy crypto ([#4653](https://github.com/matrix-org/matrix-js-sdk/pull/4653)). Contributed by @florianduros.
7+
8+
## 🦖 Deprecations
9+
10+
* Improve types around User Interactive Auth ([#4709](https://github.com/matrix-org/matrix-js-sdk/pull/4709)). Contributed by @t3chguy.
11+
12+
## ✨ Features
13+
14+
* Fix typos in client.ts ([#4715](https://github.com/matrix-org/matrix-js-sdk/pull/4715)). Contributed by @toger5.
15+
* Enable key upload to backups where we have the decryption key ([#4677](https://github.com/matrix-org/matrix-js-sdk/pull/4677)). Contributed by @ajbura.
16+
* Remove deprecated `PrefixedLogger` interface ([#4705](https://github.com/matrix-org/matrix-js-sdk/pull/4705)). Contributed by @richvdh.
17+
* `MatrixClient.setAccountData`: await remote echo. ([#4695](https://github.com/matrix-org/matrix-js-sdk/pull/4695)). Contributed by @richvdh.
18+
19+
## 🐛 Bug Fixes
20+
21+
* Improve types around User Interactive Auth ([#4709](https://github.com/matrix-org/matrix-js-sdk/pull/4709)). Contributed by @t3chguy.
22+
* Fix `resetEncryption` to remove secrets in 4S ([#4683](https://github.com/matrix-org/matrix-js-sdk/pull/4683)). Contributed by @florianduros.
23+
24+
125
Changes in [36.2.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v36.2.0) (2025-02-11)
226
==================================================================================================
327
## 🦖 Deprecations

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "matrix-js-sdk",
3-
"version": "36.2.0",
3+
"version": "37.0.0",
44
"description": "Matrix Client-Server SDK for Javascript",
55
"engines": {
66
"node": ">=20.0.0"

src/@types/event.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,8 @@ export enum EventType {
138138
RoomKeyRequest = "m.room_key_request",
139139
ForwardedRoomKey = "m.forwarded_room_key",
140140
Dummy = "m.dummy",
141+
SecretRequest = "m.secret.request",
142+
SecretSend = "m.secret.send",
141143

142144
// Group call events
143145
GroupCallPrefix = "org.matrix.msc3401.call",

0 commit comments

Comments
 (0)