diff --git a/requirements.txt b/requirements.txt index 081bd01..7ce5a60 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ requests~=2.32.0 -dynaconf~=3.1.12 -paho-mqtt~=1.6.1 -Babel~=2.12.1 -pytz~=2023.3 +dynaconf~=3.2.13 +paho-mqtt~=2.1.0 +Babel~=2.18.0 +pytz~=2026.1.post1 google_play_scraper~=1.2.6 \ No newline at end of file diff --git a/src/CHANGELOG.md b/src/CHANGELOG.md index c68ecaa..87acbc7 100644 --- a/src/CHANGELOG.md +++ b/src/CHANGELOG.md @@ -1,3 +1,9 @@ +## v1.13.3 + +### 🐛 Bug Fixes: + +- Bump pypi packages + ## v1.13.2 ### 🐛 Bug Fixes: diff --git a/src/config.yaml b/src/config.yaml index 265d965..9ab7e65 100644 --- a/src/config.yaml +++ b/src/config.yaml @@ -1,6 +1,6 @@ name: "Volvo2Mqtt" description: "Volvo AAOS MQTT bridge" -version: "1.13.2" +version: "1.13.3" slug: "volvo2mqtt" init: false url: "https://github.com/Dielee/volvo2mqtt" diff --git a/src/const.py b/src/const.py index c5829e3..9e7bccf 100644 --- a/src/const.py +++ b/src/const.py @@ -1,6 +1,6 @@ from config import settings -VERSION = "v1.13.2" +VERSION = "v1.13.3" OAUTH_TOKEN_URL = "https://volvoid.eu.volvocars.com/as/token.oauth2" OAUTH_AUTH_URL = "https://volvoid.eu.volvocars.com/as/authorization.oauth2" diff --git a/src/mqtt.py b/src/mqtt.py index 2735fda..1b7d8b3 100644 --- a/src/mqtt.py +++ b/src/mqtt.py @@ -25,8 +25,9 @@ active_schedules = {} otp_code = None def connect(): - client = mqtt.Client("volvoAAOS2mqtt") if os.environ.get("IS_HA_ADDON") \ - else mqtt.Client("volvoAAOS2mqtt_" + settings.volvoData["username"].replace("+", "")) + client = mqtt.Client(mqtt.CallbackAPIVersion.VERSION1, "volvoAAOS2mqtt") \ + if os.environ.get("IS_HA_ADDON") \ + else mqtt.Client(mqtt.CallbackAPIVersion.VERSION1, "volvoAAOS2mqtt_" + settings.volvoData["username"].replace("+", "")) if "logging" in settings["mqtt"] and settings["mqtt"]["logging"]: mqtt_logger = logging.getLogger("mqtt")