From cf3b138151fd52b94cb2668ae34f9037a4d7be9c Mon Sep 17 00:00:00 2001 From: Ernesto Ruge Date: Thu, 17 Oct 2024 13:27:04 +0200 Subject: [PATCH] version 0.15.0 --- CHANGELOG.md | 16 ++++++++++++++++ requirements.txt | 6 +++--- webapp/models/parking_site.py | 2 +- 3 files changed, 20 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 788b1a8..1705dee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## 0.15.0 + +Release 2024-10-17 + +### Features + +* [ParkAPI Sources: Add Kienzler VVS Converter](https://github.com/ParkenDD/parkapi-sources-v3/pull/147) + + +### Fixes + +* [ParkAPI Sources: Update pbw data for static parking sites](https://github.com/ParkenDD/parkapi-sources-v3/pull/144) +* [ParkAPI Sources: Update kienzler data for static parking sites](https://github.com/ParkenDD/parkapi-sources-v3/pull/145) +* [ParkAPI Sources: Fix bfrk_bw_car attribute after source change](https://github.com/ParkenDD/parkapi-sources-v3/pull/149) + + ## 0.14.3 Release 2024-09-24 diff --git a/requirements.txt b/requirements.txt index 61697ee..61a170f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,13 +2,13 @@ Flask~=3.0.3 Flask-Failsafe~=0.2 Flask-Migrate~=4.0.7 Flask-SQLAlchemy~=3.1.1 -SQLAlchemy~=2.0.34 +SQLAlchemy~=2.0.35 SQLAlchemy-Utc~=0.14.0 pytz~=2024.2 psycopg2-binary~=2.9.9 pymysql~=1.1.1 requests~=2.32.3 -alembic~=1.13.2 +alembic~=1.13.3 gunicorn~=23.0.0 pyyaml~=6.0.2 celery~=5.4.0 @@ -20,7 +20,7 @@ openpyxl~=3.1.5 opening-hours-py~=0.6.18 kombu~=5.4.1 lxml~=5.3.0 -parkapi-sources~=0.13.3 +parkapi-sources~=0.14.0 # required for converters beautifulsoup4~=4.12.3 diff --git a/webapp/models/parking_site.py b/webapp/models/parking_site.py index 58bac61..f154009 100644 --- a/webapp/models/parking_site.py +++ b/webapp/models/parking_site.py @@ -66,7 +66,7 @@ class ParkingSite(BaseModel): back_populates='parking_site', cascade='all, delete, delete-orphan', ) - parking_site_group: Mapped[list['ParkingSiteGroup']] = relationship( + parking_site_group: Mapped['ParkingSiteGroup'] = relationship( 'ParkingSiteGroup', back_populates='parking_sites', )