You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -64,6 +64,7 @@ Docs: https://docs.openclaw.ai
64
64
- Agents/sessions: preserve announce `threadId` when `sessions.list` fallback rehydrates agent-to-agent announce targets so final announce messages stay in the originating thread/topic. (#63506) Thanks @SnowSky1.
65
65
- Browser/plugin SDK: route browser auth, profile, host-inspection, and doctor readiness helpers through browser plugin public facades so core compatibility helpers stop carrying duplicate runtime implementations. (#63957) Thanks @joshavant.
66
66
- Browser/act: centralize `/act` request normalization and execution dispatch while adding stable machine-readable route-level error codes for invalid requests, selector misuse, evaluate-disabled gating, target mismatch, and existing-session unsupported actions. (#63977) Thanks @joshavant.
67
+
- Windows/exec: settle supervisor waits from child exit state after stdout and stderr drain even when `close` never arrives, so CLI commands stop hanging or dying with forced `SIGKILL` on Windows. (#64072) Thanks @obviyus.
if [[ "${DISABLE_GRAPHICS_FLAGS_LOWER}"=="1"||"${DISABLE_GRAPHICS_FLAGS_LOWER}"=="true"||"${DISABLE_GRAPHICS_FLAGS_LOWER}"=="yes"||"${DISABLE_GRAPHICS_FLAGS_LOWER}"=="on" ]];then
127
+
if [[ "${DISABLE_GRAPHICS_FLAGS_LOWER}"=~ ^(1|true|yes|on)$ ]];then
if [[ "${DISABLE_EXTENSIONS_LOWER}"=="1"||"${DISABLE_EXTENSIONS_LOWER}"=="true"||"${DISABLE_EXTENSIONS_LOWER}"=="yes"||"${DISABLE_EXTENSIONS_LOWER}"=="on" ]];then
80
-
CHROME_ARGS+=(
81
-
"--disable-extensions"
82
-
)
136
+
if [[ "${DISABLE_EXTENSIONS_LOWER}"=~ ^(1|true|yes|on)$ ]];then
137
+
CHROME_ARGS+=("--disable-extensions")
83
138
fi
84
139
85
140
if [[ "${RENDERER_PROCESS_LIMIT}"=~ ^[0-9]+$ &&"${RENDERER_PROCESS_LIMIT}"-gt 0 ]];then
`Sandbox browser CDP did not become reachable on 127.0.0.1:${mappedCdp} within ${params.cfg.browser.autoStartTimeoutMs}ms.`,
353
+
`Sandbox browser CDP did not become reachable on 127.0.0.1:${mappedCdp} within ${params.cfg.browser.autoStartTimeoutMs}ms. The hung container has been forcefully removed.`,
0 commit comments