homeassistant 2025.9.0b4__py3-none-any.whl → 2025.9.0b5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of homeassistant might be problematic. Click here for more details.
- homeassistant/components/cloud/manifest.json +1 -1
- homeassistant/components/ecowitt/manifest.json +1 -1
- homeassistant/components/frontend/manifest.json +1 -1
- homeassistant/components/modbus/binary_sensor.py +4 -1
- homeassistant/components/modbus/sensor.py +6 -2
- homeassistant/const.py +1 -1
- homeassistant/helpers/area_registry.py +2 -4
- homeassistant/helpers/device_registry.py +1 -1
- homeassistant/helpers/floor_registry.py +2 -4
- homeassistant/package_constraints.txt +2 -2
- {homeassistant-2025.9.0b4.dist-info → homeassistant-2025.9.0b5.dist-info}/METADATA +2 -2
- {homeassistant-2025.9.0b4.dist-info → homeassistant-2025.9.0b5.dist-info}/RECORD +17 -17
- {homeassistant-2025.9.0b4.dist-info → homeassistant-2025.9.0b5.dist-info}/WHEEL +0 -0
- {homeassistant-2025.9.0b4.dist-info → homeassistant-2025.9.0b5.dist-info}/entry_points.txt +0 -0
- {homeassistant-2025.9.0b4.dist-info → homeassistant-2025.9.0b5.dist-info}/licenses/LICENSE.md +0 -0
- {homeassistant-2025.9.0b4.dist-info → homeassistant-2025.9.0b5.dist-info}/licenses/homeassistant/backports/LICENSE.Python +0 -0
- {homeassistant-2025.9.0b4.dist-info → homeassistant-2025.9.0b5.dist-info}/top_level.txt +0 -0
|
@@ -157,5 +157,8 @@ class SlaveSensor(
|
|
|
157
157
|
def _handle_coordinator_update(self) -> None:
|
|
158
158
|
"""Handle updated data from the coordinator."""
|
|
159
159
|
result = self.coordinator.data
|
|
160
|
-
|
|
160
|
+
if not result or self._result_inx >= len(result):
|
|
161
|
+
self._attr_is_on = None
|
|
162
|
+
else:
|
|
163
|
+
self._attr_is_on = bool(result[self._result_inx] & 1)
|
|
161
164
|
super()._handle_coordinator_update()
|
|
@@ -181,6 +181,10 @@ class SlaveSensor(
|
|
|
181
181
|
def _handle_coordinator_update(self) -> None:
|
|
182
182
|
"""Handle updated data from the coordinator."""
|
|
183
183
|
result = self.coordinator.data
|
|
184
|
-
|
|
185
|
-
|
|
184
|
+
if not result or self._idx >= len(result):
|
|
185
|
+
self._attr_native_value = None
|
|
186
|
+
self._attr_available = False
|
|
187
|
+
else:
|
|
188
|
+
self._attr_native_value = result[self._idx]
|
|
189
|
+
self._attr_available = True
|
|
186
190
|
super()._handle_coordinator_update()
|
homeassistant/const.py
CHANGED
|
@@ -25,7 +25,7 @@ if TYPE_CHECKING:
|
|
|
25
25
|
APPLICATION_NAME: Final = "HomeAssistant"
|
|
26
26
|
MAJOR_VERSION: Final = 2025
|
|
27
27
|
MINOR_VERSION: Final = 9
|
|
28
|
-
PATCH_VERSION: Final = "
|
|
28
|
+
PATCH_VERSION: Final = "0b5"
|
|
29
29
|
__short_version__: Final = f"{MAJOR_VERSION}.{MINOR_VERSION}"
|
|
30
30
|
__version__: Final = f"{__short_version__}.{PATCH_VERSION}"
|
|
31
31
|
REQUIRED_PYTHON_VER: Final[tuple[int, int, int]] = (3, 13, 2)
|
|
@@ -179,8 +179,7 @@ class AreaRegistryItems(NormalizedNameBaseRegistryItems[AreaEntry]):
|
|
|
179
179
|
self._floors_index[entry.floor_id][key] = True
|
|
180
180
|
for label in entry.labels:
|
|
181
181
|
self._labels_index[label][key] = True
|
|
182
|
-
for alias in entry.aliases:
|
|
183
|
-
normalized_alias = normalize_name(alias)
|
|
182
|
+
for normalized_alias in {normalize_name(alias) for alias in entry.aliases}:
|
|
184
183
|
self._aliases_index[normalized_alias][key] = True
|
|
185
184
|
|
|
186
185
|
def _unindex_entry(
|
|
@@ -190,8 +189,7 @@ class AreaRegistryItems(NormalizedNameBaseRegistryItems[AreaEntry]):
|
|
|
190
189
|
super()._unindex_entry(key, replacement_entry)
|
|
191
190
|
entry = self.data[key]
|
|
192
191
|
if aliases := entry.aliases:
|
|
193
|
-
for alias in aliases:
|
|
194
|
-
normalized_alias = normalize_name(alias)
|
|
192
|
+
for normalized_alias in {normalize_name(alias) for alias in aliases}:
|
|
195
193
|
self._unindex_entry_value(key, normalized_alias, self._aliases_index)
|
|
196
194
|
if labels := entry.labels:
|
|
197
195
|
for label in labels:
|
|
@@ -105,8 +105,7 @@ class FloorRegistryItems(NormalizedNameBaseRegistryItems[FloorEntry]):
|
|
|
105
105
|
def _index_entry(self, key: str, entry: FloorEntry) -> None:
|
|
106
106
|
"""Index an entry."""
|
|
107
107
|
super()._index_entry(key, entry)
|
|
108
|
-
for alias in entry.aliases:
|
|
109
|
-
normalized_alias = normalize_name(alias)
|
|
108
|
+
for normalized_alias in {normalize_name(alias) for alias in entry.aliases}:
|
|
110
109
|
self._aliases_index[normalized_alias][key] = True
|
|
111
110
|
|
|
112
111
|
def _unindex_entry(
|
|
@@ -116,8 +115,7 @@ class FloorRegistryItems(NormalizedNameBaseRegistryItems[FloorEntry]):
|
|
|
116
115
|
super()._unindex_entry(key, replacement_entry)
|
|
117
116
|
entry = self.data[key]
|
|
118
117
|
if aliases := entry.aliases:
|
|
119
|
-
for alias in aliases:
|
|
120
|
-
normalized_alias = normalize_name(alias)
|
|
118
|
+
for normalized_alias in {normalize_name(alias) for alias in aliases}:
|
|
121
119
|
self._unindex_entry_value(key, normalized_alias, self._aliases_index)
|
|
122
120
|
|
|
123
121
|
def get_floors_for_alias(self, alias: str) -> list[FloorEntry]:
|
|
@@ -35,10 +35,10 @@ fnv-hash-fast==1.5.0
|
|
|
35
35
|
go2rtc-client==0.2.1
|
|
36
36
|
ha-ffmpeg==3.2.2
|
|
37
37
|
habluetooth==5.3.0
|
|
38
|
-
hass-nabucasa==1.
|
|
38
|
+
hass-nabucasa==1.1.0
|
|
39
39
|
hassil==3.2.0
|
|
40
40
|
home-assistant-bluetooth==1.13.1
|
|
41
|
-
home-assistant-frontend==
|
|
41
|
+
home-assistant-frontend==20250903.1
|
|
42
42
|
home-assistant-intents==2025.8.29
|
|
43
43
|
httpx==0.28.1
|
|
44
44
|
ifaddr==0.2.0
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: homeassistant
|
|
3
|
-
Version: 2025.9.
|
|
3
|
+
Version: 2025.9.0b5
|
|
4
4
|
Summary: Open-source home automation platform running on Python 3.
|
|
5
5
|
Author-email: The Home Assistant Authors <hello@home-assistant.io>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -40,7 +40,7 @@ Requires-Dist: certifi>=2021.5.30
|
|
|
40
40
|
Requires-Dist: ciso8601==2.3.2
|
|
41
41
|
Requires-Dist: cronsim==2.6
|
|
42
42
|
Requires-Dist: fnv-hash-fast==1.5.0
|
|
43
|
-
Requires-Dist: hass-nabucasa==1.
|
|
43
|
+
Requires-Dist: hass-nabucasa==1.1.0
|
|
44
44
|
Requires-Dist: httpx==0.28.1
|
|
45
45
|
Requires-Dist: home-assistant-bluetooth==1.13.1
|
|
46
46
|
Requires-Dist: ifaddr==0.2.0
|
|
@@ -5,13 +5,13 @@ homeassistant/block_async_io.py,sha256=X-M42w6huY1nUgv-b81jlbsbJ_ap7bgNfbfzyB8TD
|
|
|
5
5
|
homeassistant/bootstrap.py,sha256=W9hYip6oC7bQSmO62GxQ3FatIayKHUM80a7YIT7d6L4,37666
|
|
6
6
|
homeassistant/config.py,sha256=JLFP5ax4iWNh1DMBQjLFZt4t2B-xD2pbuhJsdGqK8l8,46427
|
|
7
7
|
homeassistant/config_entries.py,sha256=nUTbGEWtd3MM85LVzN6cHv_bFRPnKMhrEaGWrkECmZI,142552
|
|
8
|
-
homeassistant/const.py,sha256=
|
|
8
|
+
homeassistant/const.py,sha256=cAyWyOV85qJEJsWO5Mb98EpWcRnoPaW603Ekb62eSMg,33177
|
|
9
9
|
homeassistant/core.py,sha256=-EazchePB6g8PbSO2ybjdesfwob0pAgk_N7UlLxZGBI,99955
|
|
10
10
|
homeassistant/core_config.py,sha256=C4AzTEYmmcCg7vLqWTu6iBUPt24pXoLvoyuQVdN5k9U,31239
|
|
11
11
|
homeassistant/data_entry_flow.py,sha256=HXRTzIr-5SN3kL-BE8EESTY-rJ8DgarLa0QkoKcLWn8,32227
|
|
12
12
|
homeassistant/exceptions.py,sha256=C2RjcafVAtaoEIYlHyMuKENxHpioWGGKGMCIElrA5XE,10027
|
|
13
13
|
homeassistant/loader.py,sha256=-VT2Z8Y8M_ew2WM4XknNLI9L6bBOzeB0zAbeVtf_FME,61273
|
|
14
|
-
homeassistant/package_constraints.txt,sha256=
|
|
14
|
+
homeassistant/package_constraints.txt,sha256=3P5mf_KyIz46zyoUmn-sKPOFDn86pMVyO_l_FmBnHio,6573
|
|
15
15
|
homeassistant/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
16
|
homeassistant/requirements.py,sha256=F0rclsrdrHcSx86EPkMhMaaLujZdEYqR50g0D7oOFOE,11733
|
|
17
17
|
homeassistant/runner.py,sha256=U9nQXvfBgAr9m0_uk7YcIilx3j3i5wEaqKt0dYbP778,6350
|
|
@@ -5674,7 +5674,7 @@ homeassistant/components/cloud/google_config.py,sha256=n9yYui6jrX8Au-_roB9sO7roJ
|
|
|
5674
5674
|
homeassistant/components/cloud/helpers.py,sha256=UOiwaIrjtScJHxnX3kXfwggknVQcJ_lsAM-EDPGZ1CA,943
|
|
5675
5675
|
homeassistant/components/cloud/http_api.py,sha256=MuSZrj0OHM0N9zFcDa3r0hj8inom30hTmLoyclBWLGg,33382
|
|
5676
5676
|
homeassistant/components/cloud/icons.json,sha256=p7FFA5j8gO3bMyK0BuL78J8h1W0PlfUvX0ySvIkthtw,150
|
|
5677
|
-
homeassistant/components/cloud/manifest.json,sha256=
|
|
5677
|
+
homeassistant/components/cloud/manifest.json,sha256=7jKyWlOV3B_t86AcCGuYgDscdQe6ZAQL-WLtpUOe2uc,520
|
|
5678
5678
|
homeassistant/components/cloud/onboarding.py,sha256=BfEvw--U68iVqaROKz3uRbTw1yl5HooKEJwgbYYmm34,3402
|
|
5679
5679
|
homeassistant/components/cloud/prefs.py,sha256=8teqCnapNLQV7wuJZ2X3OFJwMxiDuEYDa4GPNhpXYLA,16575
|
|
5680
5680
|
homeassistant/components/cloud/repairs.py,sha256=twtZYbNhZQN6azmiHPNb6UcQeBxPa-OW0tuWaJeo2es,4323
|
|
@@ -8751,7 +8751,7 @@ homeassistant/components/ecowitt/config_flow.py,sha256=uQ5KAvywmDu8rhFR1NYvtSNzp
|
|
|
8751
8751
|
homeassistant/components/ecowitt/const.py,sha256=nm7LapUUDKqkvpjfHUFxy8XRSJoEhfcEWQ1O42Vo3e4,63
|
|
8752
8752
|
homeassistant/components/ecowitt/diagnostics.py,sha256=XL-EeQuTkXf6vsBl-5Nqcq_LgzLFvvQ8E4V7mgACbSw,1066
|
|
8753
8753
|
homeassistant/components/ecowitt/entity.py,sha256=wYteQAcrQ36Rs_i9RnzKvN4bkzVGpr6xVUePzsI1KbY,1447
|
|
8754
|
-
homeassistant/components/ecowitt/manifest.json,sha256=
|
|
8754
|
+
homeassistant/components/ecowitt/manifest.json,sha256=hTHU30ath20QYJtLbTF_3JfiJ4Q29mcv0oO1EoQiVmA,277
|
|
8755
8755
|
homeassistant/components/ecowitt/sensor.py,sha256=Rvi0EDxfhaJWcCshQLGHQwSlw5I4Arv-YI11qnFrYeM,10547
|
|
8756
8756
|
homeassistant/components/ecowitt/strings.json,sha256=R_4-o_VmKEjkpu-4rk9TqbQcHW-XVM5Q-O15FzwYCr8,1274
|
|
8757
8757
|
homeassistant/components/ecowitt/translations/bg.json,sha256=4PjaFXns2kTOa8UJ2lreZFo-YZB2fHihsGHnc7nBxo4,325
|
|
@@ -11862,7 +11862,7 @@ homeassistant/components/fronius/translations/zh-Hans.json,sha256=Vaa4RtOOZ9NIoS
|
|
|
11862
11862
|
homeassistant/components/fronius/translations/zh-Hant.json,sha256=R3afzW9OeHC__UlHMAaQ-hpbq-RjWriVq_dLVEaec_M,22613
|
|
11863
11863
|
homeassistant/components/frontend/__init__.py,sha256=UvBgtuycHO17R2TKymvXjJJw1-xiv9Xt0ARgCN8lABE,27138
|
|
11864
11864
|
homeassistant/components/frontend/icons.json,sha256=Vs_eYGT5ewiiIc3uz4w4CYyjmlnSE4lqS8L3eYepykU,147
|
|
11865
|
-
homeassistant/components/frontend/manifest.json,sha256=
|
|
11865
|
+
homeassistant/components/frontend/manifest.json,sha256=_BqrSIOUk2WyQ1_Zv3LvW7rdIIA5r-hMKs5iGWvqqjs,544
|
|
11866
11866
|
homeassistant/components/frontend/services.yaml,sha256=llgK5jjIefB4LwfOfFH6gVYB5u0aVamCF2ToHDmEuRo,370
|
|
11867
11867
|
homeassistant/components/frontend/storage.py,sha256=PYM7n72YtJnJLz33IkkXjZ7maehJoeG5JxsMuLbQEc8,5323
|
|
11868
11868
|
homeassistant/components/frontend/strings.json,sha256=8gO2iq1DSgpi9JEA-zl7KJVL3iWZ1sjisvQcj8TwSd4,649
|
|
@@ -22817,7 +22817,7 @@ homeassistant/components/mochad/light.py,sha256=JtUuFqH3OeHcvmLnKhXGG8mJ4G2xWrCY
|
|
|
22817
22817
|
homeassistant/components/mochad/manifest.json,sha256=hBxKQxhPC6-Ju_5L7OrZ-Cdli3CYQoOgCjt2HsP-00Y,271
|
|
22818
22818
|
homeassistant/components/mochad/switch.py,sha256=sc3R_6P07GCTMwDTQJ_euYqYZutO5Ds0HtG6AD-YkwM,3901
|
|
22819
22819
|
homeassistant/components/modbus/__init__.py,sha256=5CESJoaJG7GbK8-UtKHwe48DLBBIBwrL1e01Av6EkG0,19396
|
|
22820
|
-
homeassistant/components/modbus/binary_sensor.py,sha256=
|
|
22820
|
+
homeassistant/components/modbus/binary_sensor.py,sha256=YKBxSno5ktJkuXQ_ZfanT5hVZ5-mIScd9KWT1Oabaho,5421
|
|
22821
22821
|
homeassistant/components/modbus/climate.py,sha256=fI-tLP8OR6FMGhlt4heAk1nLkKI85oIRubGjZZIOyaI,22945
|
|
22822
22822
|
homeassistant/components/modbus/const.py,sha256=91kGA3I2FgPYkRyT9dLDw-nGYevQRa0GhwSGjEpxMXs,5314
|
|
22823
22823
|
homeassistant/components/modbus/cover.py,sha256=2Bj1TK3Ywk1ZwiFbBXIdYacb5xKkoZRdEGVh724t6QU,5257
|
|
@@ -22827,7 +22827,7 @@ homeassistant/components/modbus/icons.json,sha256=vBLvZBOc80_auiuBFgia1-dbrc8WDv
|
|
|
22827
22827
|
homeassistant/components/modbus/light.py,sha256=hZPLg2-byBwP1GghFrixHt-Y7VF2jPLga6rwcOXeA1U,8318
|
|
22828
22828
|
homeassistant/components/modbus/manifest.json,sha256=pyHi8WzqAUikedfGjhshGvrWYGzU9g0LBW6lezyDU64,236
|
|
22829
22829
|
homeassistant/components/modbus/modbus.py,sha256=mMvAMxdRr4KFEjGIkBXqDFnkQg6QM4pj-OAtYZfogcQ,13819
|
|
22830
|
-
homeassistant/components/modbus/sensor.py,sha256=
|
|
22830
|
+
homeassistant/components/modbus/sensor.py,sha256=3vnPtoOA48xYFZjG_lejtJQJkbqcWmDxJDFTqCVeusI,6585
|
|
22831
22831
|
homeassistant/components/modbus/services.yaml,sha256=lK8HkZoVn_8kn9BjcojgP9BvaeVvy8LmUyCXHZSvzbE,1041
|
|
22832
22832
|
homeassistant/components/modbus/strings.json,sha256=m5ppZWpkHBMuqoPEIl9GFGV0bosDJemHSfGlApuUquw,3804
|
|
22833
22833
|
homeassistant/components/modbus/switch.py,sha256=mQR_6oa7QDkW48wzS1R-I6uJ6xm5SkbhTvJCy49ZFwo,1182
|
|
@@ -44484,7 +44484,7 @@ homeassistant/generated/usb.py,sha256=1KZJ5soGAI6JgQT_MH_tkjCW1Oaevl-_0i0uLI3pNF
|
|
|
44484
44484
|
homeassistant/generated/zeroconf.py,sha256=mnjPek-CufE2udx-S-ixxaGo8WZLQC-Y-Ifkns-9uwQ,20290
|
|
44485
44485
|
homeassistant/helpers/__init__.py,sha256=EugYF7BqwGAELp7UIlJhpm6TGdphVuZCGGpZrvkr7DA,59
|
|
44486
44486
|
homeassistant/helpers/aiohttp_client.py,sha256=952T5JiXTBy0HfqQ6TY0ukJpBDFeB5IQQbKMUB3XVOg,12666
|
|
44487
|
-
homeassistant/helpers/area_registry.py,sha256=
|
|
44487
|
+
homeassistant/helpers/area_registry.py,sha256=v9H5dt9vkKitUhYGqPqXbOS0AbnNcjMgmTvZ0Akjp-0,20147
|
|
44488
44488
|
homeassistant/helpers/automation.py,sha256=SZv9T0nN3--XJX2ZwVD-AuhQR9Ek3lEca7CoehyDnH4,577
|
|
44489
44489
|
homeassistant/helpers/category_registry.py,sha256=6TZPSxiPnBEnPWjVRQfS92IuWep7vr9eo5XxBnlt7h4,8918
|
|
44490
44490
|
homeassistant/helpers/chat_session.py,sha256=PDLNqXiEmAl7AUwXkFHAMBeIDjkLwr63gKLO0nnVQcU,5301
|
|
@@ -44498,7 +44498,7 @@ homeassistant/helpers/data_entry_flow.py,sha256=_DFq5WckT5j6_ADS5NWso-9XeM7ZcKKv
|
|
|
44498
44498
|
homeassistant/helpers/debounce.py,sha256=lMR0CuKkovB28w-fSejvlnnvxLiR-FSB4O6U6-YimMQ,6043
|
|
44499
44499
|
homeassistant/helpers/deprecation.py,sha256=ppz7w4D0Ov0gRG7LNB2z3ZMY8RZsrOsznDYgXrM5TfM,13137
|
|
44500
44500
|
homeassistant/helpers/device.py,sha256=iKyuJv2fqx63vxSpvqWt3iBxW5xfu8pudAqbjP15h9g,3384
|
|
44501
|
-
homeassistant/helpers/device_registry.py,sha256=
|
|
44501
|
+
homeassistant/helpers/device_registry.py,sha256=oQyQhZX_usCtBNnS2swe1MbIlmL9EZQrN4kdH8YkDIo,73306
|
|
44502
44502
|
homeassistant/helpers/discovery.py,sha256=lU-lAtaMs54Za3cGo0V-GgnbN1OJKFlOx4YgWW-z8Kk,5466
|
|
44503
44503
|
homeassistant/helpers/discovery_flow.py,sha256=72MqrKzaTa_Q5VY1golgVrouaTTN_K-hmUlpF54w6-Y,4616
|
|
44504
44504
|
homeassistant/helpers/dispatcher.py,sha256=HLYKHuDmyP2VMXocNRILEckLuhyw44bY4ftY_afCMqg,7857
|
|
@@ -44509,7 +44509,7 @@ homeassistant/helpers/entity_registry.py,sha256=rXgkjchnjV5eODFvPWyilTmMwxlunFBw
|
|
|
44509
44509
|
homeassistant/helpers/entity_values.py,sha256=9z2_PkGSogshS-SHWhsBM-ebLAPUnu9JeB5kOJdAzrk,1818
|
|
44510
44510
|
homeassistant/helpers/entityfilter.py,sha256=pspfqry1Mo7IynnhgMHLkITitPbMQuFA2I8R6VYLP2A,9843
|
|
44511
44511
|
homeassistant/helpers/event.py,sha256=vAXrkyZJyN_rxdpGaKDxsfHlys_v03FBm_PAHuKNd8M,66501
|
|
44512
|
-
homeassistant/helpers/floor_registry.py,sha256=
|
|
44512
|
+
homeassistant/helpers/floor_registry.py,sha256=pqxSo3rqzT6rKEEKUPWbETJwSs__X2QyH5HwbgFXNXQ,9980
|
|
44513
44513
|
homeassistant/helpers/frame.py,sha256=f6BCLLdr08Vwvk35GxSWBKb_VBx_Ai6fa0s1ijko11k,13962
|
|
44514
44514
|
homeassistant/helpers/group.py,sha256=5afcGZbQvo7MLZj-6gj8B0Flj3KgTU45uaPq8cX_aQ8,1847
|
|
44515
44515
|
homeassistant/helpers/hassio.py,sha256=BvI6HTlSEG9eL79cZM5wK3CDG-B5xIob9NTdlXliCKo,469
|
|
@@ -44617,10 +44617,10 @@ homeassistant/util/yaml/dumper.py,sha256=xOYY662jD4YxcJZ7ZtWiGilyayUSbwVZRHrLYCO
|
|
|
44617
44617
|
homeassistant/util/yaml/input.py,sha256=bs4Z3poZYP6qTtV5nddit0zxPF-XQ9316OK-1JpGiGc,253
|
|
44618
44618
|
homeassistant/util/yaml/loader.py,sha256=Xb3-ObxN4NUlgoKFjugXYC99RPkKYGuO-DNL2im-jz8,2373
|
|
44619
44619
|
homeassistant/util/yaml/objects.py,sha256=oOXAWwT46W9mUpkEWAx81xL5yF-audtv_aevWBG-vAU,216
|
|
44620
|
-
homeassistant-2025.9.
|
|
44621
|
-
homeassistant-2025.9.
|
|
44622
|
-
homeassistant-2025.9.
|
|
44623
|
-
homeassistant-2025.9.
|
|
44624
|
-
homeassistant-2025.9.
|
|
44625
|
-
homeassistant-2025.9.
|
|
44626
|
-
homeassistant-2025.9.
|
|
44620
|
+
homeassistant-2025.9.0b5.dist-info/licenses/LICENSE.md,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
44621
|
+
homeassistant-2025.9.0b5.dist-info/licenses/homeassistant/backports/LICENSE.Python,sha256=Oy-B_iHRgcSZxZolbI4ZaEVdZonSaaqFNzv7avQdo78,13936
|
|
44622
|
+
homeassistant-2025.9.0b5.dist-info/METADATA,sha256=LTPVopO1pYipJqJqn_gUUFib9yxFmK4a-joY2FEbBIg,4769
|
|
44623
|
+
homeassistant-2025.9.0b5.dist-info/WHEEL,sha256=lTU6B6eIfYoiQJTZNc-fyaR6BpL6ehTzU3xGYxn2n8k,91
|
|
44624
|
+
homeassistant-2025.9.0b5.dist-info/entry_points.txt,sha256=vyr6SUJRESpnDkwn8ppfqbG-wYAWIoC9RYOrpYbcZYc,53
|
|
44625
|
+
homeassistant-2025.9.0b5.dist-info/top_level.txt,sha256=TifmoS6gUDZ_AwpZP5Hg4MFPB3zbKzwF9BHqPA_wHVw,14
|
|
44626
|
+
homeassistant-2025.9.0b5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{homeassistant-2025.9.0b4.dist-info → homeassistant-2025.9.0b5.dist-info}/licenses/LICENSE.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|