Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/docs/python-sdk/reference/compatibility.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand All @@ -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 |
Expand Down
3 changes: 3 additions & 0 deletions docs/docs_generation/compatibility.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand All @@ -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"),
Expand Down
Loading