mirror of
https://mau.dev/mautrix/go.git
synced 2026-03-14 14:25:53 +01:00
Bump version to v0.21.0
This commit is contained in:
parent
b5602fd4fe
commit
1e3493188f
4 changed files with 20 additions and 5 deletions
17
CHANGELOG.md
17
CHANGELOG.md
|
|
@ -1,7 +1,22 @@
|
|||
## unreleased
|
||||
## v0.21.0 (2024-09-16)
|
||||
|
||||
* **Breaking change *(client)*** Dropped support for unauthenticated media.
|
||||
Matrix v1.11 support is now required from the homeserver, although it's not
|
||||
enforced using `/versions` as some servers don't advertise it.
|
||||
* *(bridgev2)* Added more features and fixed bugs.
|
||||
* *(appservice,crypto)* Added support for using MSC3202 for appservice
|
||||
encryption.
|
||||
* *(crypto/olm)* Made everything into an interface to allow side-by-side
|
||||
testing of libolm and goolm, as well as potentially support vodozemac
|
||||
in the future.
|
||||
* *(client)* Fixed requests being retried even after context is canceled.
|
||||
* *(client)* Added option to move `/sync` request logs to trace level.
|
||||
* *(error)* Added `Write` and `WithMessage` helpers to `RespError` to make it
|
||||
easier to use on servers.
|
||||
* *(event)* Fixed `org.matrix.msc1767.audio` field allowing omitting the
|
||||
duration and waveform.
|
||||
* *(id)* Changed `MatrixURI` methods to not panic if the receiver is nil.
|
||||
* *(federation)* Added limit to response size when fetching `.well-known` files.
|
||||
|
||||
## v0.20.0 (2024-08-16)
|
||||
|
||||
|
|
|
|||
2
go.mod
2
go.mod
|
|
@ -18,7 +18,7 @@ require (
|
|||
github.com/tidwall/gjson v1.17.3
|
||||
github.com/tidwall/sjson v1.2.5
|
||||
github.com/yuin/goldmark v1.7.4
|
||||
go.mau.fi/util v0.7.1-0.20240913091524-7617daa66719
|
||||
go.mau.fi/util v0.8.0
|
||||
go.mau.fi/zeroconfig v0.1.3
|
||||
golang.org/x/crypto v0.27.0
|
||||
golang.org/x/exp v0.0.0-20240909161429-701f63a606c0
|
||||
|
|
|
|||
4
go.sum
4
go.sum
|
|
@ -51,8 +51,8 @@ github.com/tidwall/sjson v1.2.5 h1:kLy8mja+1c9jlljvWTlSazM7cKDRfJuR/bOJhcY5NcY=
|
|||
github.com/tidwall/sjson v1.2.5/go.mod h1:Fvgq9kS/6ociJEDnK0Fk1cpYF4FIW6ZF7LAe+6jwd28=
|
||||
github.com/yuin/goldmark v1.7.4 h1:BDXOHExt+A7gwPCJgPIIq7ENvceR7we7rOS9TNoLZeg=
|
||||
github.com/yuin/goldmark v1.7.4/go.mod h1:uzxRWxtg69N339t3louHJ7+O03ezfj6PlliRlaOzY1E=
|
||||
go.mau.fi/util v0.7.1-0.20240913091524-7617daa66719 h1:sg1P/f4RHY1JuAwsPOjTCsZr8ROzR9bRTtnvvBu42d4=
|
||||
go.mau.fi/util v0.7.1-0.20240913091524-7617daa66719/go.mod h1:1Ixb8HWoVbl3rT6nAX6nV4iMkzn7KU/KXwE0Rn5RmsQ=
|
||||
go.mau.fi/util v0.8.0 h1:MiSny8jgQq4XtCLAT64gDJhZVhqiDeMVIEBDFVw+M0g=
|
||||
go.mau.fi/util v0.8.0/go.mod h1:1Ixb8HWoVbl3rT6nAX6nV4iMkzn7KU/KXwE0Rn5RmsQ=
|
||||
go.mau.fi/zeroconfig v0.1.3 h1:As9wYDKmktjmNZW5i1vn8zvJlmGKHeVxHVIBMXsm4kM=
|
||||
go.mau.fi/zeroconfig v0.1.3/go.mod h1:NcSJkf180JT+1IId76PcMuLTNa1CzsFFZ0nBygIQM70=
|
||||
golang.org/x/crypto v0.27.0 h1:GXm2NjJrPaiv/h1tb2UH8QfgC/hOf/+z0p6PT8o1w7A=
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ import (
|
|||
"strings"
|
||||
)
|
||||
|
||||
const Version = "v0.20.0"
|
||||
const Version = "v0.21.0"
|
||||
|
||||
var GoModVersion = ""
|
||||
var Commit = ""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue