diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e316c1..ab435d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # Changelog +## 0.7.0 + +### Features + +* Add histogram of overtaking distances in road details panel +* Flip table in road details panel and make it easier to read +* Implement difference between urban and rural for events and road segments. +* Better road zone detection in import +* Make the frontend translatable and add German translation +* Add time and user filters to map view (for logged-in users only) + +### Improvements + +* Make raw track not look like a river (#252) +* Update many dependencies + +### Bug fixes + +* Overtaking events are now deleted when the parent track is deleted (#206) +* Remove useless session creation (#192) +* Remove some error logs for canceled requests (as the map page tends to do that quite a lot) +* Fix ExportPage bounding box input + + ## 0.6.2 ### Improvements diff --git a/UPGRADING.md b/UPGRADING.md index 03383a0..8189613 100644 --- a/UPGRADING.md +++ b/UPGRADING.md @@ -5,6 +5,20 @@ Simple migrations, e.g. for adding schema changes, are not documented explicitly. Their general usage is described in the [README](./README.md) (for development) and [deployment/README.md](deployment/README.md) (for production). +## 0.7.0 + +Upgrade to `0.6.x` first. See below for details. Then follow these steps: + +- Rebuild images +- Stop your portal and worker services. +- **Migration with alembic**: required +- **Prepare SQL Tiles**: required +- Start your portal and worker services. +- **Reimport tracks**: no action required +- **OSM Import**: required +- **Config changes**: add `POSTGRES_MAX_OVERFLOW` and `POSTGRES_POOL_SIZE` + variables, see `api/config.py.example` + ## 0.6.0 **Make sure to upgrade to `0.5.1` first, by checking out that version tag and