From 1cf8fbb91dbda00daf921f1cc3875dd3c11c508b Mon Sep 17 00:00:00 2001 From: elpatron Date: Fri, 21 Mar 2025 12:56:48 +0100 Subject: [PATCH] Version 1.2.17: Optimierte Datenbankverbindungen und verbesserte Indizes --- CHANGELOG.md | 6 ++++++ app.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ef0d43..3cd3187 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,12 @@ und dieses Projekt adhäriert zu [Semantic Versioning](https://semver.org/lang/d - Export-Button in der Benutzeroberfläche - Automatische Formatierung der CSV-Datei mit allen relevanten Kundendaten +## [1.2.17] - 2024-03-19 +### Geändert +- Optimierte Datenbankverbindungen für bessere Thread-Sicherheit +- Verbesserte Datenbankindizes für schnellere Suchen +- Verbesserte Fehlerbehandlung bei Datenbankoperationen + ## [1.2.16] - 2024-03-21 ### Geändert - Verbesserte Suchfunktion: Highlighting für allgemeine Suche in allen Feldern diff --git a/app.py b/app.py index c842394..dc0ff74 100644 --- a/app.py +++ b/app.py @@ -14,7 +14,7 @@ import threading app = Flask(__name__, static_folder='static') app.config['SECRET_KEY'] = os.environ.get('SECRET_KEY', 'dev') app.config['ALLOWED_IP_RANGES'] = os.getenv('ALLOWED_IP_RANGES', '192.168.0.0/16,10.0.0.0/8').split(',') -app.config['VERSION'] = '1.2.16' +app.config['VERSION'] = '1.2.17' app.config['DATABASE'] = 'data/customers.db' app.config['DATABASE_TIMEOUT'] = 20 app.config['DATABASE_POOL_SIZE'] = 5