diff --git a/homeassistant/components/zeroconf/manifest.json b/homeassistant/components/zeroconf/manifest.json index e97c430d35d..d3fd3654997 100644 --- a/homeassistant/components/zeroconf/manifest.json +++ b/homeassistant/components/zeroconf/manifest.json @@ -8,5 +8,5 @@ "iot_class": "local_push", "loggers": ["zeroconf"], "quality_scale": "internal", - "requirements": ["zeroconf==0.102.0"] + "requirements": ["zeroconf==0.103.0"] } diff --git a/homeassistant/package_constraints.txt b/homeassistant/package_constraints.txt index 0857591e120..f9144efba8d 100644 --- a/homeassistant/package_constraints.txt +++ b/homeassistant/package_constraints.txt @@ -53,7 +53,7 @@ voluptuous-serialize==2.6.0 voluptuous==0.13.1 webrtcvad==2.0.10 yarl==1.9.2 -zeroconf==0.102.0 +zeroconf==0.103.0 # Constrain pycryptodome to avoid vulnerability # see https://github.com/home-assistant/core/pull/16238 diff --git a/requirements_all.txt b/requirements_all.txt index 371765cb1d1..f43b02e847e 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -2767,7 +2767,7 @@ zamg==0.3.0 zengge==0.2 # homeassistant.components.zeroconf -zeroconf==0.102.0 +zeroconf==0.103.0 # homeassistant.components.zeversolar zeversolar==0.3.1 diff --git a/requirements_test_all.txt b/requirements_test_all.txt index 0e01d005d98..f57a5ac4a3d 100644 --- a/requirements_test_all.txt +++ b/requirements_test_all.txt @@ -2043,7 +2043,7 @@ youtubeaio==1.1.5 zamg==0.3.0 # homeassistant.components.zeroconf -zeroconf==0.102.0 +zeroconf==0.103.0 # homeassistant.components.zeversolar zeversolar==0.3.1 diff --git a/tests/components/zeroconf/test_init.py b/tests/components/zeroconf/test_init.py index b07e2d5880a..a6ff257d78c 100644 --- a/tests/components/zeroconf/test_init.py +++ b/tests/components/zeroconf/test_init.py @@ -220,7 +220,7 @@ async def test_setup_with_overly_long_url_and_name( " string long string long string long string long string" ), ), patch( - "homeassistant.components.zeroconf.AsyncServiceInfo.request", + "homeassistant.components.zeroconf.AsyncServiceInfo.async_request", ): assert await async_setup_component(hass, zeroconf.DOMAIN, {zeroconf.DOMAIN: {}}) hass.bus.async_fire(EVENT_HOMEASSISTANT_START) @@ -1219,6 +1219,8 @@ async def test_setup_with_disallowed_characters_in_local_name( hass.config, "location_name", "My.House", + ), patch( + "homeassistant.components.zeroconf.AsyncServiceInfo.async_request", ): assert await async_setup_component(hass, zeroconf.DOMAIN, {zeroconf.DOMAIN: {}}) hass.bus.async_fire(EVENT_HOMEASSISTANT_START)