Bump zeroconf to 0.103.0 (#100012)
parent
602e36aa12
commit
3b588a839c
|
@ -8,5 +8,5 @@
|
|||
"iot_class": "local_push",
|
||||
"loggers": ["zeroconf"],
|
||||
"quality_scale": "internal",
|
||||
"requirements": ["zeroconf==0.102.0"]
|
||||
"requirements": ["zeroconf==0.103.0"]
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue