Skip to content

Commit 2dcf2f9

Browse files
committed
Bump version to v0.22.1
1 parent 351b49f commit 2dcf2f9

File tree

4 files changed

+30
-7
lines changed

4 files changed

+30
-7
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## v0.22.1 (2024-12-16)
2+
3+
* *(crypto)* Added automatic cleanup when there are too many olm sessions with
4+
a single device.
5+
* *(crypto)* Added helper for getting cached device list with cross-signing
6+
status.
7+
* *(crypto/verificationhelper)* Added interface for persisting the state of
8+
in-progress verifications.
9+
* *(client)* Added `GetMutualRooms` wrapper for [MSC2666].
10+
* *(client)* Switched `JoinRoom` to use the `via` query param instead of
11+
`server_name` as per [MSC4156].
12+
* *(bridgev2/commands)* Fixed `pm` command not actually starting the chat.
13+
* *(bridgev2/interface)* Added separate network API interface for starting
14+
chats with a Matrix ghost user. This allows treating internal user IDs
15+
differently than arbitrary user-input strings.
16+
* *(bridgev2/crypto)* Added support for [MSC4190]
17+
(thanks to [@onestacked] in [#288]).
18+
19+
[MSC2666]: https://github.com/matrix-org/matrix-spec-proposals/pull/2666
20+
[MSC4156]: https://github.com/matrix-org/matrix-spec-proposals/pull/4156
21+
[MSC4190]: https://github.com/matrix-org/matrix-spec-proposals/pull/4190
22+
[#288]: https://github.com/mautrix/go/pull/288
23+
124
## v0.22.0 (2024-11-16)
225

326
* *(hicli)* Moved package into gomuks repo.

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ require (
1818
github.com/tidwall/gjson v1.18.0
1919
github.com/tidwall/sjson v1.2.5
2020
github.com/yuin/goldmark v1.7.8
21-
go.mau.fi/util v0.8.3-0.20241212004537-24c1a9b1d8f6
21+
go.mau.fi/util v0.8.3
2222
go.mau.fi/zeroconfig v0.1.3
2323
golang.org/x/crypto v0.31.0
24-
golang.org/x/exp v0.0.0-20241210194714-1829a127f884
24+
golang.org/x/exp v0.0.0-20241215155358-4a5509556b9e
2525
golang.org/x/net v0.32.0
2626
golang.org/x/sync v0.10.0
2727
gopkg.in/yaml.v3 v3.0.1

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@ github.com/tidwall/sjson v1.2.5 h1:kLy8mja+1c9jlljvWTlSazM7cKDRfJuR/bOJhcY5NcY=
5151
github.com/tidwall/sjson v1.2.5/go.mod h1:Fvgq9kS/6ociJEDnK0Fk1cpYF4FIW6ZF7LAe+6jwd28=
5252
github.com/yuin/goldmark v1.7.8 h1:iERMLn0/QJeHFhxSt3p6PeN9mGnvIKSpG9YYorDMnic=
5353
github.com/yuin/goldmark v1.7.8/go.mod h1:uzxRWxtg69N339t3louHJ7+O03ezfj6PlliRlaOzY1E=
54-
go.mau.fi/util v0.8.3-0.20241212004537-24c1a9b1d8f6 h1:s4aQJQBBMkjkHTdThRRNp2E35wqmMJVGkOAXG4b0X8c=
55-
go.mau.fi/util v0.8.3-0.20241212004537-24c1a9b1d8f6/go.mod h1:sWpI/kFgk/QP4BDJJwSjjBsuAT7oUsj9VlFhvUo+34I=
54+
go.mau.fi/util v0.8.3 h1:sulhXtfquMrQjsOP67x9CzWVBYUwhYeoo8hNQIpCWZ4=
55+
go.mau.fi/util v0.8.3/go.mod h1:c00Db8xog70JeIsEvhdHooylTkTkakgnAOsZ04hplQY=
5656
go.mau.fi/zeroconfig v0.1.3 h1:As9wYDKmktjmNZW5i1vn8zvJlmGKHeVxHVIBMXsm4kM=
5757
go.mau.fi/zeroconfig v0.1.3/go.mod h1:NcSJkf180JT+1IId76PcMuLTNa1CzsFFZ0nBygIQM70=
5858
golang.org/x/crypto v0.31.0 h1:ihbySMvVjLAeSH1IbfcRTkD/iNscyz8rGzjF/E5hV6U=
5959
golang.org/x/crypto v0.31.0/go.mod h1:kDsLvtWBEx7MV9tJOj9bnXsPbxwJQ6csT/x4KIN4Ssk=
60-
golang.org/x/exp v0.0.0-20241210194714-1829a127f884 h1:Y/Mj/94zIQQGHVSv1tTtQBDaQaJe62U9bkDZKKyhPCU=
61-
golang.org/x/exp v0.0.0-20241210194714-1829a127f884/go.mod h1:qj5a5QZpwLU2NLQudwIN5koi3beDhSAlJwa67PuM98c=
60+
golang.org/x/exp v0.0.0-20241215155358-4a5509556b9e h1:4qufH0hlUYs6AO6XmZC3GqfDPGSXHVXUFR6OND+iJX4=
61+
golang.org/x/exp v0.0.0-20241215155358-4a5509556b9e/go.mod h1:qj5a5QZpwLU2NLQudwIN5koi3beDhSAlJwa67PuM98c=
6262
golang.org/x/net v0.32.0 h1:ZqPmj8Kzc+Y6e0+skZsuACbx+wzMgo5MQsJh9Qd6aYI=
6363
golang.org/x/net v0.32.0/go.mod h1:CwU0IoeOlnQQWJ6ioyFrfRuomB8GKF6KbYXZVyeXNfs=
6464
golang.org/x/sync v0.10.0 h1:3NQrjDixjgGwUOCaF8w2+VYHv0Ve/vGYSbdkTa98gmQ=

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

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

0 commit comments

Comments
 (0)