From 89877a0685d020eee1b3e9a2cc89816c7ba987c0 Mon Sep 17 00:00:00 2001 From: jugla <59493499+jugla@users.noreply.github.com> Date: Sat, 13 Nov 2021 16:44:18 +0100 Subject: [PATCH 01/16] Air visual : robustness at startup when evaluate time interval (#59544) --- homeassistant/components/airvisual/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/homeassistant/components/airvisual/__init__.py b/homeassistant/components/airvisual/__init__.py index 72b063c9394..dacc1bc1e38 100644 --- a/homeassistant/components/airvisual/__init__.py +++ b/homeassistant/components/airvisual/__init__.py @@ -105,9 +105,10 @@ def async_get_cloud_coordinators_by_api_key( ) -> list[DataUpdateCoordinator]: """Get all DataUpdateCoordinator objects related to a particular API key.""" return [ - attrs[DATA_COORDINATOR] + coordinator for entry_id, attrs in hass.data[DOMAIN].items() if (entry := hass.config_entries.async_get_entry(entry_id)) + and (coordinator := attrs.get(DATA_COORDINATOR)) and entry.data.get(CONF_API_KEY) == api_key ] From 3c4d5e6c91f8a7b1fffe59234eeeb39dba5b4565 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20S=C3=B8rensen?= Date: Fri, 12 Nov 2021 10:26:17 +0100 Subject: [PATCH 02/16] Override api url in norway_air (#59573) --- homeassistant/components/met/manifest.json | 2 +- homeassistant/components/norway_air/air_quality.py | 6 +++++- homeassistant/components/norway_air/manifest.json | 2 +- requirements_all.txt | 2 +- requirements_test_all.txt | 2 +- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/homeassistant/components/met/manifest.json b/homeassistant/components/met/manifest.json index 97edf8eb67f..4ebbdd3b1e7 100644 --- a/homeassistant/components/met/manifest.json +++ b/homeassistant/components/met/manifest.json @@ -3,7 +3,7 @@ "name": "Meteorologisk institutt (Met.no)", "config_flow": true, "documentation": "https://www.home-assistant.io/integrations/met", - "requirements": ["pyMetno==0.8.3"], + "requirements": ["pyMetno==0.8.4"], "codeowners": ["@danielhiversen", "@thimic"], "iot_class": "cloud_polling" } diff --git a/homeassistant/components/norway_air/air_quality.py b/homeassistant/components/norway_air/air_quality.py index 8e829355ea0..f38897d62c8 100644 --- a/homeassistant/components/norway_air/air_quality.py +++ b/homeassistant/components/norway_air/air_quality.py @@ -24,6 +24,8 @@ CONF_FORECAST = "forecast" DEFAULT_FORECAST = 0 DEFAULT_NAME = "Air quality Norway" +OVERRIDE_URL = "https://aa015h6buqvih86i1.api.met.no/weatherapi/airqualityforecast/0.1/" + PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend( { vol.Optional(CONF_FORECAST, default=DEFAULT_FORECAST): vol.Coerce(int), @@ -72,7 +74,9 @@ class AirSensor(AirQualityEntity): def __init__(self, name, coordinates, forecast, session): """Initialize the sensor.""" self._name = name - self._api = metno.AirQualityData(coordinates, forecast, session) + self._api = metno.AirQualityData( + coordinates, forecast, session, api_url=OVERRIDE_URL + ) @property def attribution(self) -> str: diff --git a/homeassistant/components/norway_air/manifest.json b/homeassistant/components/norway_air/manifest.json index 69b2e85808b..87981f085a6 100644 --- a/homeassistant/components/norway_air/manifest.json +++ b/homeassistant/components/norway_air/manifest.json @@ -2,7 +2,7 @@ "domain": "norway_air", "name": "Om Luftkvalitet i Norge (Norway Air)", "documentation": "https://www.home-assistant.io/integrations/norway_air", - "requirements": ["pyMetno==0.8.3"], + "requirements": ["pyMetno==0.8.4"], "codeowners": [], "iot_class": "cloud_polling" } diff --git a/requirements_all.txt b/requirements_all.txt index 9aef5a12b5b..f98a68f8644 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -1312,7 +1312,7 @@ pyMetEireann==2021.8.0 # homeassistant.components.met # homeassistant.components.norway_air -pyMetno==0.8.3 +pyMetno==0.8.4 # homeassistant.components.rfxtrx pyRFXtrx==0.27.0 diff --git a/requirements_test_all.txt b/requirements_test_all.txt index 26d9eba1d2d..e790322668d 100644 --- a/requirements_test_all.txt +++ b/requirements_test_all.txt @@ -784,7 +784,7 @@ pyMetEireann==2021.8.0 # homeassistant.components.met # homeassistant.components.norway_air -pyMetno==0.8.3 +pyMetno==0.8.4 # homeassistant.components.rfxtrx pyRFXtrx==0.27.0 From e7aa90a5b178d619278ddfdd5d2940df7d9780f5 Mon Sep 17 00:00:00 2001 From: Simone Chemelli Date: Fri, 12 Nov 2021 19:09:03 +0100 Subject: [PATCH 03/16] Fix firmware status check for Fritz (#59578) --- homeassistant/components/fritz/common.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/fritz/common.py b/homeassistant/components/fritz/common.py index d6df32fa931..09926e5d9ac 100644 --- a/homeassistant/components/fritz/common.py +++ b/homeassistant/components/fritz/common.py @@ -257,10 +257,10 @@ class FritzBoxTools: def _update_device_info(self) -> tuple[bool, str | None]: """Retrieve latest device information from the FRITZ!Box.""" - userinterface = self.connection.call_action("UserInterface1", "GetInfo") - return userinterface.get("NewUpgradeAvailable"), userinterface.get( + version = self.connection.call_action("UserInterface1", "GetInfo").get( "NewX_AVM-DE_Version" ) + return bool(version), version def scan_devices(self, now: datetime | None = None) -> None: """Scan for new devices and return a list of found device ids.""" From 7042fdb1457497a7d75e7728868d251009635de8 Mon Sep 17 00:00:00 2001 From: Michael Kowalchuk Date: Sat, 13 Nov 2021 04:00:36 -0800 Subject: [PATCH 04/16] Always use a step size of 1 for z-wave js fans (#59622) --- homeassistant/components/zwave_js/fan.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/homeassistant/components/zwave_js/fan.py b/homeassistant/components/zwave_js/fan.py index 6ee709893cb..4b4f23a85d2 100644 --- a/homeassistant/components/zwave_js/fan.py +++ b/homeassistant/components/zwave_js/fan.py @@ -103,6 +103,11 @@ class ZwaveFan(ZWaveBaseEntity, FanEntity): return None return ranged_value_to_percentage(SPEED_RANGE, self.info.primary_value.value) + @property + def percentage_step(self) -> float: + """Return the step size for percentage.""" + return 1 + @property def speed_count(self) -> int: """Return the number of speeds the fan supports.""" From 0153580defeb0add28e5385409175cbb930c871c Mon Sep 17 00:00:00 2001 From: Maciej Bieniek Date: Sat, 13 Nov 2021 12:59:48 +0100 Subject: [PATCH 05/16] Fix favorite RPM max value in Xiaomi Miio (#59631) --- homeassistant/components/xiaomi_miio/number.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/xiaomi_miio/number.py b/homeassistant/components/xiaomi_miio/number.py index 161a690a0df..87ccdd63d0f 100644 --- a/homeassistant/components/xiaomi_miio/number.py +++ b/homeassistant/components/xiaomi_miio/number.py @@ -177,7 +177,7 @@ NUMBER_TYPES = { icon="mdi:star-cog", unit_of_measurement="rpm", min_value=300, - max_value=2300, + max_value=2200, step=10, method="async_set_favorite_rpm", entity_category=ENTITY_CATEGORY_CONFIG, From b122774b129fd57c350c2ed002beb1c55b889a88 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Fri, 5 Nov 2021 05:22:59 -0500 Subject: [PATCH 06/16] Bump zeroconf to 0.36.12 (#59133) - Changelog: https://github.com/jstasiak/python-zeroconf/compare/0.36.11...0.36.12 Bugfix: Prevent service lookups from deadlocking if time abruptly moves backwards --- homeassistant/components/zeroconf/manifest.json | 2 +- homeassistant/package_constraints.txt | 2 +- requirements_all.txt | 2 +- requirements_test_all.txt | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/homeassistant/components/zeroconf/manifest.json b/homeassistant/components/zeroconf/manifest.json index 3f4dfb4929e..0c25a4c9860 100644 --- a/homeassistant/components/zeroconf/manifest.json +++ b/homeassistant/components/zeroconf/manifest.json @@ -2,7 +2,7 @@ "domain": "zeroconf", "name": "Zero-configuration networking (zeroconf)", "documentation": "https://www.home-assistant.io/integrations/zeroconf", - "requirements": ["zeroconf==0.36.11"], + "requirements": ["zeroconf==0.36.12"], "dependencies": ["network", "api"], "codeowners": ["@bdraco"], "quality_scale": "internal", diff --git a/homeassistant/package_constraints.txt b/homeassistant/package_constraints.txt index 1f29737cdf3..3a8f7c3ad6f 100644 --- a/homeassistant/package_constraints.txt +++ b/homeassistant/package_constraints.txt @@ -32,7 +32,7 @@ sqlalchemy==1.4.23 voluptuous-serialize==2.4.0 voluptuous==0.12.2 yarl==1.6.3 -zeroconf==0.36.11 +zeroconf==0.36.12 pycryptodome>=3.6.6 diff --git a/requirements_all.txt b/requirements_all.txt index f98a68f8644..1999e21307b 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -2465,7 +2465,7 @@ youtube_dl==2021.06.06 zengge==0.2 # homeassistant.components.zeroconf -zeroconf==0.36.11 +zeroconf==0.36.12 # homeassistant.components.zha zha-quirks==0.0.63 diff --git a/requirements_test_all.txt b/requirements_test_all.txt index e790322668d..3352b43b571 100644 --- a/requirements_test_all.txt +++ b/requirements_test_all.txt @@ -1430,7 +1430,7 @@ yeelight==0.7.8 youless-api==0.15 # homeassistant.components.zeroconf -zeroconf==0.36.11 +zeroconf==0.36.12 # homeassistant.components.zha zha-quirks==0.0.63 From 84358fa7708e857c6a3afb5b4e015c41df346a96 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sat, 13 Nov 2021 11:18:54 -0600 Subject: [PATCH 07/16] Bump zeroconf to 0.36.13 (#59644) - Closes #59415 - Fixes #58453 - Fixes #57678 - Changelog: https://github.com/jstasiak/python-zeroconf/compare/0.36.12...0.36.13 --- homeassistant/components/zeroconf/manifest.json | 2 +- homeassistant/package_constraints.txt | 2 +- requirements_all.txt | 2 +- requirements_test_all.txt | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/homeassistant/components/zeroconf/manifest.json b/homeassistant/components/zeroconf/manifest.json index 0c25a4c9860..95f9407661b 100644 --- a/homeassistant/components/zeroconf/manifest.json +++ b/homeassistant/components/zeroconf/manifest.json @@ -2,7 +2,7 @@ "domain": "zeroconf", "name": "Zero-configuration networking (zeroconf)", "documentation": "https://www.home-assistant.io/integrations/zeroconf", - "requirements": ["zeroconf==0.36.12"], + "requirements": ["zeroconf==0.36.13"], "dependencies": ["network", "api"], "codeowners": ["@bdraco"], "quality_scale": "internal", diff --git a/homeassistant/package_constraints.txt b/homeassistant/package_constraints.txt index 3a8f7c3ad6f..1b4edb91b19 100644 --- a/homeassistant/package_constraints.txt +++ b/homeassistant/package_constraints.txt @@ -32,7 +32,7 @@ sqlalchemy==1.4.23 voluptuous-serialize==2.4.0 voluptuous==0.12.2 yarl==1.6.3 -zeroconf==0.36.12 +zeroconf==0.36.13 pycryptodome>=3.6.6 diff --git a/requirements_all.txt b/requirements_all.txt index 1999e21307b..2817316fe88 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -2465,7 +2465,7 @@ youtube_dl==2021.06.06 zengge==0.2 # homeassistant.components.zeroconf -zeroconf==0.36.12 +zeroconf==0.36.13 # homeassistant.components.zha zha-quirks==0.0.63 diff --git a/requirements_test_all.txt b/requirements_test_all.txt index 3352b43b571..8eeb4461162 100644 --- a/requirements_test_all.txt +++ b/requirements_test_all.txt @@ -1430,7 +1430,7 @@ yeelight==0.7.8 youless-api==0.15 # homeassistant.components.zeroconf -zeroconf==0.36.12 +zeroconf==0.36.13 # homeassistant.components.zha zha-quirks==0.0.63 From f0fdd4388c8037976b74f7743c10bb4e15c7b55b Mon Sep 17 00:00:00 2001 From: Clifford Roche Date: Sat, 13 Nov 2021 12:18:12 -0500 Subject: [PATCH 08/16] Bump greecliamate to 0.12.4 (#59645) --- homeassistant/components/gree/manifest.json | 2 +- requirements_all.txt | 2 +- requirements_test_all.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/homeassistant/components/gree/manifest.json b/homeassistant/components/gree/manifest.json index 62d5bec6bb8..e87a7c6a0bb 100644 --- a/homeassistant/components/gree/manifest.json +++ b/homeassistant/components/gree/manifest.json @@ -3,7 +3,7 @@ "name": "Gree Climate", "config_flow": true, "documentation": "https://www.home-assistant.io/integrations/gree", - "requirements": ["greeclimate==0.12.3"], + "requirements": ["greeclimate==0.12.4"], "codeowners": ["@cmroche"], "iot_class": "local_polling" } diff --git a/requirements_all.txt b/requirements_all.txt index 2817316fe88..69fc4585eee 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -747,7 +747,7 @@ gpiozero==1.5.1 gps3==0.33.3 # homeassistant.components.gree -greeclimate==0.12.3 +greeclimate==0.12.4 # homeassistant.components.greeneye_monitor greeneye_monitor==2.1 diff --git a/requirements_test_all.txt b/requirements_test_all.txt index 8eeb4461162..a916b511639 100644 --- a/requirements_test_all.txt +++ b/requirements_test_all.txt @@ -455,7 +455,7 @@ google-nest-sdm==0.3.8 googlemaps==2.5.1 # homeassistant.components.gree -greeclimate==0.12.3 +greeclimate==0.12.4 # homeassistant.components.growatt_server growattServer==1.1.0 From cb889281a661cf2d9ad1ae5e3c93e5b782f5eef1 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sat, 13 Nov 2021 23:55:23 -0600 Subject: [PATCH 09/16] Ensure flux_led bulbs turn on even if brightness is 0 (#59661) --- homeassistant/components/flux_led/light.py | 14 ++++++++--- tests/components/flux_led/test_light.py | 28 ++++++++++++++++++++++ 2 files changed, 39 insertions(+), 3 deletions(-) diff --git a/homeassistant/components/flux_led/light.py b/homeassistant/components/flux_led/light.py index f1fa4ed7dbb..c632492ea81 100644 --- a/homeassistant/components/flux_led/light.py +++ b/homeassistant/components/flux_led/light.py @@ -375,13 +375,21 @@ class FluxLight(FluxEntity, CoordinatorEntity, LightEntity): async def _async_turn_on(self, **kwargs: Any) -> None: """Turn the specified or all lights on.""" + if (brightness := kwargs.get(ATTR_BRIGHTNESS)) is None: + brightness = self.brightness + if not self.is_on: await self._device.async_turn_on() if not kwargs: return - - if (brightness := kwargs.get(ATTR_BRIGHTNESS)) is None: - brightness = self.brightness + # If the brightness was previously 0, the light + # will not turn on unless brightness is at least 1 + if not brightness: + brightness = 1 + elif not brightness: + # If the device was on and brightness was not + # set, it means it was masked by an effect + brightness = 255 # Handle switch to CCT Color Mode if ATTR_COLOR_TEMP in kwargs: diff --git a/tests/components/flux_led/test_light.py b/tests/components/flux_led/test_light.py index 6f0ad5aa253..01dfff85528 100644 --- a/tests/components/flux_led/test_light.py +++ b/tests/components/flux_led/test_light.py @@ -214,11 +214,26 @@ async def test_rgb_light(hass: HomeAssistant) -> None: await async_mock_device_turn_off(hass, bulb) assert hass.states.get(entity_id).state == STATE_OFF + bulb.brightness = 0 + await hass.services.async_call( + LIGHT_DOMAIN, + "turn_on", + {ATTR_ENTITY_ID: entity_id, ATTR_RGB_COLOR: (10, 10, 30)}, + blocking=True, + ) + # If the bulb is off and we are using existing brightness + # it has to be at least 1 or the bulb won't turn on + bulb.async_set_levels.assert_called_with(10, 10, 30, brightness=1) + bulb.async_set_levels.reset_mock() + bulb.async_turn_on.reset_mock() + await hass.services.async_call( LIGHT_DOMAIN, "turn_on", {ATTR_ENTITY_ID: entity_id}, blocking=True ) bulb.async_turn_on.assert_called_once() bulb.async_turn_on.reset_mock() + await async_mock_device_turn_on(hass, bulb) + assert hass.states.get(entity_id).state == STATE_ON await hass.services.async_call( LIGHT_DOMAIN, @@ -229,6 +244,19 @@ async def test_rgb_light(hass: HomeAssistant) -> None: bulb.async_set_levels.assert_called_with(255, 0, 0, brightness=100) bulb.async_set_levels.reset_mock() + await hass.services.async_call( + LIGHT_DOMAIN, + "turn_on", + {ATTR_ENTITY_ID: entity_id, ATTR_RGB_COLOR: (10, 10, 30)}, + blocking=True, + ) + # If the bulb is on and we are using existing brightness + # and brightness was 0 it means we could not read it because + # an effect is in progress so we use 255 + bulb.async_set_levels.assert_called_with(10, 10, 30, brightness=255) + bulb.async_set_levels.reset_mock() + + bulb.brightness = 128 await hass.services.async_call( LIGHT_DOMAIN, "turn_on", From c2aeeec12927b3bed7291f303f5bb84290fe5d19 Mon Sep 17 00:00:00 2001 From: Anton Malko Date: Sun, 14 Nov 2021 22:36:14 +0300 Subject: [PATCH 10/16] Update aiolookin to 0.0.4 version (#59684) --- homeassistant/components/lookin/manifest.json | 2 +- requirements_all.txt | 2 +- requirements_test_all.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/homeassistant/components/lookin/manifest.json b/homeassistant/components/lookin/manifest.json index 046b0e482a1..7260985654a 100644 --- a/homeassistant/components/lookin/manifest.json +++ b/homeassistant/components/lookin/manifest.json @@ -3,7 +3,7 @@ "name": "LOOKin", "documentation": "https://www.home-assistant.io/integrations/lookin/", "codeowners": ["@ANMalko"], - "requirements": ["aiolookin==0.0.3"], + "requirements": ["aiolookin==0.0.4"], "zeroconf": ["_lookin._tcp.local."], "config_flow": true, "iot_class": "local_push" diff --git a/requirements_all.txt b/requirements_all.txt index 69fc4585eee..614d85ee2a6 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -207,7 +207,7 @@ aiolifx_effects==0.2.2 aiolip==1.1.6 # homeassistant.components.lookin -aiolookin==0.0.3 +aiolookin==0.0.4 # homeassistant.components.lyric aiolyric==1.0.7 diff --git a/requirements_test_all.txt b/requirements_test_all.txt index a916b511639..0623f079b1b 100644 --- a/requirements_test_all.txt +++ b/requirements_test_all.txt @@ -137,7 +137,7 @@ aiokafka==0.6.0 aiolip==1.1.6 # homeassistant.components.lookin -aiolookin==0.0.3 +aiolookin==0.0.4 # homeassistant.components.lyric aiolyric==1.0.7 From 6a4274b2805cc1074f906083a61a3fc6dff54d61 Mon Sep 17 00:00:00 2001 From: Aaron Bach Date: Mon, 15 Nov 2021 15:30:26 -0700 Subject: [PATCH 11/16] Fix bug in AirVisual re-auth (#59685) --- homeassistant/components/airvisual/config_flow.py | 5 ++++- tests/components/airvisual/test_config_flow.py | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/airvisual/config_flow.py b/homeassistant/components/airvisual/config_flow.py index 636da54899f..e9ccb203eaa 100644 --- a/homeassistant/components/airvisual/config_flow.py +++ b/homeassistant/components/airvisual/config_flow.py @@ -141,6 +141,9 @@ class AirVisualFlowHandler(config_entries.ConfigFlow, domain=DOMAIN): existing_entry = await self.async_set_unique_id(self._geo_id) if existing_entry: self.hass.config_entries.async_update_entry(existing_entry, data=user_input) + self.hass.async_create_task( + self.hass.config_entries.async_reload(existing_entry.entry_id) + ) return self.async_abort(reason="reauth_successful") return self.async_create_entry( @@ -237,7 +240,7 @@ class AirVisualFlowHandler(config_entries.ConfigFlow, domain=DOMAIN): step_id="reauth_confirm", data_schema=API_KEY_DATA_SCHEMA ) - conf = {CONF_API_KEY: user_input[CONF_API_KEY], **self._entry_data_for_reauth} + conf = {**self._entry_data_for_reauth, CONF_API_KEY: user_input[CONF_API_KEY]} return await self._async_finish_geography( conf, self._entry_data_for_reauth[CONF_INTEGRATION_TYPE] diff --git a/tests/components/airvisual/test_config_flow.py b/tests/components/airvisual/test_config_flow.py index 6125b71e303..65534f1f16c 100644 --- a/tests/components/airvisual/test_config_flow.py +++ b/tests/components/airvisual/test_config_flow.py @@ -355,16 +355,19 @@ async def test_step_reauth(hass): assert result["type"] == data_entry_flow.RESULT_TYPE_FORM assert result["step_id"] == "reauth_confirm" + new_api_key = "defgh67890" + with patch( "homeassistant.components.airvisual.async_setup_entry", return_value=True ), patch("pyairvisual.air_quality.AirQuality.nearest_city", return_value=True): result = await hass.config_entries.flow.async_configure( - result["flow_id"], user_input={CONF_API_KEY: "defgh67890"} + result["flow_id"], user_input={CONF_API_KEY: new_api_key} ) assert result["type"] == data_entry_flow.RESULT_TYPE_ABORT assert result["reason"] == "reauth_successful" assert len(hass.config_entries.async_entries()) == 1 + assert hass.config_entries.async_entries()[0].data[CONF_API_KEY] == new_api_key async def test_step_user(hass): From 5c0e34db6cabb2493bdc4dbb94e47b3ef369765f Mon Sep 17 00:00:00 2001 From: Clifford Roche Date: Mon, 15 Nov 2021 13:32:50 -0500 Subject: [PATCH 12/16] Bump greeclimate to 0.12.5 (#59730) --- homeassistant/components/gree/manifest.json | 2 +- requirements_all.txt | 2 +- requirements_test_all.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/homeassistant/components/gree/manifest.json b/homeassistant/components/gree/manifest.json index e87a7c6a0bb..f4f8cf153a3 100644 --- a/homeassistant/components/gree/manifest.json +++ b/homeassistant/components/gree/manifest.json @@ -3,7 +3,7 @@ "name": "Gree Climate", "config_flow": true, "documentation": "https://www.home-assistant.io/integrations/gree", - "requirements": ["greeclimate==0.12.4"], + "requirements": ["greeclimate==0.12.5"], "codeowners": ["@cmroche"], "iot_class": "local_polling" } diff --git a/requirements_all.txt b/requirements_all.txt index 614d85ee2a6..519aec7f489 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -747,7 +747,7 @@ gpiozero==1.5.1 gps3==0.33.3 # homeassistant.components.gree -greeclimate==0.12.4 +greeclimate==0.12.5 # homeassistant.components.greeneye_monitor greeneye_monitor==2.1 diff --git a/requirements_test_all.txt b/requirements_test_all.txt index 0623f079b1b..62375d0725f 100644 --- a/requirements_test_all.txt +++ b/requirements_test_all.txt @@ -455,7 +455,7 @@ google-nest-sdm==0.3.8 googlemaps==2.5.1 # homeassistant.components.gree -greeclimate==0.12.4 +greeclimate==0.12.5 # homeassistant.components.growatt_server growattServer==1.1.0 From 702c57f389859db33187c0f0ae91d646aeeddbc1 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sun, 14 Nov 2021 04:56:06 -0600 Subject: [PATCH 13/16] Bump flux_led to 0.24.21 (#59662) --- homeassistant/components/flux_led/manifest.json | 2 +- requirements_all.txt | 2 +- requirements_test_all.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/homeassistant/components/flux_led/manifest.json b/homeassistant/components/flux_led/manifest.json index 429465a0f3c..203acb77385 100644 --- a/homeassistant/components/flux_led/manifest.json +++ b/homeassistant/components/flux_led/manifest.json @@ -3,7 +3,7 @@ "name": "Flux LED/MagicHome", "config_flow": true, "documentation": "https://www.home-assistant.io/integrations/flux_led", - "requirements": ["flux_led==0.24.17"], + "requirements": ["flux_led==0.24.21"], "quality_scale": "platinum", "codeowners": ["@icemanch"], "iot_class": "local_push", diff --git a/requirements_all.txt b/requirements_all.txt index 519aec7f489..06ab8ba9bb5 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -652,7 +652,7 @@ fjaraskupan==1.0.2 flipr-api==1.4.1 # homeassistant.components.flux_led -flux_led==0.24.17 +flux_led==0.24.21 # homeassistant.components.homekit fnvhash==0.1.0 diff --git a/requirements_test_all.txt b/requirements_test_all.txt index 62375d0725f..de2d98922d2 100644 --- a/requirements_test_all.txt +++ b/requirements_test_all.txt @@ -387,7 +387,7 @@ fjaraskupan==1.0.2 flipr-api==1.4.1 # homeassistant.components.flux_led -flux_led==0.24.17 +flux_led==0.24.21 # homeassistant.components.homekit fnvhash==0.1.0 From 6596ebfe4327b4a60afe72ecb4fdf90857b543c7 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 15 Nov 2021 16:13:37 -0600 Subject: [PATCH 14/16] Bump flux_led to 0.24.24 (#59740) --- homeassistant/components/flux_led/manifest.json | 2 +- requirements_all.txt | 2 +- requirements_test_all.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/homeassistant/components/flux_led/manifest.json b/homeassistant/components/flux_led/manifest.json index 203acb77385..cd37897af67 100644 --- a/homeassistant/components/flux_led/manifest.json +++ b/homeassistant/components/flux_led/manifest.json @@ -3,7 +3,7 @@ "name": "Flux LED/MagicHome", "config_flow": true, "documentation": "https://www.home-assistant.io/integrations/flux_led", - "requirements": ["flux_led==0.24.21"], + "requirements": ["flux_led==0.24.24"], "quality_scale": "platinum", "codeowners": ["@icemanch"], "iot_class": "local_push", diff --git a/requirements_all.txt b/requirements_all.txt index 06ab8ba9bb5..ab04da80a84 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -652,7 +652,7 @@ fjaraskupan==1.0.2 flipr-api==1.4.1 # homeassistant.components.flux_led -flux_led==0.24.21 +flux_led==0.24.24 # homeassistant.components.homekit fnvhash==0.1.0 diff --git a/requirements_test_all.txt b/requirements_test_all.txt index de2d98922d2..0c693ec61df 100644 --- a/requirements_test_all.txt +++ b/requirements_test_all.txt @@ -387,7 +387,7 @@ fjaraskupan==1.0.2 flipr-api==1.4.1 # homeassistant.components.flux_led -flux_led==0.24.21 +flux_led==0.24.24 # homeassistant.components.homekit fnvhash==0.1.0 From ca3c0057d33c14cb22619c0d23cffe5c24ed8f23 Mon Sep 17 00:00:00 2001 From: Philip Allgaier Date: Mon, 15 Nov 2021 23:30:48 +0100 Subject: [PATCH 15/16] Fix invalid string syntax in French OwnTracks config flow (#59752) --- homeassistant/components/owntracks/translations/fr.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/owntracks/translations/fr.json b/homeassistant/components/owntracks/translations/fr.json index 0e753a455e0..9120cdb8637 100644 --- a/homeassistant/components/owntracks/translations/fr.json +++ b/homeassistant/components/owntracks/translations/fr.json @@ -4,7 +4,7 @@ "single_instance_allowed": "D\u00e9j\u00e0 configur\u00e9. Une seule configuration possible." }, "create_entry": { - "default": "\n\n Sous Android, ouvrez [l'application OwnTracks] ( {android_url} ), acc\u00e9dez \u00e0 Pr\u00e9f\u00e9rences - > Connexion. Modifiez les param\u00e8tres suivants: \n - Mode: HTTP priv\u00e9 \n - H\u00f4te: {webhook_url} \n - Identification: \n - Nom d'utilisateur: ` ` \n - ID de p\u00e9riph\u00e9rique: ` ` \n\n Sur iOS, ouvrez [l'application OwnTracks] ( {ios_url} ), appuyez sur l'ic\u00f4ne (i) en haut \u00e0 gauche - > param\u00e8tres. Modifiez les param\u00e8tres suivants: \n - Mode: HTTP \n - URL: {webhook_url} \n - Activer l'authentification \n - ID utilisateur: ` ` \n\n {secret} \n \n Voir [la documentation] ( {docs_url} ) pour plus d'informations." + "default": "\n\n Sous Android, ouvrez [l'application OwnTracks]({android_url}), acc\u00e9dez \u00e0 Pr\u00e9f\u00e9rences - > Connexion. Modifiez les param\u00e8tres suivants: \n - Mode: HTTP priv\u00e9 \n - H\u00f4te: {webhook_url} \n - Identification: \n - Nom d'utilisateur: `''` \n - ID de p\u00e9riph\u00e9rique: `''` \n\n Sur iOS, ouvrez [l'application OwnTracks]({ios_url}), appuyez sur l'ic\u00f4ne (i) en haut \u00e0 gauche - > param\u00e8tres. Modifiez les param\u00e8tres suivants: \n - Mode: HTTP \n - URL: {webhook_url} \n - Activer l'authentification \n - ID utilisateur: `''` \n\n {secret} \n \n Voir [la documentation]({docs_url}) pour plus d'informations." }, "step": { "user": { From 0e12bce1741ccffc222e05362923bc383f4ab7bd Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Mon, 15 Nov 2021 14:37:30 -0800 Subject: [PATCH 16/16] Bumped version to 2021.11.4 --- homeassistant/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/const.py b/homeassistant/const.py index 7b9d8e4165d..5005540dbf2 100644 --- a/homeassistant/const.py +++ b/homeassistant/const.py @@ -5,7 +5,7 @@ from typing import Final MAJOR_VERSION: Final = 2021 MINOR_VERSION: Final = 11 -PATCH_VERSION: Final = "3" +PATCH_VERSION: Final = "4" __short_version__: Final = f"{MAJOR_VERSION}.{MINOR_VERSION}" __version__: Final = f"{__short_version__}.{PATCH_VERSION}" REQUIRED_PYTHON_VER: Final[tuple[int, int, int]] = (3, 8, 0)