Bump bimmer_connected to 0.16.2 (#124651)

This commit is contained in:
Richard Kroegel 2024-08-27 01:57:25 +02:00 committed by GitHub
parent 37019d33fd
commit 2fe19c04b9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 12 additions and 5 deletions

View File

@ -7,5 +7,5 @@
"iot_class": "cloud_polling", "iot_class": "cloud_polling",
"loggers": ["bimmer_connected"], "loggers": ["bimmer_connected"],
"quality_scale": "platinum", "quality_scale": "platinum",
"requirements": ["bimmer-connected[china]==0.16.1"] "requirements": ["bimmer-connected[china]==0.16.2"]
} }

View File

@ -148,7 +148,8 @@
"cooling": "Cooling", "cooling": "Cooling",
"heating": "Heating", "heating": "Heating",
"inactive": "Inactive", "inactive": "Inactive",
"standby": "Standby" "standby": "Standby",
"ventilation": "Ventilation"
} }
}, },
"front_left_current_pressure": { "front_left_current_pressure": {

View File

@ -559,7 +559,7 @@ beautifulsoup4==4.12.3
# beewi-smartclim==0.0.10 # beewi-smartclim==0.0.10
# homeassistant.components.bmw_connected_drive # homeassistant.components.bmw_connected_drive
bimmer-connected[china]==0.16.1 bimmer-connected[china]==0.16.2
# homeassistant.components.bizkaibus # homeassistant.components.bizkaibus
bizkaibus==0.1.1 bizkaibus==0.1.1

View File

@ -493,7 +493,7 @@ base36==0.1.1
beautifulsoup4==4.12.3 beautifulsoup4==4.12.3
# homeassistant.components.bmw_connected_drive # homeassistant.components.bmw_connected_drive
bimmer-connected[china]==0.16.1 bimmer-connected[china]==0.16.2
# homeassistant.components.eq3btsmart # homeassistant.components.eq3btsmart
# homeassistant.components.esphome # homeassistant.components.esphome

View File

@ -929,6 +929,7 @@
'options': list([ 'options': list([
'cooling', 'cooling',
'heating', 'heating',
'ventilation',
'inactive', 'inactive',
'standby', 'standby',
]), ]),
@ -968,6 +969,7 @@
'options': list([ 'options': list([
'cooling', 'cooling',
'heating', 'heating',
'ventilation',
'inactive', 'inactive',
'standby', 'standby',
]), ]),
@ -1933,6 +1935,7 @@
'options': list([ 'options': list([
'cooling', 'cooling',
'heating', 'heating',
'ventilation',
'inactive', 'inactive',
'standby', 'standby',
]), ]),
@ -1972,6 +1975,7 @@
'options': list([ 'options': list([
'cooling', 'cooling',
'heating', 'heating',
'ventilation',
'inactive', 'inactive',
'standby', 'standby',
]), ]),
@ -2665,6 +2669,7 @@
'options': list([ 'options': list([
'cooling', 'cooling',
'heating', 'heating',
'ventilation',
'inactive', 'inactive',
'standby', 'standby',
]), ]),
@ -2704,6 +2709,7 @@
'options': list([ 'options': list([
'cooling', 'cooling',
'heating', 'heating',
'ventilation',
'inactive', 'inactive',
'standby', 'standby',
]), ]),

View File

@ -165,7 +165,7 @@ async def test_service_call_success_state_change(
( (
"button.i4_edrive40_find_vehicle", "button.i4_edrive40_find_vehicle",
"device_tracker.i4_edrive40", "device_tracker.i4_edrive40",
{"latitude": 123.456, "longitude": 34.5678, "direction": 121}, {"latitude": 12.345, "longitude": 34.5678, "direction": 121},
{"latitude": 48.177334, "longitude": 11.556274, "direction": 180}, {"latitude": 48.177334, "longitude": 11.556274, "direction": 180},
), ),
], ],