mirror of
https://github.com/home-assistant/core.git
synced 2025-07-18 18:57:06 +00:00
Bump async-upnp-client to 0.38.0 (#105980)
This commit is contained in:
parent
1ae6f1e9e2
commit
64a2c64419
@ -8,7 +8,7 @@
|
||||
"documentation": "https://www.home-assistant.io/integrations/dlna_dmr",
|
||||
"iot_class": "local_push",
|
||||
"loggers": ["async_upnp_client"],
|
||||
"requirements": ["async-upnp-client==0.36.2", "getmac==0.8.2"],
|
||||
"requirements": ["async-upnp-client==0.38.0", "getmac==0.8.2"],
|
||||
"ssdp": [
|
||||
{
|
||||
"deviceType": "urn:schemas-upnp-org:device:MediaRenderer:1",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation": "https://www.home-assistant.io/integrations/dlna_dms",
|
||||
"iot_class": "local_polling",
|
||||
"quality_scale": "platinum",
|
||||
"requirements": ["async-upnp-client==0.36.2"],
|
||||
"requirements": ["async-upnp-client==0.38.0"],
|
||||
"ssdp": [
|
||||
{
|
||||
"deviceType": "urn:schemas-upnp-org:device:MediaServer:1",
|
||||
|
@ -39,7 +39,7 @@
|
||||
"samsungctl[websocket]==0.7.1",
|
||||
"samsungtvws[async,encrypted]==2.6.0",
|
||||
"wakeonlan==2.1.0",
|
||||
"async-upnp-client==0.36.2"
|
||||
"async-upnp-client==0.38.0"
|
||||
],
|
||||
"ssdp": [
|
||||
{
|
||||
|
@ -9,5 +9,5 @@
|
||||
"iot_class": "local_push",
|
||||
"loggers": ["async_upnp_client"],
|
||||
"quality_scale": "internal",
|
||||
"requirements": ["async-upnp-client==0.36.2"]
|
||||
"requirements": ["async-upnp-client==0.38.0"]
|
||||
}
|
||||
|
@ -157,7 +157,7 @@ class Device:
|
||||
_LOGGER.debug("Getting data for device: %s", self)
|
||||
igd_state = await self._igd_device.async_get_traffic_and_status_data()
|
||||
status_info = igd_state.status_info
|
||||
if status_info is not None and not isinstance(status_info, Exception):
|
||||
if status_info is not None and not isinstance(status_info, BaseException):
|
||||
wan_status = status_info.connection_status
|
||||
router_uptime = status_info.uptime
|
||||
else:
|
||||
@ -165,7 +165,7 @@ class Device:
|
||||
router_uptime = None
|
||||
|
||||
def get_value(value: Any) -> Any:
|
||||
if value is None or isinstance(value, Exception):
|
||||
if value is None or isinstance(value, BaseException):
|
||||
return None
|
||||
|
||||
return value
|
||||
|
@ -8,7 +8,7 @@
|
||||
"integration_type": "device",
|
||||
"iot_class": "local_polling",
|
||||
"loggers": ["async_upnp_client"],
|
||||
"requirements": ["async-upnp-client==0.36.2", "getmac==0.8.2"],
|
||||
"requirements": ["async-upnp-client==0.38.0", "getmac==0.8.2"],
|
||||
"ssdp": [
|
||||
{
|
||||
"st": "urn:schemas-upnp-org:device:InternetGatewayDevice:1"
|
||||
|
@ -17,7 +17,7 @@
|
||||
"iot_class": "local_push",
|
||||
"loggers": ["async_upnp_client", "yeelight"],
|
||||
"quality_scale": "platinum",
|
||||
"requirements": ["yeelight==0.7.14", "async-upnp-client==0.36.2"],
|
||||
"requirements": ["yeelight==0.7.14", "async-upnp-client==0.38.0"],
|
||||
"zeroconf": [
|
||||
{
|
||||
"type": "_miio._udp.local.",
|
||||
|
@ -6,7 +6,7 @@ aiohttp-zlib-ng==0.1.1
|
||||
aiohttp==3.9.1
|
||||
aiohttp_cors==0.7.0
|
||||
astral==2.2
|
||||
async-upnp-client==0.36.2
|
||||
async-upnp-client==0.38.0
|
||||
atomicwrites-homeassistant==1.4.1
|
||||
attrs==23.1.0
|
||||
awesomeversion==23.11.0
|
||||
|
@ -469,7 +469,7 @@ asterisk_mbox==0.5.0
|
||||
# homeassistant.components.ssdp
|
||||
# homeassistant.components.upnp
|
||||
# homeassistant.components.yeelight
|
||||
async-upnp-client==0.36.2
|
||||
async-upnp-client==0.38.0
|
||||
|
||||
# homeassistant.components.keyboard_remote
|
||||
asyncinotify==4.0.2
|
||||
|
@ -421,7 +421,7 @@ arcam-fmj==1.4.0
|
||||
# homeassistant.components.ssdp
|
||||
# homeassistant.components.upnp
|
||||
# homeassistant.components.yeelight
|
||||
async-upnp-client==0.36.2
|
||||
async-upnp-client==0.38.0
|
||||
|
||||
# homeassistant.components.sleepiq
|
||||
asyncsleepiq==1.4.0
|
||||
|
Loading…
x
Reference in New Issue
Block a user