Skip to content

Commit 36029b7

Browse files
committed
Bump version to v0.26.0
1 parent 202c7f1 commit 36029b7

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,34 @@
1-
## v0.26.0 (unreleased)
1+
## v0.26.0 (2025-11-16)
22

3+
* *(client,appservice)* Deprecated `SendMassagedStateEvent` as `SendStateEvent`
4+
has been able to do the same for a while now.
35
* *(client,federation)* Added size limits for responses to make it safer to send
46
requests to untrusted servers.
57
* *(client)* Added wrapper for `/admin/whois` client API
68
(thanks to [@nexy7574] in [#411]).
79
* *(synapseadmin)* Added `force_purge` option to DeleteRoom
810
(thanks to [@nexy7574] in [#420]).
11+
* *(statestore)* Added saving join rules for rooms.
912
* *(bridgev2)* Added optional automatic rollback of room state if bridging the
1013
change to the remote network fails.
1114
* *(bridgev2)* Added management room notices if transient disconnect state
1215
doesn't resolve within 3 minutes.
1316
* *(bridgev2)* Added interface to signal that certain participants couldn't be
1417
invited when creating a group.
1518
* *(bridgev2)* Added `select` type for user input fields in login.
19+
* *(bridgev2)* Added interface to let network connector customize personal
20+
filtering space.
1621
* *(bridgev2/matrix)* Added checks to avoid sending error messages in reply to
1722
other bots.
23+
* *(bridgev2/matrix)* Switched to using [MSC4169] to send redactions whenever
24+
possible.
1825
* *(bridgev2/publicmedia)* Added support for custom path prefixes, file names,
1926
and encrypted files.
2027
* *(bridgev2/commands)* Added command to resync a single portal.
2128
* *(bridgev2/commands)* Added create group command.
2229
* *(bridgev2/config)* Added option to limit maximum number of logins.
30+
* *(bridgev2)* Changed ghost joining to skip unnecessary invite if portal room
31+
is public.
2332
* *(bridgev2/disappear)* Changed read receipt handling to only start
2433
disappearing timers for messages up to the read message (note: may not work in
2534
all cases if the read receipt points at an unknown event).
@@ -34,6 +43,7 @@
3443
* *(federation)* Fixed validating auth for requests with query params.
3544
* *(federation/eventauth)* Fixed typo causing restricted joins to not work.
3645

46+
[MSC416]: https://github.com/matrix-org/matrix-spec-proposals/pull/4169
3747
[#411]: github.com/mautrix/go/pull/411
3848
[#420]: github.com/mautrix/go/pull/420
3949
[#426]: github.com/mautrix/go/pull/426

version.go

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

11-
const Version = "v0.25.2"
11+
const Version = "v0.26.0"
1212

1313
var GoModVersion = ""
1414
var Commit = ""

0 commit comments

Comments
 (0)