Skip to content

Commit be91f1d

Browse files
authored
Merge pull request #276 from ulope/release/2021.05.rc2
Release 2021.05.rc2
2 parents 7338036 + a88de89 commit be91f1d

File tree

4 files changed

+9
-15
lines changed

4 files changed

+9
-15
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2021.05.0rc1
2+
current_version = 2021.05.0rc2
33
commit = True
44
tag = True
55
tag_name = {new_version}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,11 +151,11 @@ can identify this, if there is an `rcX` at the end of the version (E.g. `2019.03
151151
[latest full release](https://github.com/raiden-network/raiden-service-bundle/releases/latest). If the version is
152152
different from what you see below, you should stick to the "full release" and replace the version accordingly.
153153

154-
1. Clone the [current release version of this repository](https://github.com/raiden-network/raiden-service-bundle/tree/2021.05.0rc1)
154+
1. Clone the [current release version of this repository](https://github.com/raiden-network/raiden-service-bundle/tree/2021.05.0rc2)
155155
to a suitable location on the server:
156156

157157
```shell
158-
git clone -b 2021.05.0rc1 https://github.com/raiden-network/raiden-service-bundle.git
158+
git clone -b 2021.05.0rc2 https://github.com/raiden-network/raiden-service-bundle.git
159159
```
160160
1. Copy `.env.template` to `.env` and modify the values to fit your setup. Please read [Configuring the `.env` file](#configuring-the-env-file) for detailed information.
161161
- We would appreciate it if you allow us access to the monitoring interfaces

config/synapse/synapse.template.yaml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -139,12 +139,6 @@ federation_metrics_domains:
139139
${KNOWN_SERVERS}
140140

141141

142-
## API Configuration ##
143-
room_invite_state_types:
144-
- "m.room.join_rules"
145-
- "m.room.canonical_alias"
146-
- "m.room.name"
147-
148142
## Room Creation Rules ##
149143
alias_creation_rules:
150144
- user_id: "*"

docker-compose.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ x-versions:
55
services: &IMAGE_RAIDEN_SERVICES_VERSION
66
image: raidennetwork/raiden-services:v0.15.1
77
db: &IMAGE_DB_VERSION
8-
image: raidennetwork/raiden-service-bundle:2021.05.0rc1-db
8+
image: raidennetwork/raiden-service-bundle:2021.05.0rc2-db
99
synapse: &IMAGE_SYNAPSE_VERSION
10-
image: raidennetwork/raiden-service-bundle:2021.05.0rc1-synapse
10+
image: raidennetwork/raiden-service-bundle:2021.05.0rc2-synapse
1111
well-known-server: &IMAGE_WELL_KNOWN_VERSION
12-
image: raidennetwork/raiden-service-bundle:2021.05.0rc1-well_known_server
12+
image: raidennetwork/raiden-service-bundle:2021.05.0rc2-well_known_server
1313
redis: &IMAGE_REDIS_VERSION
1414
image: redis:6.0
1515
metrics_db: &IMAGE_METRICS_DB_VERSION
@@ -21,7 +21,7 @@ x-versions:
2121
node_exporter: &IMAGE_NODE_EXPORTER
2222
image: quay.io/prometheus/node-exporter:v1.0.1
2323
compress_state: &IMAGE_COMPRESS_STATE
24-
image: raidennetwork/raiden-service-bundle:2021.05.0rc1-rust_synapse_compress_state
24+
image: raidennetwork/raiden-service-bundle:2021.05.0rc2-rust_synapse_compress_state
2525
# /versions
2626

2727
x-defaults: &services-defaults
@@ -148,11 +148,11 @@ services:
148148
- "traefik.http.routers.synapse.rule=Host(`transport.${SERVER_NAME}`)"
149149
- "traefik.http.routers.synapse.tls=true"
150150
- "traefik.http.routers.synapse.tls.certresolver=le"
151-
- "traefik.http.routers.synapse.middlewares=tls-headers-middleware"
151+
- "traefik.http.routers.synapse.middlewares=tls-headers-middleware@docker"
152152
- "traefik.http.routers.synapse.service=synapse"
153153
- "traefik.http.services.synapse.loadbalancer.server.port=8008"
154154
- "traefik.http.services.synapse.loadbalancer.healthcheck.path=/_matrix/client/versions"
155-
- "traefik.http.middlewares.tls-headers-middleware.headers.sslProxyHeaders=true"
155+
- "traefik.http.middlewares.tls-headers-middleware.headers.customrequestheaders.X-Forwarded-Proto=https"
156156
- "traefik.http.routers.metrics.rule=Host(`metrics.transport.${SERVER_NAME}`)"
157157
- "traefik.http.routers.metrics.tls=true"
158158
- "traefik.http.routers.metrics.tls.certresolver=le"

0 commit comments

Comments
 (0)