diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 7088651..2c56eaf 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2020.11.1rc1 +current_version = 2020.11.1 commit = True tag = True tag_name = {new_version} diff --git a/CHANGELOG.md b/CHANGELOG.md index f2b580a..adf156b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## Changelog -- 2020-11-11 - `2020.11.1rc1` - **Release Candidate** +- 2020-11-24 - `2020.11.1` - **Maintenance Release** + - **Please check UPGRADING.md** + - Upgrade to Synapse `v1.22.1` + - Add configuration for new federation metrics + - Increase rate limits - Disable `synapse` `retention_policy` - Introduce `state_groups_cleaner` - Introduce `prometheus` `node_exporter` diff --git a/README.md b/README.md index cc72a8a..8300623 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ This repository contains the documentation and configuration necessary to run a Raiden Service Bundle. -**Current release:** [2020.11.1rc1](https://github.com/raiden-network/raiden-service-bundle/tree/2020.11.1rc1) +**Current release:** [2020.11.1](https://github.com/raiden-network/raiden-service-bundle/tree/2020.11.1) ## Table of Contents @@ -145,11 +145,11 @@ host an application that relies on either Cookies or LocalStorage for security r ### Installing the RSB -1. Clone the [current release version of this repository](https://github.com/raiden-network/raiden-service-bundle/tree/2020.11.1rc1) +1. Clone the [current release version of this repository](https://github.com/raiden-network/raiden-service-bundle/tree/2020.11.1) to a suitable location on the server: ```shell - git clone -b 2020.11.1rc1 https://github.com/raiden-network/raiden-service-bundle.git + git clone -b 2020.11.1 https://github.com/raiden-network/raiden-service-bundle.git ``` 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. - We would appreciate it if you allow us access to the monitoring interfaces diff --git a/UPGRADING.md b/UPGRADING.md index aa0b031..d01ca17 100644 --- a/UPGRADING.md +++ b/UPGRADING.md @@ -1,4 +1,15 @@ # Upgrading existing installations +## From `2020.10.3` or earlier + +Due to the jump in Synapse version we recommend to wipe the Synapse +database when upgrading. + +This can be done by stopping the entire RSB: + + docker-compose stop + +And then removing the postgres data directory (`/db`). + ## From `2020.06.0` diff --git a/config/synapse/synapse.template.yaml b/config/synapse/synapse.template.yaml index 338420e..da5a241 100644 --- a/config/synapse/synapse.template.yaml +++ b/config/synapse/synapse.template.yaml @@ -127,6 +127,8 @@ trusted_third_party_id_servers: ## Metrics ### enable_metrics: True report_stats: True +federation_metrics_domains: +${KNOWN_SERVERS} ## API Configuration ## diff --git a/docker-compose.yml b/docker-compose.yml index 5464458..a0236cd 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -5,17 +5,17 @@ x-versions: services: &IMAGE_RAIDEN_SERVICES_VERSION image: raidennetwork/raiden-services:v0.13.1 db: &IMAGE_DB_VERSION - image: raidennetwork/raiden-service-bundle:2020.11.1rc1-db + image: raidennetwork/raiden-service-bundle:2020.11.1-db synapse: &IMAGE_SYNAPSE_VERSION - image: raidennetwork/raiden-service-bundle:2020.11.1rc1-synapse + image: raidennetwork/raiden-service-bundle:2020.11.1-synapse well-known-server: &IMAGE_WELL_KNOWN_VERSION - image: raidennetwork/raiden-service-bundle:2020.11.1rc1-well_known_server + image: raidennetwork/raiden-service-bundle:2020.11.1-well_known_server room_ensurer: &IMAGE_ROOM_ENSURER_VERSION - image: raidennetwork/raiden-service-bundle:2020.11.1rc1-room_ensurer + image: raidennetwork/raiden-service-bundle:2020.11.1-room_ensurer purger: &IMAGE_PURGER_VERSION - image: raidennetwork/raiden-service-bundle:2020.11.1rc1-purger + image: raidennetwork/raiden-service-bundle:2020.11.1-purger state_groups_cleaner: &IMAGE_STATE_GROUPS_CLEANER - image: raidennetwork/raiden-service-bundle:2020.11.1rc1-state_groups_cleaner + image: raidennetwork/raiden-service-bundle:2020.11.1-state_groups_cleaner redis: &IMAGE_REDIS_VERSION image: redis:6.0 metrics_db: &IMAGE_METRICS_DB_VERSION