Compare commits

...

2 Commits

Author SHA1 Message Date
Robin Waslander
85c4eb7d26
gitignore: ignore .dev-state openclaw#41848 thanks @smysle 2026-03-10 13:19:08 +01:00
smysle
b7be3f614a
chore: add .dev-state to .gitignore
The .dev-state file is generated at runtime by the gateway process and
should not be tracked in version control.

Closes #41781
2026-03-10 13:18:50 +01:00
2 changed files with 2 additions and 0 deletions

1
.gitignore vendored
View File

@ -121,3 +121,4 @@ dist/protocol.schema.json
# Synthing
**/.stfolder/
.dev-state

View File

@ -7,6 +7,7 @@ Docs: https://docs.openclaw.ai
### Changes
- Gateway/node pending work: add narrow in-memory pending-work queue primitives (`node.pending.enqueue` / `node.pending.drain`) and wake-helper reuse as a foundation for dormant-node work delivery. (#41409) Thanks @mbelinky.
- Git/runtime state: ignore the gateway-generated `.dev-state` file so local runtime state does not show up as untracked repo noise. (#41848) Thanks @smysle.
- ACP/sessions_spawn: add optional `resumeSessionId` for `runtime: "acp"` so spawned ACP sessions can resume an existing ACPX/Codex conversation instead of always starting fresh. (#41847) Thanks @pejmanjohn.
### Breaking