Bump zwave-js-server-python to 0.65.0 (#147561)

* Bump zwave-js-server-python to 0.65.0

* update tests
This commit is contained in:
Petar Petrov 2025-06-26 10:11:25 +03:00 committed by GitHub
parent 3b64db5f76
commit 651b33d49b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 9 additions and 6 deletions

View File

@ -9,7 +9,7 @@
"integration_type": "hub", "integration_type": "hub",
"iot_class": "local_push", "iot_class": "local_push",
"loggers": ["zwave_js_server"], "loggers": ["zwave_js_server"],
"requirements": ["pyserial==3.5", "zwave-js-server-python==0.64.0"], "requirements": ["pyserial==3.5", "zwave-js-server-python==0.65.0"],
"usb": [ "usb": [
{ {
"vid": "0658", "vid": "0658",

2
requirements_all.txt generated
View File

@ -3205,7 +3205,7 @@ ziggo-mediabox-xl==1.1.0
zm-py==0.5.4 zm-py==0.5.4
# homeassistant.components.zwave_js # homeassistant.components.zwave_js
zwave-js-server-python==0.64.0 zwave-js-server-python==0.65.0
# homeassistant.components.zwave_me # homeassistant.components.zwave_me
zwave-me-ws==0.4.3 zwave-me-ws==0.4.3

View File

@ -2637,7 +2637,7 @@ zeversolar==0.3.2
zha==0.0.61 zha==0.0.61
# homeassistant.components.zwave_js # homeassistant.components.zwave_js
zwave-js-server-python==0.64.0 zwave-js-server-python==0.65.0
# homeassistant.components.zwave_me # homeassistant.components.zwave_me
zwave-me-ws==0.4.3 zwave-me-ws==0.4.3

View File

@ -5649,8 +5649,9 @@ async def test_restore_nvm(
{ {
"command": "controller.restore_nvm", "command": "controller.restore_nvm",
"nvmData": "dGVzdA==", "nvmData": "dGVzdA==",
"migrateOptions": {},
}, },
require_schema=14, require_schema=42,
) )
assert entry.unique_id == "1234" assert entry.unique_id == "1234"
@ -5684,8 +5685,9 @@ async def test_restore_nvm(
{ {
"command": "controller.restore_nvm", "command": "controller.restore_nvm",
"nvmData": "dGVzdA==", "nvmData": "dGVzdA==",
"migrateOptions": {},
}, },
require_schema=14, require_schema=42,
) )
assert ( assert (
"Failed to get server version, cannot update config entry" "Failed to get server version, cannot update config entry"
@ -5738,8 +5740,9 @@ async def test_restore_nvm(
{ {
"command": "controller.restore_nvm", "command": "controller.restore_nvm",
"nvmData": "dGVzdA==", "nvmData": "dGVzdA==",
"migrateOptions": {},
}, },
require_schema=14, require_schema=42,
) )
client.async_send_command.reset_mock() client.async_send_command.reset_mock()