Bump snapcast to 2.3.6 (#113606)
parent
6a6f3d46a9
commit
26c1b7e72e
|
@ -6,5 +6,5 @@
|
|||
"documentation": "https://www.home-assistant.io/integrations/snapcast",
|
||||
"iot_class": "local_push",
|
||||
"loggers": ["construct", "snapcast"],
|
||||
"requirements": ["snapcast==2.3.3"]
|
||||
"requirements": ["snapcast==2.3.6"]
|
||||
}
|
||||
|
|
|
@ -66,7 +66,7 @@ class HomeAssistantSnapcast:
|
|||
self.server.set_on_connect_callback(None)
|
||||
self.server.set_on_disconnect_callback(None)
|
||||
self.server.set_new_client_callback(None)
|
||||
await self.server.stop()
|
||||
self.server.stop()
|
||||
|
||||
def on_update(self) -> None:
|
||||
"""Update all entities.
|
||||
|
@ -100,8 +100,8 @@ class HomeAssistantSnapcast:
|
|||
]
|
||||
del_entities.extend([x for x in self.clients if x not in clients])
|
||||
|
||||
_LOGGER.debug("New clients: %s", str(new_clients))
|
||||
_LOGGER.debug("New groups: %s", str(new_groups))
|
||||
_LOGGER.debug("New clients: %s", str([c.name for c in new_clients]))
|
||||
_LOGGER.debug("New groups: %s", str([g.name for g in new_groups]))
|
||||
_LOGGER.debug("Delete: %s", str(del_entities))
|
||||
|
||||
ent_reg = er.async_get(self.hass)
|
||||
|
|
|
@ -2556,7 +2556,7 @@ smart-meter-texas==0.4.7
|
|||
smhi-pkg==1.0.16
|
||||
|
||||
# homeassistant.components.snapcast
|
||||
snapcast==2.3.3
|
||||
snapcast==2.3.6
|
||||
|
||||
# homeassistant.components.sonos
|
||||
soco==0.30.2
|
||||
|
|
|
@ -1960,7 +1960,7 @@ smart-meter-texas==0.4.7
|
|||
smhi-pkg==1.0.16
|
||||
|
||||
# homeassistant.components.snapcast
|
||||
snapcast==2.3.3
|
||||
snapcast==2.3.6
|
||||
|
||||
# homeassistant.components.sonos
|
||||
soco==0.30.2
|
||||
|
|
Loading…
Reference in New Issue