chore(release): 0.6.0 #14

Merged
pufereq merged 33 commits from release/0.6.0 into main 2026-03-05 19:59:05 +00:00
14 changed files with 336 additions and 100 deletions
Showing only changes of commit 72d51b451f - Show all commits

View File

@@ -124,6 +124,11 @@ class BackendServer:
def _save_known_clients(self) -> None:
"""Save the list of known clients to a YAML file."""
with open("config/known_clients.yaml", "w") as f:
f.write(
"# This file is automatically generated by BackendServer.\n"
+ "# Do not edit manually.\n"
+ f"# Generated at: {time.strftime('%Y-%m-%d %H:%M:%S', time.localtime())}\n\n"
)
yaml.safe_dump({"known_clients": self.known_clients}, f)
self.logger.debug("Saved known clients")