Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions homeassistant/components/discovery/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"name": "Discovery",
"documentation": "https://www.home-assistant.io/integrations/discovery",
"requirements": ["netdisco==2.6.0"],
"after_dependencies": ["zeroconf"],
"codeowners": [],
"quality_scale": "internal"
}
1 change: 1 addition & 0 deletions homeassistant/components/dyson/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"name": "Dyson",
"documentation": "https://www.home-assistant.io/integrations/dyson",
"requirements": ["libpurecool==0.6.1"],
"after_dependencies": ["zeroconf"],
"codeowners": ["@etheralm"]
}
1 change: 1 addition & 0 deletions homeassistant/components/homekit_controller/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"config_flow": true,
"documentation": "https://www.home-assistant.io/integrations/homekit_controller",
"requirements": ["aiohomekit[IP]==0.2.38"],
"after_dependencies": ["zeroconf"],
"zeroconf": ["_hap._tcp.local."],
"codeowners": ["@Jc2k"]
}
1 change: 1 addition & 0 deletions homeassistant/components/soundtouch/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"name": "Bose Soundtouch",
"documentation": "https://www.home-assistant.io/integrations/soundtouch",
"requirements": ["libsoundtouch==0.8"],
"after_dependencies": ["zeroconf"],
"codeowners": []
}
1 change: 1 addition & 0 deletions homeassistant/components/ssdp/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"name": "Simple Service Discovery Protocol (SSDP)",
"documentation": "https://www.home-assistant.io/integrations/ssdp",
"requirements": ["defusedxml==0.6.0", "netdisco==2.6.0"],
"after_dependencies": ["zeroconf"],
"codeowners": []
}
1 change: 1 addition & 0 deletions homeassistant/components/vizio/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"name": "VIZIO SmartCast",
"documentation": "https://www.home-assistant.io/integrations/vizio",
"requirements": ["pyvizio==0.1.48"],
"after_dependencies": ["zeroconf"],
"codeowners": ["@raman325"],
"config_flow": true,
"zeroconf": ["_viziocast._tcp.local."],
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/xiaomi_miio/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"config_flow": true,
"documentation": "https://www.home-assistant.io/integrations/xiaomi_miio",
"requirements": ["construct==2.9.45", "python-miio==0.5.0.1"],
"after_dependencies": ["zeroconf"],
"codeowners": ["@rytilahti", "@syssi"],
"zeroconf": ["_miio._udp.local."]
}
2 changes: 1 addition & 1 deletion homeassistant/components/zeroconf/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"domain": "zeroconf",
"name": "Zero-configuration networking (zeroconf)",
"documentation": "https://www.home-assistant.io/integrations/zeroconf",
"requirements": ["zeroconf==0.26.3"],
"requirements": ["zeroconf==0.27.1"],
"dependencies": ["api"],
"codeowners": ["@robbiet480", "@Kane610"],
"quality_scale": "internal"
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/package_constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ruamel.yaml==0.15.100
sqlalchemy==1.3.17
voluptuous-serialize==2.3.0
voluptuous==0.11.7
zeroconf==0.26.3
zeroconf==0.27.1
Comment thread
bdraco marked this conversation as resolved.

pycryptodome>=3.6.6

Expand Down
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2239,7 +2239,7 @@ youtube_dl==2020.05.29
zengge==0.2

# homeassistant.components.zeroconf
zeroconf==0.26.3
zeroconf==0.27.1

# homeassistant.components.zha
zha-quirks==0.0.39
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -918,7 +918,7 @@ xmltodict==0.12.0
ya_ma==0.3.8

# homeassistant.components.zeroconf
zeroconf==0.26.3
zeroconf==0.27.1

# homeassistant.components.zha
zha-quirks==0.0.39
Expand Down
4 changes: 2 additions & 2 deletions tests/components/zeroconf/test_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def get_service_info_mock(service_type, name):
return ServiceInfo(
service_type,
name,
address=b"\n\x00\x00\x14",
addresses=[b"\n\x00\x00\x14"],
port=80,
weight=0,
priority=0,
Expand All @@ -56,7 +56,7 @@ def mock_homekit_info(service_type, name):
return ServiceInfo(
service_type,
name,
address=b"\n\x00\x00\x14",
addresses=[b"\n\x00\x00\x14"],
port=80,
weight=0,
priority=0,
Expand Down