Bump zeroconf to 0.103.0 (#100012)

pull/100020/head
J. Nick Koston 2023-09-09 19:49:26 -05:00 committed by GitHub
parent 602e36aa12
commit 3b588a839c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 5 deletions

View File

@ -8,5 +8,5 @@
"iot_class": "local_push",
"loggers": ["zeroconf"],
"quality_scale": "internal",
"requirements": ["zeroconf==0.102.0"]
"requirements": ["zeroconf==0.103.0"]
}

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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)