mirror of
https://github.com/headroomlabs-ai/headroom.git
synced 2026-08-27 14:17:10 -04:00
Derive source-tree versions from release history so headroom --version no longer reports stale project metadata. Restart stale idle proxies after an upgrade, but leave active sessions running to avoid interrupting ongoing conversations. Remove _version.py from version-sync ownership and make version verification catch package/plugin manifest drift.
66 lines
2.3 KiB
Python
66 lines
2.3 KiB
Python
#!/usr/bin/env python3
|
|
"""Verify all package manifest versions are in sync before publishing."""
|
|
|
|
import json
|
|
from pathlib import Path
|
|
|
|
try:
|
|
import tomllib
|
|
except ImportError: # pragma: no cover - Python 3.10 fallback
|
|
import tomli as tomllib
|
|
|
|
ROOT = Path(__file__).parent.parent
|
|
|
|
|
|
def _read_json_version(path: Path) -> str:
|
|
with open(path, encoding="utf-8") as f:
|
|
return str(json.load(f)["version"])
|
|
|
|
|
|
def _read_marketplace_versions(path: Path) -> dict[str, str]:
|
|
with open(path, encoding="utf-8") as f:
|
|
payload = json.load(f)
|
|
|
|
versions: dict[str, str] = {}
|
|
metadata = payload.get("metadata")
|
|
if isinstance(metadata, dict):
|
|
versions[f"{path}:metadata"] = str(metadata.get("version"))
|
|
plugins = payload.get("plugins")
|
|
if isinstance(plugins, list):
|
|
for index, plugin in enumerate(plugins):
|
|
if isinstance(plugin, dict):
|
|
versions[f"{path}:plugins[{index}]"] = str(plugin.get("version"))
|
|
return versions
|
|
|
|
|
|
def main() -> None:
|
|
with open(ROOT / "pyproject.toml", "rb") as f:
|
|
py_ver = tomllib.load(f)["project"]["version"]
|
|
|
|
versions = {
|
|
"pyproject.toml": py_ver,
|
|
"plugins/openclaw/package.json": _read_json_version(ROOT / "plugins/openclaw/package.json"),
|
|
"sdk/typescript/package.json": _read_json_version(ROOT / "sdk/typescript/package.json"),
|
|
"plugins/headroom-agent-hooks/.claude-plugin/plugin.json": _read_json_version(
|
|
ROOT / "plugins/headroom-agent-hooks/.claude-plugin/plugin.json"
|
|
),
|
|
"plugins/headroom-agent-hooks/.github/plugin/plugin.json": _read_json_version(
|
|
ROOT / "plugins/headroom-agent-hooks/.github/plugin/plugin.json"
|
|
),
|
|
}
|
|
versions.update(_read_marketplace_versions(ROOT / ".claude-plugin/marketplace.json"))
|
|
versions.update(_read_marketplace_versions(ROOT / ".github/plugin/marketplace.json"))
|
|
|
|
if not all(v == py_ver for v in versions.values()):
|
|
print("Version mismatch detected:")
|
|
for file, ver in versions.items():
|
|
print(f" {file}: {ver}")
|
|
print(f"Expected all to be: {py_ver}")
|
|
raise SystemExit(1)
|
|
|
|
print(f"All versions aligned at {py_ver}")
|
|
print("Packages:", ", ".join(versions.keys()))
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|