Allow phone number as username #91

This commit is contained in:
Linus Dietz
2023-08-25 15:08:25 +02:00
parent 1a5cc3db7a
commit 23246a464f
3 changed files with 8 additions and 3 deletions
+5
View File
@@ -1,3 +1,8 @@
## v1.8.5
### 🚀 Features:
- Allow phone number as username #91
## v1.8.4
### 🚀 Features:
+2 -2
View File
@@ -1,6 +1,6 @@
name: "Volvo2Mqtt"
description: "Volvo AAOS MQTT bridge"
version: "1.8.4"
version: "1.8.5"
slug: "volvo2mqtt"
init: false
url: "https://github.com/Dielee/volvo2mqtt"
@@ -40,7 +40,7 @@ schema:
username: str?
password: str?
volvoData:
username: match(^[\w+\.]+@([\w-]+\.)+[\w-]{2,4}$)
username: match(^([\w+\.]+@([\w-]+\.)+[\w-]{2,4})|(\+\d{5,20})$)
password: str
vin: str?
vccapikey:
+1 -1
View File
@@ -1,6 +1,6 @@
from config import settings
VERSION = "v1.8.4"
VERSION = "v1.8.5"
OAUTH_URL = "https://volvoid.eu.volvocars.com/as/token.oauth2"
VEHICLES_URL = "https://api.volvocars.com/connected-vehicle/v1/vehicles"