mirror of
https://github.com/home-assistant/core.git
synced 2025-07-24 21:57:51 +00:00
Bump aiodns to 3.3.0 (#144115)
This commit is contained in:
parent
247d2e7efd
commit
e74f918382
@ -5,5 +5,5 @@
|
|||||||
"config_flow": true,
|
"config_flow": true,
|
||||||
"documentation": "https://www.home-assistant.io/integrations/dnsip",
|
"documentation": "https://www.home-assistant.io/integrations/dnsip",
|
||||||
"iot_class": "cloud_polling",
|
"iot_class": "cloud_polling",
|
||||||
"requirements": ["aiodns==3.2.0"]
|
"requirements": ["aiodns==3.3.0"]
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
aiodhcpwatcher==1.1.1
|
aiodhcpwatcher==1.1.1
|
||||||
aiodiscover==2.6.1
|
aiodiscover==2.6.1
|
||||||
aiodns==3.2.0
|
aiodns==3.3.0
|
||||||
aiohasupervisor==0.3.1
|
aiohasupervisor==0.3.1
|
||||||
aiohttp-asyncmdnsresolver==0.1.1
|
aiohttp-asyncmdnsresolver==0.1.1
|
||||||
aiohttp-fast-zlib==0.2.3
|
aiohttp-fast-zlib==0.2.3
|
||||||
|
@ -23,7 +23,7 @@ classifiers = [
|
|||||||
]
|
]
|
||||||
requires-python = ">=3.13.2"
|
requires-python = ">=3.13.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aiodns==3.2.0",
|
"aiodns==3.3.0",
|
||||||
# Integrations may depend on hassio integration without listing it to
|
# Integrations may depend on hassio integration without listing it to
|
||||||
# change behavior based on presence of supervisor. Deprecated with #127228
|
# change behavior based on presence of supervisor. Deprecated with #127228
|
||||||
# Lib can be removed with 2025.11
|
# Lib can be removed with 2025.11
|
||||||
|
2
requirements.txt
generated
2
requirements.txt
generated
@ -3,7 +3,7 @@
|
|||||||
-c homeassistant/package_constraints.txt
|
-c homeassistant/package_constraints.txt
|
||||||
|
|
||||||
# Home Assistant Core
|
# Home Assistant Core
|
||||||
aiodns==3.2.0
|
aiodns==3.3.0
|
||||||
aiohasupervisor==0.3.1
|
aiohasupervisor==0.3.1
|
||||||
aiohttp==3.11.18
|
aiohttp==3.11.18
|
||||||
aiohttp_cors==0.7.0
|
aiohttp_cors==0.7.0
|
||||||
|
2
requirements_all.txt
generated
2
requirements_all.txt
generated
@ -223,7 +223,7 @@ aiodhcpwatcher==1.1.1
|
|||||||
aiodiscover==2.6.1
|
aiodiscover==2.6.1
|
||||||
|
|
||||||
# homeassistant.components.dnsip
|
# homeassistant.components.dnsip
|
||||||
aiodns==3.2.0
|
aiodns==3.3.0
|
||||||
|
|
||||||
# homeassistant.components.duke_energy
|
# homeassistant.components.duke_energy
|
||||||
aiodukeenergy==0.3.0
|
aiodukeenergy==0.3.0
|
||||||
|
2
requirements_test_all.txt
generated
2
requirements_test_all.txt
generated
@ -211,7 +211,7 @@ aiodhcpwatcher==1.1.1
|
|||||||
aiodiscover==2.6.1
|
aiodiscover==2.6.1
|
||||||
|
|
||||||
# homeassistant.components.dnsip
|
# homeassistant.components.dnsip
|
||||||
aiodns==3.2.0
|
aiodns==3.3.0
|
||||||
|
|
||||||
# homeassistant.components.duke_energy
|
# homeassistant.components.duke_energy
|
||||||
aiodukeenergy==0.3.0
|
aiodukeenergy==0.3.0
|
||||||
|
@ -224,16 +224,20 @@ async def test_options_flow(hass: HomeAssistant) -> None:
|
|||||||
assert result["type"] is FlowResultType.FORM
|
assert result["type"] is FlowResultType.FORM
|
||||||
assert result["step_id"] == "init"
|
assert result["step_id"] == "init"
|
||||||
|
|
||||||
result = await hass.config_entries.options.async_configure(
|
with patch(
|
||||||
result["flow_id"],
|
"homeassistant.components.dnsip.config_flow.aiodns.DNSResolver",
|
||||||
user_input={
|
return_value=RetrieveDNS(),
|
||||||
CONF_RESOLVER: "8.8.8.8",
|
):
|
||||||
CONF_RESOLVER_IPV6: "2001:4860:4860::8888",
|
result = await hass.config_entries.options.async_configure(
|
||||||
CONF_PORT: 53,
|
result["flow_id"],
|
||||||
CONF_PORT_IPV6: 53,
|
user_input={
|
||||||
},
|
CONF_RESOLVER: "8.8.8.8",
|
||||||
)
|
CONF_RESOLVER_IPV6: "2001:4860:4860::8888",
|
||||||
await hass.async_block_till_done()
|
CONF_PORT: 53,
|
||||||
|
CONF_PORT_IPV6: 53,
|
||||||
|
},
|
||||||
|
)
|
||||||
|
await hass.async_block_till_done()
|
||||||
|
|
||||||
assert result["type"] is FlowResultType.CREATE_ENTRY
|
assert result["type"] is FlowResultType.CREATE_ENTRY
|
||||||
assert result["data"] == {
|
assert result["data"] == {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user