Bump aioautomower to 2024.6.0 (#119625)

This commit is contained in:
Thomas55555 2024-06-13 19:58:04 +02:00 committed by GitHub
parent fc6dd7ce7d
commit b4a77f8341
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 10 additions and 4 deletions

View File

@ -7,5 +7,5 @@
"documentation": "https://www.home-assistant.io/integrations/husqvarna_automower", "documentation": "https://www.home-assistant.io/integrations/husqvarna_automower",
"iot_class": "cloud_push", "iot_class": "cloud_push",
"loggers": ["aioautomower"], "loggers": ["aioautomower"],
"requirements": ["aioautomower==2024.5.1"] "requirements": ["aioautomower==2024.6.0"]
} }

View File

@ -201,7 +201,7 @@ aioaseko==0.1.1
aioasuswrt==1.4.0 aioasuswrt==1.4.0
# homeassistant.components.husqvarna_automower # homeassistant.components.husqvarna_automower
aioautomower==2024.5.1 aioautomower==2024.6.0
# homeassistant.components.azure_devops # homeassistant.components.azure_devops
aioazuredevops==2.0.0 aioazuredevops==2.0.0

View File

@ -180,7 +180,7 @@ aioaseko==0.1.1
aioasuswrt==1.4.0 aioasuswrt==1.4.0
# homeassistant.components.husqvarna_automower # homeassistant.components.husqvarna_automower
aioautomower==2024.5.1 aioautomower==2024.6.0
# homeassistant.components.azure_devops # homeassistant.components.azure_devops
aioazuredevops==2.0.0 aioazuredevops==2.0.0

View File

@ -21,9 +21,12 @@
"mower": { "mower": {
"mode": "MAIN_AREA", "mode": "MAIN_AREA",
"activity": "PARKED_IN_CS", "activity": "PARKED_IN_CS",
"inactiveReason": "NONE",
"state": "RESTRICTED", "state": "RESTRICTED",
"workAreaId": 123456,
"errorCode": 0, "errorCode": 0,
"errorCodeTimestamp": 0 "errorCodeTimestamp": 0,
"isErrorConfirmable": false
}, },
"calendar": { "calendar": {
"tasks": [ "tasks": [

View File

@ -64,8 +64,11 @@
'error_datetime': None, 'error_datetime': None,
'error_datetime_naive': None, 'error_datetime_naive': None,
'error_key': None, 'error_key': None,
'inactive_reason': 'NONE',
'is_error_confirmable': False,
'mode': 'MAIN_AREA', 'mode': 'MAIN_AREA',
'state': 'RESTRICTED', 'state': 'RESTRICTED',
'work_area_id': 123456,
}), }),
'planner': dict({ 'planner': dict({
'next_start_datetime': '2023-06-05T19:00:00+00:00', 'next_start_datetime': '2023-06-05T19:00:00+00:00',