home-assistant: 2025.4.2 -> 2025.4.3

Diff: https://github.com/home-assistant/core/compare/refs/tags/2025.4.2...2025.4.3

Changelog: https://github.com/home-assistant/core/releases/tag/2025.4.3

Co-Authored-By: Martin Weinelt <hexa@darmstadt.ccc.de>
This commit is contained in:
Robert Schütz
2025-04-21 01:03:42 +02:00
committed by Martin Weinelt
co-authored by Martin Weinelt
parent 708cdac273
commit b9a395baeb
3 changed files with 17 additions and 5 deletions
@@ -2,7 +2,7 @@
# Do not edit!
{
version = "2025.4.2";
version = "2025.4.3";
components = {
"3_day_blinds" =
ps: with ps; [
+3 -3
View File
@@ -377,7 +377,7 @@ let
extraBuildInputs = extraPackages python.pkgs;
# Don't forget to run update-component-packages.py after updating
hassVersion = "2025.4.2";
hassVersion = "2025.4.3";
in
python.pkgs.buildPythonApplication rec {
@@ -398,13 +398,13 @@ python.pkgs.buildPythonApplication rec {
owner = "home-assistant";
repo = "core";
tag = version;
hash = "sha256-7OwkZ2KF1IxSNCXvr7Ex0nIKWWr78Zvma2WGaKM5cJE=";
hash = "sha256-KyPWEGXSoB9BJolR4+Kq9K9urhXN4YcgV0SQYaAEjiA=";
};
# Secondary source is pypi sdist for translations
sdist = fetchPypi {
inherit pname version;
hash = "sha256-IBJxyPZgFrCiARgOzYEcC6Eu/hwoOFTH87lkb+6UYJ4=";
hash = "sha256-xo1f2GDeafOaXiJ1+l+NsJkpU0FvbSnflsp2BE/JKC4=";
};
build-system = with python.pkgs; [
+13 -1
View File
@@ -14,7 +14,7 @@ let
ibeacon-ble
];
hassio = getComponentDeps "homeassistant_yellow";
homeassistant_hardware = getComponentDeps "zha";
homeassistant_hardware = getComponentDeps "otbr" ++ getComponentDeps "zha";
homeassistant_sky_connect = getComponentDeps "zha";
homeassistant_yellow = getComponentDeps "zha";
husqvarna_automower_ble = getComponentDeps "gardena_bluetooth";
@@ -78,6 +78,14 @@ let
};
extraPytestFlagsArray = {
backup = [
# outdated snapshot
"--deselect tests/components/backup/test_sensors.py::test_sensors"
];
bmw_connected_drive = [
# outdated snapshot
"--deselect tests/components/bmw_connected_drive/test_select.py::test_entity_state_attrs"
];
dnsip = [
# Tries to resolve DNS entries
"--deselect tests/components/dnsip/test_config_flow.py::test_options_flow"
@@ -88,6 +96,10 @@ let
"--deselect tests/components/jellyfin/test_media_source.py::test_audio_codec_resolve"
"--deselect tests/components/jellyfin/test_media_source.py::test_music_library"
];
matter = [
# outdated snapshot in eve_weather_sensor variant
"--deselect tests/components/matter/test_number.py::test_numbers"
];
modem_callerid = [
# aioserial mock produces wrong state
"--deselect tests/components/modem_callerid/test_init.py::test_setup_entry"