Skip to content

Commit 335c48a

Browse files
author
techartdev
committed
Update changelog for version 0.1.59 and fix SSL verification in config flow
1 parent e0c0c7b commit 335c48a

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to the OpenClaw Home Assistant Integration will be documented in this file.
44

5+
## [0.1.59] - 2026-03-07
6+
7+
### Fixed
8+
- Fixed manual configuration incorrectly forcing `Verify SSL certificate` to remain enabled when the checkbox was unchecked.
9+
- This restores manual setup for self-signed HTTPS endpoints such as standalone OpenClaw `lan_https` deployments.
10+
511
## [0.1.58] - 2026-03-07
612

713
### Added

custom_components/openclaw/config_flow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ async def async_step_manual(
384384
port = user_input[CONF_GATEWAY_PORT]
385385
token = user_input[CONF_GATEWAY_TOKEN]
386386
use_ssl = user_input.get(CONF_USE_SSL, False)
387-
verify_ssl = user_input.get(CONF_VERIFY_SSL, True)
387+
verify_ssl = user_input.get(CONF_VERIFY_SSL, False)
388388

389389
try:
390390
connected = await _async_validate_connection(

custom_components/openclaw/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"iot_class": "local_polling",
99
"issue_tracker": "https://github.com/techartdev/OpenClawHomeAssistant/issues",
1010
"requirements": [],
11-
"version": "0.1.58",
11+
"version": "0.1.59",
1212
"dependencies": ["conversation"],
1313
"after_dependencies": ["hassio", "lovelace"]
1414
}

0 commit comments

Comments
 (0)