Skip to content

Commit d7320f0

Browse files
authored
2 parents dc8aaac + 0bcc0f3 commit d7320f0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+759
-161
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

homeassistant/components/airos/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
"documentation": "https://www.home-assistant.io/integrations/airos",
77
"iot_class": "local_polling",
88
"quality_scale": "bronze",
9-
"requirements": ["airos==0.2.7"]
9+
"requirements": ["airos==0.2.11"]
1010
}

homeassistant/components/bluetooth/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"quality_scale": "internal",
1717
"requirements": [
1818
"bleak==1.0.1",
19-
"bleak-retry-connector==4.0.0",
19+
"bleak-retry-connector==4.0.1",
2020
"bluetooth-adapters==2.0.0",
2121
"bluetooth-auto-recovery==1.5.2",
2222
"bluetooth-data-tools==1.28.2",

homeassistant/components/cookidoo/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
"iot_class": "cloud_polling",
99
"loggers": ["cookidoo_api"],
1010
"quality_scale": "silver",
11-
"requirements": ["cookidoo-api==0.12.2"]
11+
"requirements": ["cookidoo-api==0.14.0"]
1212
}

homeassistant/components/dhcp/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
],
1616
"quality_scale": "internal",
1717
"requirements": [
18-
"aiodhcpwatcher==1.2.0",
18+
"aiodhcpwatcher==1.2.1",
1919
"aiodiscover==2.7.1",
2020
"cached-ipaddress==0.10.0"
2121
]

homeassistant/components/enphase_envoy/__init__.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
from __future__ import annotations
44

5+
from typing import TYPE_CHECKING
6+
57
from pyenphase import Envoy
68

79
from homeassistant.const import CONF_HOST
@@ -42,6 +44,21 @@ async def async_setup_entry(hass: HomeAssistant, entry: EnphaseConfigEntry) -> b
4244
},
4345
)
4446

47+
# register envoy before via_device is used
48+
device_registry = dr.async_get(hass)
49+
if TYPE_CHECKING:
50+
assert envoy.serial_number
51+
device_registry.async_get_or_create(
52+
config_entry_id=entry.entry_id,
53+
identifiers={(DOMAIN, envoy.serial_number)},
54+
manufacturer="Enphase",
55+
name=coordinator.name,
56+
model=envoy.envoy_model,
57+
sw_version=str(envoy.firmware),
58+
hw_version=envoy.part_number,
59+
serial_number=envoy.serial_number,
60+
)
61+
4562
entry.runtime_data = coordinator
4663

4764
await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)

homeassistant/components/habitica/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
"iot_class": "cloud_polling",
88
"loggers": ["habiticalib"],
99
"quality_scale": "platinum",
10-
"requirements": ["habiticalib==0.4.1"]
10+
"requirements": ["habiticalib==0.4.2"]
1111
}

homeassistant/components/miele/const.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1330,4 +1330,5 @@ class PlatePowerStep(MieleEnum):
13301330
plate_step_17 = 17
13311331
plate_step_18 = 18
13321332
plate_step_boost = 117, 118, 218
1333+
plate_step_boost_2 = 217
13331334
missing2none = -9999

homeassistant/components/miele/icons.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@
7676
"plate_step_16": "mdi:circle-slice-7",
7777
"plate_step_17": "mdi:circle-slice-8",
7878
"plate_step_18": "mdi:circle-slice-8",
79-
"plate_step_boost": "mdi:alpha-b-circle-outline"
79+
"plate_step_boost": "mdi:alpha-b-circle-outline",
80+
"plate_step_boost_2": "mdi:alpha-b-circle"
8081
}
8182
},
8283
"program_type": {

homeassistant/components/miele/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"iot_class": "cloud_push",
99
"loggers": ["pymiele"],
1010
"quality_scale": "bronze",
11-
"requirements": ["pymiele==0.5.2"],
11+
"requirements": ["pymiele==0.5.4"],
1212
"single_config_entry": true,
1313
"zeroconf": ["_mieleathome._tcp.local."]
1414
}

0 commit comments

Comments
 (0)