mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 11:17:21 +00:00
Bump velbus-aio to 2021.9.4 (#56478)
* Bump version, move the cache-dir to the home-assistant config * Moved the cahce into the storage dir * Bump version, 2021.9.3 will use pathlib * Bump version to 2021.9.4 * Clean config path * Remove leading slash Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
This commit is contained in:
parent
e078f4ce14
commit
8aff51042b
@ -62,7 +62,10 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
||||
"""Establish connection with velbus."""
|
||||
hass.data.setdefault(DOMAIN, {})
|
||||
|
||||
controller = Velbus(entry.data[CONF_PORT])
|
||||
controller = Velbus(
|
||||
entry.data[CONF_PORT],
|
||||
cache_dir=hass.config.path(".storage/velbuscache/"),
|
||||
)
|
||||
hass.data[DOMAIN][entry.entry_id] = {}
|
||||
hass.data[DOMAIN][entry.entry_id]["cntrl"] = controller
|
||||
hass.data[DOMAIN][entry.entry_id]["tsk"] = hass.async_create_task(
|
||||
|
@ -2,7 +2,7 @@
|
||||
"domain": "velbus",
|
||||
"name": "Velbus",
|
||||
"documentation": "https://www.home-assistant.io/integrations/velbus",
|
||||
"requirements": ["velbus-aio==2021.9.1"],
|
||||
"requirements": ["velbus-aio==2021.9.4"],
|
||||
"config_flow": true,
|
||||
"codeowners": ["@Cereal2nd", "@brefra"],
|
||||
"iot_class": "local_push"
|
||||
|
@ -2367,7 +2367,7 @@ uvcclient==0.11.0
|
||||
vallox-websocket-api==2.8.1
|
||||
|
||||
# homeassistant.components.velbus
|
||||
velbus-aio==2021.9.1
|
||||
velbus-aio==2021.9.4
|
||||
|
||||
# homeassistant.components.venstar
|
||||
venstarcolortouch==0.14
|
||||
|
@ -1338,7 +1338,7 @@ url-normalize==1.4.1
|
||||
uvcclient==0.11.0
|
||||
|
||||
# homeassistant.components.velbus
|
||||
velbus-aio==2021.9.1
|
||||
velbus-aio==2021.9.4
|
||||
|
||||
# homeassistant.components.venstar
|
||||
venstarcolortouch==0.14
|
||||
|
Loading…
x
Reference in New Issue
Block a user