From 8ef9c48a628c09c3b054907dd6e599f4016f4577 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Boschi?= Date: Tue, 24 Mar 2026 17:42:41 +0100 Subject: [PATCH] fix: add strands to changelog generator valid integrations --- hindsight-dev/hindsight_dev/generate_changelog.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hindsight-dev/hindsight_dev/generate_changelog.py b/hindsight-dev/hindsight_dev/generate_changelog.py index bd006d99..dfc0a8ae 100644 --- a/hindsight-dev/hindsight_dev/generate_changelog.py +++ b/hindsight-dev/hindsight_dev/generate_changelog.py @@ -28,7 +28,7 @@ REPO_PATH = Path(__file__).parent.parent.parent CHANGELOG_PATH = REPO_PATH / "hindsight-docs" / "src" / "pages" / "changelog" / "index.md" INTEGRATION_CHANGELOG_DIR = REPO_PATH / "hindsight-docs" / "src" / "pages" / "changelog" / "integrations" -VALID_INTEGRATIONS = ["litellm", "pydantic-ai", "crewai", "ai-sdk", "chat", "openclaw", "langgraph", "nemoclaw"] +VALID_INTEGRATIONS = ["litellm", "pydantic-ai", "crewai", "ai-sdk", "chat", "openclaw", "langgraph", "nemoclaw", "strands"] class ChangelogEntry(BaseModel): @@ -506,6 +506,7 @@ def _get_package_name(integration: str) -> str: "openclaw": "@vectorize-io/hindsight-openclaw", "langgraph": "hindsight-langgraph", "nemoclaw": "@vectorize-io/hindsight-nemoclaw", + "strands": "hindsight-strands", } return packages[integration] @@ -526,6 +527,7 @@ def _integration_display_name(integration: str) -> str: "openclaw": "OpenClaw", "langgraph": "LangGraph", "nemoclaw": "NemoClaw", + "strands": "Strands", } return names.get(integration, integration)