mirror of
https://github.com/matrix-org/dendrite
synced 2024-10-31 21:19:04 +01:00
dacee648f7
* Update gomatrixserverlib * Default to room version 4 * Update gomatrixserverlib * Limit prev_events and auth_events * Fix auth_events, prev_events * Fix linter issues * Update gomatrixserverlib * Fix getState * Update sytest-whitelist * Squashed commit of the following: commit067b875063
Author: Neil Alexander <neilalexander@users.noreply.github.com> Date: Fri Apr 3 14:29:06 2020 +0100 Invites v2 endpoint (#952) * Start converting v1 invite endpoint to v2 * Update gomatrixserverlib * Early federationsender code for sending invites * Sending invites sorta happens now * Populate invite request with stripped state * Remodel a bit, don't reflect received invites * Handle invite_room_state * Handle room versions a bit better * Update gomatrixserverlib * Tweak order in destinationQueue.next * Revert check in processMessage * Tweak federation sender destination queue code a bit * Add comments commit955244c092
Author: Ben B <benne@klimlive.de> Date: Fri Apr 3 12:40:50 2020 +0200 use custom http client instead of the http DefaultClient (#823) This commit replaces the default client from the http lib with a custom one. The previously used default client doesn't come with a timeout. This could cause unwanted locks. That solution chosen here creates a http client in the base component dendrite with a constant timeout of 30 seconds. If it should be necessary to overwrite this, we could include the timeout in the dendrite configuration. Here it would be a good idea to extend the type "Address" by a timeout and create an http client for each service. Closes #820 Signed-off-by: Benedikt Bongartz <benne@klimlive.de> Co-authored-by: Kegsay <kegan@matrix.org> * Update sytest-whitelist, sytest-blacklist * Update go.mod/go.sum * Add some error wrapping for debug * Add a NOTSPEC to common/events.go * Perform state resolution at send_join * Set default room version to v2 again * Tweak GetCapabilities * Add comments to ResolveConflictsAdhoc * Update sytest-blacklist * go mod tidy * Update sytest-whitelist, sytest-blacklist * Update versions * Updates from review comments * Update sytest-blacklist, sytest-whitelist * Check room versions compatible at make_join, add some comments, update gomatrixserverlib, other tweaks * Set default room version back to v2 * Update gomatrixserverlib, sytest-whitelist
34 lines
1.4 KiB
Modula-2
34 lines
1.4 KiB
Modula-2
module github.com/matrix-org/dendrite
|
|
|
|
require (
|
|
github.com/gorilla/mux v1.7.3
|
|
github.com/hashicorp/golang-lru v0.5.4
|
|
github.com/lib/pq v1.2.0
|
|
github.com/libp2p/go-libp2p-core v0.5.0
|
|
github.com/matrix-org/dugong v0.0.0-20171220115018-ea0a4690a0d5
|
|
github.com/matrix-org/go-http-js-libp2p v0.0.0-20200318135427-31631a9ef51f
|
|
github.com/matrix-org/go-sqlite3-js v0.0.0-20200325174927-327088cdef10
|
|
github.com/matrix-org/gomatrix v0.0.0-20190528120928-7df988a63f26
|
|
github.com/matrix-org/gomatrixserverlib v0.0.0-20200409140603-8b9a51fe9b89
|
|
github.com/matrix-org/naffka v0.0.0-20200127221512-0716baaabaf1
|
|
github.com/matrix-org/util v0.0.0-20190711121626-527ce5ddefc7
|
|
github.com/mattn/go-sqlite3 v2.0.2+incompatible
|
|
github.com/nfnt/resize v0.0.0-20160724205520-891127d8d1b5
|
|
github.com/opentracing/opentracing-go v1.1.0
|
|
github.com/pkg/errors v0.8.1
|
|
github.com/prometheus/client_golang v1.4.1
|
|
github.com/rcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0 // indirect
|
|
github.com/sirupsen/logrus v1.4.2
|
|
github.com/tidwall/gjson v1.6.0 // indirect
|
|
github.com/tidwall/pretty v1.0.1 // indirect
|
|
github.com/uber/jaeger-client-go v2.22.1+incompatible
|
|
github.com/uber/jaeger-lib v2.2.0+incompatible
|
|
go.uber.org/atomic v1.6.0
|
|
golang.org/x/crypto v0.0.0-20200115085410-6d4e4cb37c7d
|
|
golang.org/x/tools v0.0.0-20200402223321-bcf690261a44 // indirect
|
|
gopkg.in/Shopify/sarama.v1 v1.20.1
|
|
gopkg.in/h2non/bimg.v1 v1.0.18
|
|
gopkg.in/yaml.v2 v2.2.5
|
|
)
|
|
|
|
go 1.13
|