Skip to content

Commit

Permalink
Merge pull request #215 from raiden-network/release_2020.11.1
Browse files Browse the repository at this point in the history
Prepare 2020.11.1 release
  • Loading branch information
konradkonrad authored Nov 24, 2020
2 parents 4c7e75b + 14bc454 commit 279db55
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2020.11.1rc1
current_version = 2020.11.1
commit = True
tag = True
tag_name = {new_version}
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down
11 changes: 11 additions & 0 deletions UPGRADING.md
Original file line number Diff line number Diff line change
@@ -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 (`<DATA_DIR>/db`).


## From `2020.06.0`

Expand Down
2 changes: 2 additions & 0 deletions config/synapse/synapse.template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,8 @@ trusted_third_party_id_servers:
## Metrics ###
enable_metrics: True
report_stats: True
federation_metrics_domains:
${KNOWN_SERVERS}


## API Configuration ##
Expand Down
12 changes: 6 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 279db55

Please sign in to comment.