diff --git a/docs/docs/python-sdk/reference/compatibility.mdx b/docs/docs/python-sdk/reference/compatibility.mdx index a27b918e..05053246 100644 --- a/docs/docs/python-sdk/reference/compatibility.mdx +++ b/docs/docs/python-sdk/reference/compatibility.mdx @@ -13,6 +13,7 @@ Each Infrahub release pins a specific SDK version. Using the matching SDK versio | Infrahub | Required SDK | Release date | | --- | --- | --- | +| 1.11.x | >= 1.23.0 | August 2026 | | 1.10.x | >= 1.22.0 | June 2026 | | 1.9.x | >= 1.20.0 | April 2026 | | 1.8.x | >= 1.19.0 | March 2026 | @@ -36,6 +37,8 @@ The table below shows the exact SDK version pinned to each Infrahub release. | Infrahub | SDK version | Infrahub release date | | --- | --- | --- | +| 1.11.0 | 1.23.0 | 2026-08-19 | +| 1.10.9 | 1.22.3 | 2026-08-19 | | 1.10.8 | 1.22.2 | 2026-08-14 | | 1.10.7 | 1.22.2 | 2026-08-11 | | 1.10.6 | 1.22.2 | 2026-07-28 | diff --git a/docs/docs_generation/compatibility.py b/docs/docs_generation/compatibility.py index d3d8c829..a0e2c8fb 100644 --- a/docs/docs_generation/compatibility.py +++ b/docs/docs_generation/compatibility.py @@ -74,6 +74,7 @@ class FeatureRequirement: # Mapping of Infrahub minor version series to minimum SDK versions. # Auto-updated by update_compatibility.py. VERSION_RANGES: list[VersionRange] = [ + VersionRange(infrahub="1.11.x", min_sdk="1.23.0", date="August 2026"), VersionRange(infrahub="1.10.x", min_sdk="1.22.0", date="June 2026"), VersionRange(infrahub="1.9.x", min_sdk="1.20.0", date="April 2026"), VersionRange(infrahub="1.8.x", min_sdk="1.19.0", date="March 2026"), @@ -91,6 +92,8 @@ 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.11.0", sdk="1.23.0", date="2026-08-19"), + ReleaseMapping(infrahub="1.10.9", sdk="1.22.3", date="2026-08-19"), ReleaseMapping(infrahub="1.10.8", sdk="1.22.2", date="2026-08-14"), ReleaseMapping(infrahub="1.10.7", sdk="1.22.2", date="2026-08-11"), ReleaseMapping(infrahub="1.10.6", sdk="1.22.2", date="2026-07-28"),