File tree 4 files changed +30
-7
lines changed 4 files changed +30
-7
lines changed Original file line number Diff line number Diff line change
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
+
1
24
## v0.22.0 (2024-11-16)
2
25
3
26
* * (hicli)* Moved package into gomuks repo.
Original file line number Diff line number Diff line change @@ -18,10 +18,10 @@ require (
18
18
github.com/tidwall/gjson v1.18.0
19
19
github.com/tidwall/sjson v1.2.5
20
20
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
22
22
go.mau.fi/zeroconfig v0.1.3
23
23
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
25
25
golang.org/x/net v0.32.0
26
26
golang.org/x/sync v0.10.0
27
27
gopkg.in/yaml.v3 v3.0.1
Original file line number Diff line number Diff line change @@ -51,14 +51,14 @@ github.com/tidwall/sjson v1.2.5 h1:kLy8mja+1c9jlljvWTlSazM7cKDRfJuR/bOJhcY5NcY=
51
51
github.com/tidwall/sjson v1.2.5 /go.mod h1:Fvgq9kS/6ociJEDnK0Fk1cpYF4FIW6ZF7LAe+6jwd28 =
52
52
github.com/yuin/goldmark v1.7.8 h1:iERMLn0/QJeHFhxSt3p6PeN9mGnvIKSpG9YYorDMnic =
53
53
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 =
56
56
go.mau.fi/zeroconfig v0.1.3 h1:As9wYDKmktjmNZW5i1vn8zvJlmGKHeVxHVIBMXsm4kM =
57
57
go.mau.fi/zeroconfig v0.1.3 /go.mod h1:NcSJkf180JT+1IId76PcMuLTNa1CzsFFZ0nBygIQM70 =
58
58
golang.org/x/crypto v0.31.0 h1:ihbySMvVjLAeSH1IbfcRTkD/iNscyz8rGzjF/E5hV6U =
59
59
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 =
62
62
golang.org/x/net v0.32.0 h1:ZqPmj8Kzc+Y6e0+skZsuACbx+wzMgo5MQsJh9Qd6aYI =
63
63
golang.org/x/net v0.32.0 /go.mod h1:CwU0IoeOlnQQWJ6ioyFrfRuomB8GKF6KbYXZVyeXNfs =
64
64
golang.org/x/sync v0.10.0 h1:3NQrjDixjgGwUOCaF8w2+VYHv0Ve/vGYSbdkTa98gmQ =
Original file line number Diff line number Diff line change 7
7
"strings"
8
8
)
9
9
10
- const Version = "v0.22.0 "
10
+ const Version = "v0.22.1 "
11
11
12
12
var GoModVersion = ""
13
13
var Commit = ""
You can’t perform that action at this time.
0 commit comments