up openmaptiles version (7.0 has been running on adfc-hessen for ages), add changelog.
This commit is contained in:
parent
4a87489b3f
commit
1a1232f2a7
23
CHANGELOG.md
23
CHANGELOG.md
|
@ -1,5 +1,28 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 0.8.0
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* Bulk actions on users owned tracks (reprocess, download, make private, make public, delete) (#269, #38)
|
||||||
|
* Easy sorting by device for "multi-device users" (e.g. group lending out OBSes)
|
||||||
|
* Region display at higher zoom levels to easily find interesting areas (#112)
|
||||||
|
* Export of road statistics on top of the already-existing event statistics (#341)
|
||||||
|
|
||||||
|
### Improvements
|
||||||
|
|
||||||
|
* Refactored database access to hopefully combat portal crashes (#337)
|
||||||
|
* New infrastructure for map imports that makes import of larger maps possible on small VMs (#334)
|
||||||
|
* Reference current postgres and postgis versions in docker-compose.yaml files (#286)
|
||||||
|
* Configurable terms-and-conditions link (#320)
|
||||||
|
* French translation by @cbiteau (#303)
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* Logout not working (#285)
|
||||||
|
* Duplicate road usage hashes (#335, #253)
|
||||||
|
* cannot import name .... (#338)
|
||||||
|
|
||||||
## 0.7.0
|
## 0.7.0
|
||||||
|
|
||||||
### Features
|
### Features
|
||||||
|
|
|
@ -14,7 +14,7 @@ services:
|
||||||
############################################################
|
############################################################
|
||||||
|
|
||||||
postgres:
|
postgres:
|
||||||
image: "openmaptiles/postgis:6.0"
|
image: "openmaptiles/postgis:7.0"
|
||||||
environment:
|
environment:
|
||||||
- POSTGRES_DB=${OBS_POSTGRES_DB}
|
- POSTGRES_DB=${OBS_POSTGRES_DB}
|
||||||
- POSTGRES_USER=${OBS_POSTGRES_USER}
|
- POSTGRES_USER=${OBS_POSTGRES_USER}
|
||||||
|
@ -136,7 +136,7 @@ services:
|
||||||
- "traefik.docker.network=gateway"
|
- "traefik.docker.network=gateway"
|
||||||
|
|
||||||
postgres-keycloak:
|
postgres-keycloak:
|
||||||
image: postgres:13.3
|
image: postgres:15
|
||||||
restart: always
|
restart: always
|
||||||
networks:
|
networks:
|
||||||
- backend
|
- backend
|
||||||
|
|
|
@ -8,7 +8,7 @@ version: '3'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
postgres:
|
postgres:
|
||||||
image: "openmaptiles/postgis:6.0"
|
image: "openmaptiles/postgis:7.0"
|
||||||
environment:
|
environment:
|
||||||
POSTGRES_USER: obs
|
POSTGRES_USER: obs
|
||||||
POSTGRES_PASSWORD: obs
|
POSTGRES_PASSWORD: obs
|
||||||
|
|
Loading…
Reference in a new issue