mirror of
https://mau.dev/mautrix/go.git
synced 2026-03-14 14:25:53 +01:00
Bump version to v0.15.0-beta.3
This commit is contained in:
parent
7b3389a2c1
commit
fb2c4bf10b
2 changed files with 17 additions and 8 deletions
23
CHANGELOG.md
23
CHANGELOG.md
|
|
@ -1,12 +1,21 @@
|
|||
## v0.15.0 (unreleased)
|
||||
|
||||
* *(client)* Changed request logging to log durations as floats instead of strings.
|
||||
* *(bridge)* Changed zerolog to use nanosecond instead of second precision timestamps.
|
||||
* *(crypto)* Added message index to log after encrypting/decrypting megolm events.
|
||||
* *(sqlstatestore)* Fixed warning log for rooms that don't have encryption enabled.
|
||||
* **Breaking change *(appservice)*** Removed `Load()` and `AppService.Init()` functions.
|
||||
The struct should just be created with `Create()` and the relevant fields should
|
||||
be filled manually.
|
||||
### beta.3 (2023-03-15)
|
||||
|
||||
* **Breaking change *(appservice)*** Removed `Load()` and `AppService.Init()`
|
||||
functions. The struct should just be created with `Create()` and the relevant
|
||||
fields should be filled manually.
|
||||
* **Breaking change *(appservice)*** Removed public `HomeserverURL` field and
|
||||
replaced it with a `SetHomeserverURL` method.
|
||||
* *(appservice)* Added support for unix sockets for homeserver URL and
|
||||
appservice HTTP server.
|
||||
* *(client)* Changed request logging to log durations as floats instead of
|
||||
strings (using zerolog's `Dur()`, so the exact output can be configured).
|
||||
* *(bridge)* Changed zerolog to use nanosecond precision timestamps.
|
||||
* *(crypto)* Added message index to log after encrypting/decrypting megolm
|
||||
events, and when failing to decrypt due to duplicate index.
|
||||
* *(sqlstatestore)* Fixed warning log for rooms that don't have encryption
|
||||
enabled.
|
||||
|
||||
### beta.2 (2023-03-02)
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
package mautrix
|
||||
|
||||
const Version = "v0.15.0-beta.2"
|
||||
const Version = "v0.15.0-beta.3"
|
||||
|
||||
var DefaultUserAgent = "mautrix-go/" + Version
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue