Skip to content

Commit 3d5aac4

Browse files
authored
Merge pull request #220 from raiden-network/release_2020.11.2
Release 2020.11.2
2 parents 1793e3e + 0d0e8f9 commit 3d5aac4

File tree

5 files changed

+27
-12
lines changed

5 files changed

+27
-12
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 = 2020.11.1
2+
current_version = 2020.11.2
33
commit = True
44
tag = True
55
tag_name = {new_version}

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
## Changelog
2+
3+
- 2020-11-25 - `2020.11.2` - **Bugfix Release**
4+
- **Please check UPGRADING.md**
5+
- Really upgrade to Synapse `v1.22.1`.
6+
- Upgrade `raiden-services` to `v0.13.2`
27
- 2020-11-24 - `2020.11.1` - **Maintenance Release**
38
- **Please check UPGRADING.md**
4-
- Upgrade to Synapse `v1.22.1`
9+
- ~~Upgrade to Synapse `v1.22.1`~~
510
- Add configuration for new federation metrics
611
- Increase rate limits
712
- Disable `synapse` `retention_policy`

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
This repository contains the documentation and configuration necessary to run a
66
Raiden Service Bundle.
77

8-
**Current release:** [2020.11.1](https://github.com/raiden-network/raiden-service-bundle/tree/2020.11.1)
8+
**Current release:** [2020.11.2](https://github.com/raiden-network/raiden-service-bundle/tree/2020.11.2)
99

1010
## Table of Contents
1111

@@ -145,11 +145,11 @@ host an application that relies on either Cookies or LocalStorage for security r
145145

146146
### Installing the RSB
147147

148-
1. Clone the [current release version of this repository](https://github.com/raiden-network/raiden-service-bundle/tree/2020.11.1)
148+
1. Clone the [current release version of this repository](https://github.com/raiden-network/raiden-service-bundle/tree/2020.11.2)
149149
to a suitable location on the server:
150150

151151
```shell
152-
git clone -b 2020.11.1 https://github.com/raiden-network/raiden-service-bundle.git
152+
git clone -b 2020.11.2 https://github.com/raiden-network/raiden-service-bundle.git
153153
```
154154
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.
155155
- We would appreciate it if you allow us access to the monitoring interfaces

UPGRADING.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
# Upgrading existing installations
2+
## From `2020.11.1` or earlier
3+
4+
The previous release mistakenly did not upgrade Synapse, so please make sure to reset the database with this upgrade:
5+
6+
This can be done by stopping the entire RSB:
7+
8+
docker-compose stop
9+
10+
And then removing the postgres data directory (`<DATA_DIR>/db`).
11+
212
## From `2020.10.3` or earlier
313

414
Due to the jump in Synapse version we recommend to wipe the Synapse

docker-compose.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@ version: '2.3'
33
# versions: change these in order to pin versions for a certain releases
44
x-versions:
55
services: &IMAGE_RAIDEN_SERVICES_VERSION
6-
image: raidennetwork/raiden-services:v0.13.1
6+
image: raidennetwork/raiden-services:v0.13.2
77
db: &IMAGE_DB_VERSION
8-
image: raidennetwork/raiden-service-bundle:2020.11.1-db
8+
image: raidennetwork/raiden-service-bundle:2020.11.2-db
99
synapse: &IMAGE_SYNAPSE_VERSION
10-
image: raidennetwork/raiden-service-bundle:2020.11.1-synapse
10+
image: raidennetwork/raiden-service-bundle:2020.11.2-synapse
1111
well-known-server: &IMAGE_WELL_KNOWN_VERSION
12-
image: raidennetwork/raiden-service-bundle:2020.11.1-well_known_server
12+
image: raidennetwork/raiden-service-bundle:2020.11.2-well_known_server
1313
room_ensurer: &IMAGE_ROOM_ENSURER_VERSION
14-
image: raidennetwork/raiden-service-bundle:2020.11.1-room_ensurer
14+
image: raidennetwork/raiden-service-bundle:2020.11.2-room_ensurer
1515
purger: &IMAGE_PURGER_VERSION
16-
image: raidennetwork/raiden-service-bundle:2020.11.1-purger
16+
image: raidennetwork/raiden-service-bundle:2020.11.2-purger
1717
state_groups_cleaner: &IMAGE_STATE_GROUPS_CLEANER
18-
image: raidennetwork/raiden-service-bundle:2020.11.1-state_groups_cleaner
18+
image: raidennetwork/raiden-service-bundle:2020.11.2-state_groups_cleaner
1919
redis: &IMAGE_REDIS_VERSION
2020
image: redis:6.0
2121
metrics_db: &IMAGE_METRICS_DB_VERSION

0 commit comments

Comments
 (0)