aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Alexander <neilalexander@users.noreply.github.com>2022-11-04 15:33:20 +0000
committerGitHub <noreply@github.com>2022-11-04 15:33:20 +0000
commit7c73b131f499e9d820565a739dbc5caeca342be3 (patch)
treef10f862acc1426bc8cc048784be9f434c56d23dc
parentefe28db631bd07240dea53280d8c8f2ecc20684a (diff)
Version 0.10.7 (#2861)v0.10.7
Changelog and version bump.
-rw-r--r--CHANGES.md17
-rw-r--r--internal/version.go2
2 files changed, 18 insertions, 1 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 55df36f9..cdeb1dea 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,5 +1,22 @@
# Changelog
+## Dendrite 0.10.7 (2022-11-04)
+
+### Features
+
+* Dendrite will now use a native SQLite port when building with `CGO_ENABLED=0`
+* A number of `thirdparty` endpoints have been added, improving support for appservices
+
+### Fixes
+
+* The `"state"` section of the `/sync` response is no longer limited, so state events should not be dropped unexpectedly
+* The deduplication of the `"timeline"` and `"state"` sections in `/sync` is now performed after applying history visibility, so state events should not be dropped unexpectedly
+* The `prev_batch` token returned by `/sync` is now calculated after applying history visibility, so that the pagination boundaries are correct
+* The room summary membership counts in `/sync` should now be calculated properly in more cases
+* A false membership leave event should no longer be sent down `/sync` as a result of retiring an accepted invite (contributed by [tak-hntlabs](https://github.com/tak-hntlabs))
+* Presence updates are now only sent to other servers for which the user shares rooms
+* A bug which could cause a panic when converting events into the `ClientEvent` format has been fixed
+
## Dendrite 0.10.6 (2022-11-01)
### Features
diff --git a/internal/version.go b/internal/version.go
index f762adf9..85b19046 100644
--- a/internal/version.go
+++ b/internal/version.go
@@ -17,7 +17,7 @@ var build string
const (
VersionMajor = 0
VersionMinor = 10
- VersionPatch = 6
+ VersionPatch = 7
VersionTag = "" // example: "rc1"
)