From 2fa154e023f39d2b057d8402b57665f652ade688 Mon Sep 17 00:00:00 2001 From: linus Date: Sat, 12 Jul 2025 17:49:51 +0200 Subject: [PATCH] Make 1.2.0 ready --- src/CHANGELOG.md | 14 +++++++++++++- src/config.yaml | 2 +- src/const.py | 2 +- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/src/CHANGELOG.md b/src/CHANGELOG.md index f1e8770..1c7bc9e 100644 --- a/src/CHANGELOG.md +++ b/src/CHANGELOG.md @@ -1,10 +1,22 @@ +## v1.2.0 + +### 🚀 Features: + +- Some minor corrections and more checking for exceptions #267 +- Better logging, indicate URL used on API errors, check exceptions in more places to dont kill threads, add option for mqtt logging +- Dont force token renew on 5xx errors +- Indicate payload on error message to understand better issue #270 +- Better checking on received update_interval #270 +- Add TA trip statistics #283 + +Thanks to @luka6000 and @ivanfmartinez for your PRs! + ## v1.10.6 ### 🐛 Bug Fixes: - Fix missing refresh_token and API changes by volvo. Thanks to @esusxunil. - ## v1.10.5 ### 🐛 Bug Fixes: diff --git a/src/config.yaml b/src/config.yaml index 9b2d00f..b44858d 100644 --- a/src/config.yaml +++ b/src/config.yaml @@ -1,6 +1,6 @@ name: "Volvo2Mqtt" description: "Volvo AAOS MQTT bridge" -version: "1.10.6" +version: "1.2.0" slug: "volvo2mqtt" init: false url: "https://github.com/Dielee/volvo2mqtt" diff --git a/src/const.py b/src/const.py index 0563aa8..0f8a428 100644 --- a/src/const.py +++ b/src/const.py @@ -1,6 +1,6 @@ from config import settings -VERSION = "v1.10.6" +VERSION = "v1.2.0" OAUTH_TOKEN_URL = "https://volvoid.eu.volvocars.com/as/token.oauth2" OAUTH_AUTH_URL = "https://volvoid.eu.volvocars.com/as/authorization.oauth2"