File tree Expand file tree Collapse file tree
custom_components/openclaw Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33All 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
Original file line number Diff line number Diff 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 (
Original file line number Diff line number Diff line change 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}
You can’t perform that action at this time.
0 commit comments