From 8f9b7909ea113c3e3153fa3af4541401db1753e6 Mon Sep 17 00:00:00 2001 From: opsmill-bot Date: Tue, 9 Jun 2026 17:10:55 +0000 Subject: [PATCH] docs: update compatibility matrix --- docs/docs/python-sdk/reference/compatibility.mdx | 6 ++++++ docs/docs_generation/compatibility.py | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/docs/docs/python-sdk/reference/compatibility.mdx b/docs/docs/python-sdk/reference/compatibility.mdx index 8763c4e1..ba4a7ec1 100644 --- a/docs/docs/python-sdk/reference/compatibility.mdx +++ b/docs/docs/python-sdk/reference/compatibility.mdx @@ -32,10 +32,16 @@ The table below shows the exact SDK version pinned to each Infrahub release. | Infrahub | SDK version | Infrahub release date | | --- | --- | --- | +| 1.9.8 | 1.20.1 | 2026-06-09 | +| 1.9.7 | 1.20.1 | 2026-06-03 | +| 1.9.6 | 1.20.1 | 2026-05-20 | +| 1.9.5 | 1.20.0 | 2026-05-18 | +| 1.9.4 | 1.20.0 | 2026-05-13 | | 1.9.3 | 1.20.0 | 2026-05-05 | | 1.9.2 | 1.20.0 | 2026-04-30 | | 1.9.1 | 1.20.0 | 2026-04-29 | | 1.9.0 | 1.20.0 | 2026-04-24 | +| 1.8.7 | 1.19.0 | 2026-06-04 | | 1.8.6 | 1.19.0 | 2026-04-21 | | 1.8.5 | 1.19.0 | 2026-04-17 | | 1.8.4 | 1.19.0 | 2026-04-02 | diff --git a/docs/docs_generation/compatibility.py b/docs/docs_generation/compatibility.py index 0f9c6f25..65b0a157 100644 --- a/docs/docs_generation/compatibility.py +++ b/docs/docs_generation/compatibility.py @@ -90,10 +90,16 @@ class FeatureRequirement: # Detailed mapping of every Infrahub release to its pinned SDK version. # Auto-updated by update_compatibility.py. RELEASE_MAPPINGS: list[ReleaseMapping] = [ + ReleaseMapping(infrahub="1.9.8", sdk="1.20.1", date="2026-06-09"), + ReleaseMapping(infrahub="1.9.7", sdk="1.20.1", date="2026-06-03"), + ReleaseMapping(infrahub="1.9.6", sdk="1.20.1", date="2026-05-20"), + ReleaseMapping(infrahub="1.9.5", sdk="1.20.0", date="2026-05-18"), + ReleaseMapping(infrahub="1.9.4", sdk="1.20.0", date="2026-05-13"), ReleaseMapping(infrahub="1.9.3", sdk="1.20.0", date="2026-05-05"), ReleaseMapping(infrahub="1.9.2", sdk="1.20.0", date="2026-04-30"), ReleaseMapping(infrahub="1.9.1", sdk="1.20.0", date="2026-04-29"), ReleaseMapping(infrahub="1.9.0", sdk="1.20.0", date="2026-04-24"), + ReleaseMapping(infrahub="1.8.7", sdk="1.19.0", date="2026-06-04"), ReleaseMapping(infrahub="1.8.6", sdk="1.19.0", date="2026-04-21"), ReleaseMapping(infrahub="1.8.5", sdk="1.19.0", date="2026-04-17"), ReleaseMapping(infrahub="1.8.4", sdk="1.19.0", date="2026-04-02"),