Skip to content
This repository was archived by the owner on Nov 25, 2024. It is now read-only.

Commit 14a6c10

Browse files
authored
Version 0.13.7 (#3349)
1 parent 5c0ceec commit 14a6c10

File tree

6 files changed

+154
-153
lines changed

6 files changed

+154
-153
lines changed

CHANGES.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

3+
## Dendrite 0.13.7 (2024-04-09)
4+
5+
### Fixes
6+
7+
- Fixed an issue where the displayname/avatar of an invited user was replaced with the inviter's details
8+
- Improved server startup performance by avoiding unnecessary room ACL queries
9+
- This change reduces memory footprint as it caches ACL regex patterns once instead of for each room
10+
- Unnecessary Relay related queries have been removed. **Note**: To use relays, you now need to explicitly enable them using the `federation_api.enable_relays` config
11+
- Fixed space summaries over federation
12+
- Improved usage of external NATS JetStream by reusing existing connections instead of opening new ones unnecessarily
13+
14+
### Features
15+
16+
- Modernized Appservices (contributed by [tulir](https://github.com/tulir))
17+
- Added event reporting with Synapse Admin endpoints for querying them
18+
- Updated dependencies
19+
320
## Dendrite 0.13.6 (2024-01-26)
421

522
Upgrading to this version is **highly** recommended, as it contains several QoL improvements.

go.mod

Lines changed: 43 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ require (
66
github.com/DATA-DOG/go-sqlmock v1.5.0
77
github.com/MFAshby/stdemuxerhook v1.0.0
88
github.com/Masterminds/semver/v3 v3.1.1
9-
github.com/blevesearch/bleve/v2 v2.3.8
9+
github.com/blevesearch/bleve/v2 v2.4.0
1010
github.com/codeclysm/extract v2.2.0+incompatible
1111
github.com/dgraph-io/ristretto v0.1.1
1212
github.com/docker/docker v24.0.9+incompatible
1313
github.com/docker/go-connections v0.4.0
1414
github.com/getsentry/sentry-go v0.14.0
1515
github.com/gologme/log v1.3.0
16-
github.com/google/go-cmp v0.5.9
16+
github.com/google/go-cmp v0.6.0
1717
github.com/google/uuid v1.3.0
1818
github.com/gorilla/mux v1.8.0
1919
github.com/gorilla/websocket v1.5.0
@@ -22,37 +22,37 @@ require (
2222
github.com/matrix-org/dugong v0.0.0-20210921133753-66e6b1c67e2e
2323
github.com/matrix-org/go-sqlite3-js v0.0.0-20220419092513-28aa791a1c91
2424
github.com/matrix-org/gomatrix v0.0.0-20220926102614-ceba4d9f7530
25-
github.com/matrix-org/gomatrixserverlib v0.0.0-20240326183347-e8077abf519a
25+
github.com/matrix-org/gomatrixserverlib v0.0.0-20240328203753-c2391f7113a5
2626
github.com/matrix-org/pinecone v0.11.1-0.20230810010612-ea4c33717fd7
2727
github.com/matrix-org/util v0.0.0-20221111132719-399730281e66
28-
github.com/mattn/go-sqlite3 v1.14.17
28+
github.com/mattn/go-sqlite3 v1.14.22
2929
github.com/nats-io/nats-server/v2 v2.10.7
3030
github.com/nats-io/nats.go v1.31.0
3131
github.com/neilalexander/utp v0.1.1-0.20210727203401-54ae7b1cd5f9
3232
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646
3333
github.com/opentracing/opentracing-go v1.2.0
3434
github.com/patrickmn/go-cache v2.1.0+incompatible
3535
github.com/pkg/errors v0.9.1
36-
github.com/prometheus/client_golang v1.16.0
36+
github.com/prometheus/client_golang v1.19.0
3737
github.com/sirupsen/logrus v1.9.3
38-
github.com/stretchr/testify v1.8.2
39-
github.com/tidwall/gjson v1.17.0
38+
github.com/stretchr/testify v1.9.0
39+
github.com/tidwall/gjson v1.17.1
4040
github.com/tidwall/sjson v1.2.5
4141
github.com/uber/jaeger-client-go v2.30.0+incompatible
4242
github.com/uber/jaeger-lib v2.4.1+incompatible
4343
github.com/yggdrasil-network/yggdrasil-go v0.4.6
44-
go.uber.org/atomic v1.10.0
45-
golang.org/x/crypto v0.17.0
46-
golang.org/x/exp v0.0.0-20230809150735-7b3493d9a819
44+
go.uber.org/atomic v1.11.0
45+
golang.org/x/crypto v0.22.0
46+
golang.org/x/exp v0.0.0-20231108232855-2478ac86f678
4747
golang.org/x/image v0.10.0
4848
golang.org/x/mobile v0.0.0-20221020085226-b36e6246172e
49-
golang.org/x/sync v0.3.0
50-
golang.org/x/term v0.15.0
49+
golang.org/x/sync v0.7.0
50+
golang.org/x/term v0.19.0
5151
gopkg.in/h2non/bimg.v1 v1.1.9
5252
gopkg.in/yaml.v2 v2.4.0
5353
gotest.tools/v3 v3.4.0
5454
maunium.net/go/mautrix v0.15.1
55-
modernc.org/sqlite v1.23.1
55+
modernc.org/sqlite v1.29.5
5656
nhooyr.io/websocket v1.8.7
5757
)
5858

@@ -62,21 +62,23 @@ require (
6262
github.com/RoaringBitmap/roaring v1.2.3 // indirect
6363
github.com/beorn7/perks v1.0.1 // indirect
6464
github.com/bits-and-blooms/bitset v1.5.0 // indirect
65-
github.com/blevesearch/bleve_index_api v1.0.5 // indirect
66-
github.com/blevesearch/geo v0.1.17 // indirect
65+
github.com/blevesearch/bleve_index_api v1.1.6 // indirect
66+
github.com/blevesearch/geo v0.1.20 // indirect
67+
github.com/blevesearch/go-faiss v1.0.13 // indirect
6768
github.com/blevesearch/go-porterstemmer v1.0.3 // indirect
6869
github.com/blevesearch/gtreap v0.1.1 // indirect
6970
github.com/blevesearch/mmap-go v1.0.4 // indirect
70-
github.com/blevesearch/scorch_segment_api/v2 v2.1.4 // indirect
71+
github.com/blevesearch/scorch_segment_api/v2 v2.2.9 // indirect
7172
github.com/blevesearch/segment v0.9.1 // indirect
7273
github.com/blevesearch/snowballstem v0.9.0 // indirect
7374
github.com/blevesearch/upsidedown_store_api v1.0.2 // indirect
74-
github.com/blevesearch/vellum v1.0.9 // indirect
75-
github.com/blevesearch/zapx/v11 v11.3.7 // indirect
76-
github.com/blevesearch/zapx/v12 v12.3.7 // indirect
77-
github.com/blevesearch/zapx/v13 v13.3.7 // indirect
78-
github.com/blevesearch/zapx/v14 v14.3.7 // indirect
79-
github.com/blevesearch/zapx/v15 v15.3.10 // indirect
75+
github.com/blevesearch/vellum v1.0.10 // indirect
76+
github.com/blevesearch/zapx/v11 v11.3.10 // indirect
77+
github.com/blevesearch/zapx/v12 v12.3.10 // indirect
78+
github.com/blevesearch/zapx/v13 v13.3.10 // indirect
79+
github.com/blevesearch/zapx/v14 v14.3.10 // indirect
80+
github.com/blevesearch/zapx/v15 v15.3.13 // indirect
81+
github.com/blevesearch/zapx/v16 v16.0.12 // indirect
8082
github.com/cespare/xxhash/v2 v2.2.0 // indirect
8183
github.com/davecgh/go-spew v1.1.1 // indirect
8284
github.com/docker/distribution v2.8.2+incompatible // indirect
@@ -91,56 +93,52 @@ require (
9193
github.com/golang/snappy v0.0.4 // indirect
9294
github.com/google/pprof v0.0.0-20230808223545-4887780b67fb // indirect
9395
github.com/h2non/filetype v1.1.3 // indirect
96+
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
9497
github.com/json-iterator/go v1.1.12 // indirect
9598
github.com/juju/errors v1.0.0 // indirect
96-
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
97-
github.com/klauspost/compress v1.17.4 // indirect
99+
github.com/klauspost/compress v1.17.7 // indirect
98100
github.com/mattn/go-colorable v0.1.13 // indirect
99101
github.com/mattn/go-isatty v0.0.17 // indirect
100-
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
101102
github.com/minio/highwayhash v1.0.2 // indirect
102103
github.com/moby/term v0.0.0-20220808134915-39b0c02b01ae // indirect
103104
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
104105
github.com/modern-go/reflect2 v1.0.2 // indirect
105106
github.com/morikuni/aec v1.0.0 // indirect
106107
github.com/mschoch/smat v0.2.0 // indirect
107-
github.com/nats-io/jwt/v2 v2.5.3 // indirect
108-
github.com/nats-io/nkeys v0.4.6 // indirect
108+
github.com/nats-io/jwt/v2 v2.5.5 // indirect
109+
github.com/nats-io/nkeys v0.4.7 // indirect
109110
github.com/nats-io/nuid v1.0.1 // indirect
111+
github.com/ncruces/go-strftime v0.1.9 // indirect
110112
github.com/onsi/ginkgo/v2 v2.11.0 // indirect
111113
github.com/opencontainers/go-digest v1.0.0 // indirect
112114
github.com/opencontainers/image-spec v1.0.3-0.20211202183452-c5a74bcca799 // indirect
113115
github.com/pmezard/go-difflib v1.0.0 // indirect
114-
github.com/prometheus/client_model v0.3.0 // indirect
115-
github.com/prometheus/common v0.42.0 // indirect
116-
github.com/prometheus/procfs v0.10.1 // indirect
116+
github.com/prometheus/client_model v0.5.0 // indirect
117+
github.com/prometheus/common v0.48.0 // indirect
118+
github.com/prometheus/procfs v0.12.0 // indirect
117119
github.com/quic-go/qtls-go1-20 v0.3.2 // indirect
118120
github.com/quic-go/quic-go v0.37.7 // indirect
119121
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
120-
github.com/rogpeppe/go-internal v1.9.0 // indirect
121122
github.com/rs/zerolog v1.29.1 // indirect
122123
github.com/tidwall/match v1.1.1 // indirect
123124
github.com/tidwall/pretty v1.2.1 // indirect
124-
go.etcd.io/bbolt v1.3.6 // indirect
125-
golang.org/x/mod v0.12.0 // indirect
126-
golang.org/x/net v0.17.0 // indirect
127-
golang.org/x/sys v0.15.0 // indirect
125+
go.etcd.io/bbolt v1.3.7 // indirect
126+
golang.org/x/mod v0.14.0 // indirect
127+
golang.org/x/net v0.21.0 // indirect
128+
golang.org/x/sys v0.19.0 // indirect
128129
golang.org/x/text v0.14.0 // indirect
129130
golang.org/x/time v0.5.0 // indirect
130-
golang.org/x/tools v0.12.0 // indirect
131+
golang.org/x/tools v0.17.0 // indirect
131132
google.golang.org/protobuf v1.33.0 // indirect
132133
gopkg.in/macaroon.v2 v2.1.0 // indirect
133134
gopkg.in/yaml.v3 v3.0.1 // indirect
134-
lukechampine.com/uint128 v1.2.0 // indirect
135135
maunium.net/go/maulogger/v2 v2.4.1 // indirect
136-
modernc.org/cc/v3 v3.40.0 // indirect
137-
modernc.org/ccgo/v3 v3.16.13 // indirect
138-
modernc.org/libc v1.22.5 // indirect
139-
modernc.org/mathutil v1.5.0 // indirect
140-
modernc.org/memory v1.5.0 // indirect
141-
modernc.org/opt v0.1.3 // indirect
142-
modernc.org/strutil v1.1.3 // indirect
143-
modernc.org/token v1.0.1 // indirect
136+
modernc.org/gc/v3 v3.0.0-20240107210532-573471604cb6 // indirect
137+
modernc.org/libc v1.41.0 // indirect
138+
modernc.org/mathutil v1.6.0 // indirect
139+
modernc.org/memory v1.7.2 // indirect
140+
modernc.org/strutil v1.2.0 // indirect
141+
modernc.org/token v1.1.0 // indirect
144142
)
145143

146144
go 1.20

0 commit comments

Comments
 (0)