Skip to content

Commit

Permalink
Allow phone number as username #91
Browse files Browse the repository at this point in the history
  • Loading branch information
Dielee committed Aug 25, 2023
1 parent 1a5cc3d commit 23246a4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions src/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## v1.8.5
### 🚀 Features:

- Allow phone number as username #91

## v1.8.4
### 🚀 Features:

Expand Down
4 changes: 2 additions & 2 deletions src/config.yaml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion src/const.py
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 23246a4

Please sign in to comment.