Skip to content

Commit 12db97a

Browse files
committed
Bump version to v0.23.1
1 parent b6c225c commit 12db97a

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## v0.23.1 (2025-02-16)
2+
3+
* *(client)* Added `FullStateEvent` method to get a state event including
4+
metadata (using the `?format=event` query parameter).
5+
* *(client)* Added wrapper method for [MSC4194]'s redact endpoint.
6+
* *(pushrules)* Fixed content rules not considering word boundaries and being
7+
case-sensitive.
8+
* *(crypto)* Fixed bugs that would cause key exports to fail for no reason.
9+
* *(crypto)* Deprecated `ResolveTrust` in favor of `ResolveTrustContext`.
10+
* *(crypto)* Stopped accepting secret shares from unverified devices.
11+
* **Breaking change *(crypto)*** Changed `GetAndVerifyLatestKeyBackupVersion`
12+
to take an optional private key parameter. The method will now trust the
13+
public key if it matches the provided private key even if there are no valid
14+
signatures.
15+
* **Breaking change *(crypto)*** Added context parameter to `IsDeviceTrusted`.
16+
17+
[MSC4194]: https://github.com/matrix-org/matrix-spec-proposals/pull/4194
18+
119
## v0.23.0 (2025-01-16)
220

321
* **Breaking change *(client)*** Changed `JoinRoom` parameters to allow multiple

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.23.0"
10+
const Version = "v0.23.1"
1111

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

0 commit comments

Comments
 (0)