mirror of
https://mau.dev/mautrix/go.git
synced 2026-03-14 14:25:53 +01:00
Bump version to v0.19.0-beta.1
This commit is contained in:
parent
8b7a3ea230
commit
ace2f37f01
3 changed files with 49 additions and 9 deletions
40
CHANGELOG.md
40
CHANGELOG.md
|
|
@ -1,3 +1,43 @@
|
|||
## v0.19.0 (unreleased)
|
||||
|
||||
### beta.1 (2024-06-16)
|
||||
|
||||
* *(bridgev2)* Added experimental high-level bridge framework.
|
||||
* *(hicli)* Added experimental high-level client framework.
|
||||
* **Slightly breaking changes**
|
||||
* *(crypto)* Added room ID and first known index parameters to
|
||||
`SessionReceived` callback.
|
||||
* *(crypto)* Changed `ImportRoomKeyFromBackup` to return the imported
|
||||
session.
|
||||
* *(client)* Added `error` parameter to `ResponseHook`.
|
||||
* *(client)* Changed `Download` to return entire response instead of just an
|
||||
`io.Reader`.
|
||||
* *(crypto)* Changed initial olm device sharing to save keys before sharing to
|
||||
ensure keys aren't accidentally regenerated in case the request fails.
|
||||
* *(crypto)* Changed `EncryptMegolmEvent` and `ShareGroupSession` to return
|
||||
more errors instead of only logging and ignoring them.
|
||||
* *(crypto)* Added option to completely disable megolm ratchet tracking.
|
||||
* The tracking is meant for bots and bridges which may want to delete old
|
||||
keys, but for normal clients it's just unnecessary overhead.
|
||||
* *(crypto)* Changed Megolm session storage methods in `Store` to not take
|
||||
sender key as parameter.
|
||||
* This causes a breaking change to the layout of the `MemoryStore` struct.
|
||||
Using MemoryStore in production is not recommended.
|
||||
* *(crypto)* Changed `DecryptMegolmEvent` to copy `m.relates_to` in the raw
|
||||
content too instead of only in the parsed struct.
|
||||
* *(crypto)* Exported function to parse megolm message index from raw
|
||||
ciphertext bytes.
|
||||
* *(crypto/sqlstore)* Fixed schema of `crypto_secrets` table to include
|
||||
account ID.
|
||||
* *(crypto/verificationhelper)* Fixed more bugs.
|
||||
* *(client)* Added `UpdateRequestOnRetry` hook which is called immediately
|
||||
before retrying a normal HTTP request.
|
||||
* *(client)* Added support for MSC3916 media download endpoint.
|
||||
* Support is automatically detected from spec versions. The `SpecVersions`
|
||||
property can either be filled manually, or `Versions` can be called to
|
||||
automatically populate the field with the response.
|
||||
* *(event)* Added constants for known room versions.
|
||||
|
||||
## v0.18.1 (2024-04-16)
|
||||
|
||||
* *(format)* Added a `context.Context` field to HTMLParser's Context struct.
|
||||
|
|
|
|||
6
go.mod
6
go.mod
|
|
@ -14,11 +14,11 @@ require (
|
|||
github.com/stretchr/testify v1.9.0
|
||||
github.com/tidwall/gjson v1.17.1
|
||||
github.com/tidwall/sjson v1.2.5
|
||||
github.com/yuin/goldmark v1.7.1
|
||||
go.mau.fi/util v0.4.3-0.20240611132549-e72a5f4745e7
|
||||
github.com/yuin/goldmark v1.7.2
|
||||
go.mau.fi/util v0.5.0
|
||||
go.mau.fi/zeroconfig v0.1.2
|
||||
golang.org/x/crypto v0.24.0
|
||||
golang.org/x/exp v0.0.0-20240604190554-fc45aab8b7f8
|
||||
golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8
|
||||
golang.org/x/net v0.26.0
|
||||
gopkg.in/yaml.v3 v3.0.1
|
||||
maunium.net/go/mauflag v1.0.0
|
||||
|
|
|
|||
12
go.sum
12
go.sum
|
|
@ -44,16 +44,16 @@ github.com/tidwall/pretty v1.2.0 h1:RWIZEg2iJ8/g6fDDYzMpobmaoGh5OLl4AXtGUGPcqCs=
|
|||
github.com/tidwall/pretty v1.2.0/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU=
|
||||
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.1 h1:3bajkSilaCbjdKVsKdZjZCLBNPL9pYzrCakKaf4U49U=
|
||||
github.com/yuin/goldmark v1.7.1/go.mod h1:uzxRWxtg69N339t3louHJ7+O03ezfj6PlliRlaOzY1E=
|
||||
go.mau.fi/util v0.4.3-0.20240611132549-e72a5f4745e7 h1:DviEWXBpeOlFrqIf5s/iBDp1ewZx8fe6imMJ78kq3tA=
|
||||
go.mau.fi/util v0.4.3-0.20240611132549-e72a5f4745e7/go.mod h1:Eaj7jl37ehkA7S6vE/vfPs5PsY8e91FKZ2BqA3OM/NU=
|
||||
github.com/yuin/goldmark v1.7.2 h1:NjGd7lO7zrUn/A7eKwn5PEOt4ONYGqpxSEeZuduvgxc=
|
||||
github.com/yuin/goldmark v1.7.2/go.mod h1:uzxRWxtg69N339t3louHJ7+O03ezfj6PlliRlaOzY1E=
|
||||
go.mau.fi/util v0.5.0 h1:8yELAl+1CDRrwGe9NUmREgVclSs26Z68pTWePHVxuDo=
|
||||
go.mau.fi/util v0.5.0/go.mod h1:DsJzUrJAG53lCZnnYvq9/mOyLuPScWwYhvETiTrpdP4=
|
||||
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.24.0 h1:mnl8DM0o513X8fdIkmyFE/5hTYxbwYOjDS/+rK6qpRI=
|
||||
golang.org/x/crypto v0.24.0/go.mod h1:Z1PMYSOR5nyMcyAVAIQSKCDwalqy85Aqn1x3Ws4L5DM=
|
||||
golang.org/x/exp v0.0.0-20240604190554-fc45aab8b7f8 h1:LoYXNGAShUG3m/ehNk4iFctuhGX/+R1ZpfJ4/ia80JM=
|
||||
golang.org/x/exp v0.0.0-20240604190554-fc45aab8b7f8/go.mod h1:jj3sYF3dwk5D+ghuXyeI3r5MFf+NT2An6/9dOA95KSI=
|
||||
golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8 h1:yixxcjnhBmY0nkL253HFVIm0JsFHwrHdT3Yh6szTnfY=
|
||||
golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8/go.mod h1:jj3sYF3dwk5D+ghuXyeI3r5MFf+NT2An6/9dOA95KSI=
|
||||
golang.org/x/net v0.26.0 h1:soB7SVo0PWrY4vPW/+ay0jKDNScG2X9wFeYlXIvJsOQ=
|
||||
golang.org/x/net v0.26.0/go.mod h1:5YKkiSynbBIh3p6iOc/vibscux0x38BZDkn8sCUPxHE=
|
||||
golang.org/x/sys v0.0.0-20220310020820-b874c991c1a5/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue