mirror of
https://mau.dev/mautrix/go.git
synced 2026-03-14 14:25:53 +01:00
Bump version to v0.16.1
This commit is contained in:
parent
eea14cb9a4
commit
58a7323f0a
4 changed files with 13 additions and 5 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
|
@ -1,7 +1,15 @@
|
|||
## unreleased
|
||||
## v0.16.1 (2023-09-16)
|
||||
|
||||
* **Breaking change *(id)*** Updated user ID localpart encoding to not encode
|
||||
`+` as per [MSC4009].
|
||||
* *(bridge)* Added bridge utility to handle double puppeting logins.
|
||||
* The utility supports automatic logins with all three current methods
|
||||
(shared secret, legacy appservice, new appservice).
|
||||
* *(appservice)* Added warning logs and timeout on appservice event handling.
|
||||
* Defaults to warning after 30 seconds and timeout 15 minutes after that.
|
||||
* Timeouts can be adjusted or disabled by setting `ExecSync` variables in the
|
||||
`EventProcessor`.
|
||||
* *(crypto/olm)* Added `PkDecryption` wrapper.
|
||||
|
||||
[MSC4009]: https://github.com/matrix-org/matrix-spec-proposals/pull/4009
|
||||
|
||||
|
|
|
|||
2
go.mod
2
go.mod
|
|
@ -12,7 +12,7 @@ require (
|
|||
github.com/tidwall/gjson v1.16.0
|
||||
github.com/tidwall/sjson v1.2.5
|
||||
github.com/yuin/goldmark v1.5.6
|
||||
go.mau.fi/util v0.0.0-20230906154548-ffc399173e21
|
||||
go.mau.fi/util v0.1.0
|
||||
go.mau.fi/zeroconfig v0.1.2
|
||||
golang.org/x/crypto v0.13.0
|
||||
golang.org/x/exp v0.0.0-20230905200255-921286631fa9
|
||||
|
|
|
|||
4
go.sum
4
go.sum
|
|
@ -35,8 +35,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.5.6 h1:COmQAWTCcGetChm3Ig7G/t8AFAN00t+o8Mt4cf7JpwA=
|
||||
github.com/yuin/goldmark v1.5.6/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY=
|
||||
go.mau.fi/util v0.0.0-20230906154548-ffc399173e21 h1:dj1V9hVkB+q5Vlm1ugo4Y4rLROblswgFkbko4gl4UjQ=
|
||||
go.mau.fi/util v0.0.0-20230906154548-ffc399173e21/go.mod h1:AxuJUMCxpzgJ5eV9JbPWKRH8aAJJidxetNdUj7qcb84=
|
||||
go.mau.fi/util v0.1.0 h1:BwIFWIOEeO7lsiI2eWKFkWTfc5yQmoe+0FYyOFVyaoE=
|
||||
go.mau.fi/util v0.1.0/go.mod h1:AxuJUMCxpzgJ5eV9JbPWKRH8aAJJidxetNdUj7qcb84=
|
||||
go.mau.fi/zeroconfig v0.1.2 h1:DKOydWnhPMn65GbXZOafgkPm11BvFashZWLct0dGFto=
|
||||
go.mau.fi/zeroconfig v0.1.2/go.mod h1:NcSJkf180JT+1IId76PcMuLTNa1CzsFFZ0nBygIQM70=
|
||||
golang.org/x/crypto v0.13.0 h1:mvySKfSWJ+UKUii46M40LOvyWfN0s2U+46/jDd0e6Ck=
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ import (
|
|||
"strings"
|
||||
)
|
||||
|
||||
const Version = "v0.16.0"
|
||||
const Version = "v0.16.1"
|
||||
|
||||
var GoModVersion = ""
|
||||
var Commit = ""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue