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
7 changes: 7 additions & 0 deletions docs/docs/python-sdk/reference/compatibility.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Each Infrahub release pins a specific SDK version. Using the matching SDK versio
<!-- vale off -->
| Infrahub | Required SDK | Release date |
| --- | --- | --- |
| 1.9.x | >= 1.20.0 | April 2026 |
| 1.8.x | >= 1.19.0 | March 2026 |
| 1.7.x | >= 1.18.1 | January 2026 |
| 1.6.x | >= 1.16.0 | December 2025 |
Expand All @@ -31,6 +32,12 @@ The table below shows the exact SDK version pinned to each Infrahub release.
<!-- vale off -->
| Infrahub | SDK version | Infrahub release date |
| --- | --- | --- |
| 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.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 |
| 1.8.3 | 1.19.0 | 2026-03-31 |
| 1.8.2 | 1.19.0 | 2026-03-25 |
Expand Down
7 changes: 7 additions & 0 deletions docs/docs_generation/compatibility.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,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.9.x", min_sdk="1.20.0", date="April 2026"),
VersionRange(infrahub="1.8.x", min_sdk="1.19.0", date="March 2026"),
VersionRange(infrahub="1.7.x", min_sdk="1.18.1", date="January 2026"),
VersionRange(infrahub="1.6.x", min_sdk="1.16.0", date="December 2025"),
Expand All @@ -85,6 +86,12 @@ 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.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.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"),
ReleaseMapping(infrahub="1.8.3", sdk="1.19.0", date="2026-03-31"),
ReleaseMapping(infrahub="1.8.2", sdk="1.19.0", date="2026-03-25"),
Expand Down