Skip to content

Commit 460bd2b

Browse files
authored
Merge pull request home-assistant#37377 from home-assistant/rc
2 parents dc8bfb7 + ec690bb commit 460bd2b

File tree

18 files changed

+88
-27
lines changed

18 files changed

+88
-27
lines changed

homeassistant/components/denonavr/receiver.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,13 @@ async def async_connect_receiver(self):
3939
or self._receiver.model_name is None
4040
or self._receiver.receiver_type is None
4141
):
42+
_LOGGER.error(
43+
"Missing receiver information: manufacturer '%s', name '%s', model '%s', type '%s'",
44+
self._receiver.manufacturer,
45+
self._receiver.name,
46+
self._receiver.model_name,
47+
self._receiver.receiver_type,
48+
)
4249
return False
4350

4451
_LOGGER.debug(

homeassistant/components/devolo_home_control/sensor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def unit_of_measurement(self):
8080

8181
def _sync(self, message=None):
8282
"""Update the multi level sensor state."""
83-
if message[0].startswith("devolo.MultiLevelSensor"):
83+
if message[0] == self._multi_level_sensor_property.element_uid:
8484
self._state = self._device_instance.multi_level_sensor_property[
8585
message[0]
8686
].value

homeassistant/components/forked_daapd/config_flow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ async def async_step_user(self, user_input=None):
133133
if user_input is not None:
134134
# check for any entries with same host, abort if found
135135
for entry in self._async_current_entries():
136-
if entry.data[CONF_HOST] == user_input[CONF_HOST]:
136+
if entry.data.get(CONF_HOST) == user_input[CONF_HOST]:
137137
return self.async_abort(reason="already_configured")
138138
validate_result = await self.validate_input(user_input)
139139
if validate_result[0] == "ok": # success

homeassistant/components/frontend/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"domain": "frontend",
33
"name": "Home Assistant Frontend",
44
"documentation": "https://www.home-assistant.io/integrations/frontend",
5-
"requirements": ["home-assistant-frontend==20200701.0"],
5+
"requirements": ["home-assistant-frontend==20200702.0"],
66
"dependencies": [
77
"api",
88
"auth",

homeassistant/components/gogogate2/config_flow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ async def async_step_user(self, user_input: dict = None):
6363
CONF_IP_ADDRESS, default=user_input.get(CONF_IP_ADDRESS, "")
6464
): str,
6565
vol.Required(
66-
CONF_USERNAME, default=user_input.get(CONF_USERNAME, "admin")
66+
CONF_USERNAME, default=user_input.get(CONF_USERNAME, "")
6767
): str,
6868
vol.Required(
6969
CONF_PASSWORD, default=user_input.get(CONF_PASSWORD, "")

homeassistant/components/gogogate2/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"name": "Gogogate2",
44
"config_flow": true,
55
"documentation": "https://www.home-assistant.io/integrations/gogogate2",
6-
"requirements": ["gogogate2-api==1.0.3"],
6+
"requirements": ["gogogate2-api==1.0.4"],
77
"codeowners": ["@vangorra"]
88
}

homeassistant/components/gogogate2/strings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"step": {
1111
"user": {
1212
"title": "Setup GogoGate2",
13-
"description": "Provide requisite information below. Note: only the 'admin' user is known to work.",
13+
"description": "Provide requisite information below.",
1414
"data": {
1515
"ip_address": "IP Address",
1616
"username": "[%key:common::config_flow::data::username%]",

homeassistant/components/hassio/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ async def async_handle_core_service(call):
325325
if errors:
326326
_LOGGER.error(errors)
327327
hass.components.persistent_notification.async_create(
328-
"Config error. See [the logs](/developer-tools/logs) for details.",
328+
"Config error. See [the logs](/config/logs) for details.",
329329
"Config validating",
330330
f"{HASS_DOMAIN}.check_config",
331331
)

homeassistant/components/homeassistant/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ async def async_handle_core_service(call):
112112
if errors:
113113
_LOGGER.error(errors)
114114
hass.components.persistent_notification.async_create(
115-
"Config error. See [the logs](/developer-tools/logs) for details.",
115+
"Config error. See [the logs](/config/logs) for details.",
116116
"Config validating",
117117
f"{ha.DOMAIN}.check_config",
118118
)

homeassistant/components/proxmoxve/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"name": "Proxmox VE",
44
"documentation": "https://www.home-assistant.io/integrations/proxmoxve",
55
"codeowners": ["@k4ds3", "@jhollowe"],
6-
"requirements": ["proxmoxer==1.1.0"]
6+
"requirements": ["proxmoxer==1.1.1"]
77
}

0 commit comments

Comments
 (0)