Skip to content

Commit 81a807a

Browse files
committed
Bump version to v0.24.2
1 parent fcc72dc commit 81a807a

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## v0.24.2 (2025-07-16)
2+
3+
* *(bridgev2)* Added support for return values from portal event handlers. Note
4+
that the return value will always be "queued" unless the event buffer is
5+
disabled.
6+
* *(bridgev2)* Added support for [MSC4144] per-message profile passthrough in
7+
relay mode.
8+
* *(bridgev2)* Added option to auto-reconnect logins after a certain period if
9+
they hit an `UNKNOWN_ERROR` state.
10+
* *(bridgev2)* Added analytics for event handler panics.
11+
* *(bridgev2)* Changed new room creation to hardcode room v11 to avoid v12 rooms
12+
being created before proper support for them can be added.
13+
* *(bridgev2)* Changed queuing events to block instead of dropping events if the
14+
buffer is full.
15+
* *(bridgev2)* Fixed assumption that replies to unknown messages are cross-room.
16+
* *(id)* Fixed server name validation not including ports correctly
17+
(thanks to [@krombel] in [#392]).
18+
* *(federation)* Fixed base64 algorithm in signature generation.
19+
* *(event)* Fixed [MSC4144] fallbacks not being removed from edits.
20+
21+
[@krombel]: https://github.com/krombel
22+
[#392]: https://github.com/mautrix/go/pull/392
23+
124
## v0.24.1 (2025-06-16)
225

326
* *(commands)* Added framework for using reactions as buttons that execute

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"strings"
88
)
99

10-
const Version = "v0.24.1"
10+
const Version = "v0.24.2"
1111

1212
var GoModVersion = ""
1313
var Commit = ""

0 commit comments

Comments
 (0)