You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 25, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: CHANGES.md
+30-4Lines changed: 30 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,31 @@
1
1
# Changelog
2
2
3
+
## Dendrite 0.6.5 (2022-03-04)
4
+
5
+
### Features
6
+
7
+
* Early support for push notifications has been added, with support for push rules, pushers, HTTP push gateways and the `/notifications` endpoint (contributions by [danpe](https://github.com/danpe), [PiotrKozimor](https://github.com/PiotrKozimor) and [tommie](https://github.com/tommie))
8
+
* Spaces Summary (MSC2946) is now correctly supported (when `msc2946` is enabled in the config)
9
+
* All media API endpoints are now available under the `/v3` namespace
10
+
* Profile updates (display name and avatar) are now sent asynchronously so they shouldn't block the client for a very long time
11
+
* State resolution v2 has been optimised further to considerably reduce the number of memory allocations
12
+
* State resolution v2 will no longer duplicate events unnecessarily when calculating the auth difference
13
+
* The `create-account` tool now has a `-reset-password` option for resetting the passwords of existing accounts
14
+
* The `/sync` endpoint now calculates device list changes much more quickly with less RAM used
15
+
* The `/messages` endpoint now lazy-loads members correctly
16
+
17
+
### Fixes
18
+
19
+
* Read receipts now work correctly by correcting bugs in the stream positions and receipt coalescing
20
+
* Topological sorting of state and join responses has been corrected, which should help to reduce the number of auth problems when joining new federated rooms
21
+
* Media thumbnails should now work properly after having unnecessarily strict rate limiting removed
22
+
* The roomserver no longer holds transactions for as long when processing input events
23
+
* Uploading device keys and cross-signing keys will now correctly no-op if there were no changes
24
+
* Parameters are now remembered correctly during registration
25
+
* Devices can now only be deleted within the appropriate UIA flow
26
+
* The `/context` endpoint now returns 404 instead of 500 if the event was not found
27
+
* SQLite mode will no longer leak memory as a result of not closing prepared statements
28
+
3
29
## Dendrite 0.6.4 (2022-02-21)
4
30
5
31
### Features
@@ -210,9 +236,9 @@
210
236
211
237
### Fixes
212
238
213
-
-**SECURITY:** A bug in SQLite mode which could cause the registration flow to complete unexpectedly for existing accounts has been fixed (PostgreSQL deployments are not affected)
214
-
- A panic in the federation sender has been fixed when shutting down destination queues
215
-
- The `/keys/upload` endpoint now correctly returns the number of one-time keys in response to an empty upload request
239
+
***SECURITY:** A bug in SQLite mode which could cause the registration flow to complete unexpectedly for existing accounts has been fixed (PostgreSQL deployments are not affected)
240
+
* A panic in the federation sender has been fixed when shutting down destination queues
241
+
* The `/keys/upload` endpoint now correctly returns the number of one-time keys in response to an empty upload request
216
242
217
243
## Dendrite 0.3.10 (2021-02-17)
218
244
@@ -534,4 +560,4 @@ First versioned release of Dendrite.
Copy file name to clipboardExpand all lines: README.md
+40-29Lines changed: 40 additions & 29 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,26 +2,29 @@
2
2
3
3
Dendrite is a second-generation Matrix homeserver written in Go.
4
4
It intends to provide an **efficient**, **reliable** and **scalable** alternative to [Synapse](https://github.com/matrix-org/synapse):
5
-
- Efficient: A small memory footprint with better baseline performance than an out-of-the-box Synapse.
6
-
- Reliable: Implements the Matrix specification as written, using the
5
+
6
+
- Efficient: A small memory footprint with better baseline performance than an out-of-the-box Synapse.
7
+
- Reliable: Implements the Matrix specification as written, using the
7
8
[same test suite](https://github.com/matrix-org/sytest) as Synapse as well as
8
9
a [brand new Go test suite](https://github.com/matrix-org/complement).
9
-
- Scalable: can run on multiple machines and eventually scale to massive homeserver deployments.
10
+
- Scalable: can run on multiple machines and eventually scale to massive homeserver deployments.
10
11
11
12
As of October 2020, Dendrite has now entered **beta** which means:
13
+
12
14
- Dendrite is ready for early adopters. We recommend running in Monolith mode with a PostgreSQL database.
13
15
- Dendrite has periodic semver releases. We intend to release new versions as we land significant features.
14
16
- Dendrite supports database schema upgrades between releases. This means you should never lose your messages when upgrading Dendrite.
15
17
- Breaking changes will not occur on minor releases. This means you can safely upgrade Dendrite without modifying your database or config file.
16
18
17
19
This does not mean:
18
-
- Dendrite is bug-free. It has not yet been battle-tested in the real world and so will be error prone initially.
19
-
- All of the CS/Federation APIs are implemented. We are tracking progress via a script called 'Are We Synapse Yet?'. In particular,
20
+
21
+
- Dendrite is bug-free. It has not yet been battle-tested in the real world and so will be error prone initially.
22
+
- All of the CS/Federation APIs are implemented. We are tracking progress via a script called 'Are We Synapse Yet?'. In particular,
20
23
presence and push notifications are entirely missing from Dendrite. See [CHANGES.md](CHANGES.md) for updates.
21
-
- Dendrite is ready for massive homeserver deployments. You cannot shard each microservice, only run each one on a different machine.
24
+
- Dendrite is ready for massive homeserver deployments. You cannot shard each microservice, only run each one on a different machine.
22
25
23
26
Currently, we expect Dendrite to function well for small (10s/100s of users) homeserver deployments as well as P2P Matrix nodes in-browser or on mobile devices.
24
-
In the future, we will be able to scale up to gigantic servers (equivalent to matrix.org) via polylith mode.
27
+
In the future, we will be able to scale up to gigantic servers (equivalent to matrix.org) via polylith mode.
25
28
26
29
If you have further questions, please take a look at [our FAQ](docs/FAQ.md) or join us in:
27
30
@@ -31,14 +34,16 @@ If you have further questions, please take a look at [our FAQ](docs/FAQ.md) or j
31
34
32
35
## Requirements
33
36
34
-
To build Dendrite, you will need Go 1.16 or later.
37
+
To build Dendrite, you will need Go 1.16 or later.
35
38
36
39
For a usable federating Dendrite deployment, you will also need:
37
-
- A domain name (or subdomain)
40
+
41
+
- A domain name (or subdomain)
38
42
- A valid TLS certificate issued by a trusted authority for that domain
39
43
- SRV records or a well-known file pointing to your deployment
40
44
41
45
Also recommended are:
46
+
42
47
- A PostgreSQL database engine, which will perform better than SQLite with many users and/or larger rooms
43
48
- A reverse proxy server, such as nginx, configured [like this sample](https://github.com/matrix-org/dendrite/blob/master/docs/nginx/monolith-sample.conf)
44
49
@@ -76,30 +81,32 @@ Then point your favourite Matrix client at `http://localhost:8008` or `https://l
76
81
77
82
We use a script called Are We Synapse Yet which checks Sytest compliance rates. Sytest is a black-box homeserver
78
83
test rig with around 900 tests. The script works out how many of these tests are passing on Dendrite and it
79
-
updates with CI. As of January 2022 we're at around 65% CS API coverage and 92% Federation coverage, though check
84
+
updates with CI. As of March 2022 we're at around 76% CS API coverage and 95% Federation coverage, though check
80
85
CI for the latest numbers. In practice, this means you can communicate locally and via federation with Synapse
81
86
servers such as matrix.org reasonably well. There's a long list of features that are not implemented, notably:
82
-
- Push
83
-
- Search and Context
84
-
- User Directory
85
-
- Presence
86
-
- Guests
87
+
88
+
- Search
89
+
- User Directory
90
+
- Presence
87
91
88
92
We are prioritising features that will benefit single-user homeservers first (e.g Receipts, E2E) rather
89
93
than features that massive deployments may be interested in (User Directory, OpenID, Guests, Admin APIs, AS API).
0 commit comments