mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 11:17:21 +00:00
Update xknx to 2.3.0 - add some DPTs, Routing security (#85658)
Update xknx to 2.3.0
This commit is contained in:
parent
856895ddf5
commit
db428f2141
@ -3,7 +3,7 @@
|
|||||||
"name": "KNX",
|
"name": "KNX",
|
||||||
"config_flow": true,
|
"config_flow": true,
|
||||||
"documentation": "https://www.home-assistant.io/integrations/knx",
|
"documentation": "https://www.home-assistant.io/integrations/knx",
|
||||||
"requirements": ["xknx==2.2.0"],
|
"requirements": ["xknx==2.3.0"],
|
||||||
"codeowners": ["@Julius2342", "@farmio", "@marvin-w"],
|
"codeowners": ["@Julius2342", "@farmio", "@marvin-w"],
|
||||||
"quality_scale": "platinum",
|
"quality_scale": "platinum",
|
||||||
"iot_class": "local_push",
|
"iot_class": "local_push",
|
||||||
|
@ -2622,7 +2622,7 @@ xboxapi==2.0.1
|
|||||||
xiaomi-ble==0.14.3
|
xiaomi-ble==0.14.3
|
||||||
|
|
||||||
# homeassistant.components.knx
|
# homeassistant.components.knx
|
||||||
xknx==2.2.0
|
xknx==2.3.0
|
||||||
|
|
||||||
# homeassistant.components.bluesound
|
# homeassistant.components.bluesound
|
||||||
# homeassistant.components.fritz
|
# homeassistant.components.fritz
|
||||||
|
@ -1844,7 +1844,7 @@ xbox-webapi==2.0.11
|
|||||||
xiaomi-ble==0.14.3
|
xiaomi-ble==0.14.3
|
||||||
|
|
||||||
# homeassistant.components.knx
|
# homeassistant.components.knx
|
||||||
xknx==2.2.0
|
xknx==2.3.0
|
||||||
|
|
||||||
# homeassistant.components.bluesound
|
# homeassistant.components.bluesound
|
||||||
# homeassistant.components.fritz
|
# homeassistant.components.fritz
|
||||||
|
@ -58,6 +58,9 @@ class KNXTestKit:
|
|||||||
|
|
||||||
async def patch_xknx_start():
|
async def patch_xknx_start():
|
||||||
"""Patch `xknx.start` for unittests."""
|
"""Patch `xknx.start` for unittests."""
|
||||||
|
self.xknx.cemi_handler.send_telegram = AsyncMock(
|
||||||
|
side_effect=self._outgoing_telegrams.put
|
||||||
|
)
|
||||||
# after XKNX.__init__() to not overwrite it by the config entry again
|
# after XKNX.__init__() to not overwrite it by the config entry again
|
||||||
# before StateUpdater starts to avoid slow down of tests
|
# before StateUpdater starts to avoid slow down of tests
|
||||||
self.xknx.rate_limit = 0
|
self.xknx.rate_limit = 0
|
||||||
@ -72,7 +75,6 @@ class KNXTestKit:
|
|||||||
mock = Mock()
|
mock = Mock()
|
||||||
mock.start = AsyncMock(side_effect=patch_xknx_start)
|
mock.start = AsyncMock(side_effect=patch_xknx_start)
|
||||||
mock.stop = AsyncMock()
|
mock.stop = AsyncMock()
|
||||||
mock.send_telegram = AsyncMock(side_effect=self._outgoing_telegrams.put)
|
|
||||||
return mock
|
return mock
|
||||||
|
|
||||||
def fish_xknx(*args, **kwargs):
|
def fish_xknx(*args, **kwargs):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user