Skip to content

Commit 7562f84

Browse files
committed
docs: update compatibility matrix
1 parent 26cd992 commit 7562f84

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

docs/docs/python-sdk/reference/compatibility.mdx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Each Infrahub release pins a specific SDK version. Using the matching SDK versio
1212
<!-- vale off -->
1313
| Infrahub | Required SDK | Release date |
1414
| --- | --- | --- |
15+
| 1.9.x | >= 1.20.0 | April 2026 |
1516
| 1.8.x | >= 1.19.0 | March 2026 |
1617
| 1.7.x | >= 1.18.1 | January 2026 |
1718
| 1.6.x | >= 1.16.0 | December 2025 |
@@ -31,6 +32,11 @@ The table below shows the exact SDK version pinned to each Infrahub release.
3132
<!-- vale off -->
3233
| Infrahub | SDK version | Infrahub release date |
3334
| --- | --- | --- |
35+
| 1.9.2 | 1.20.0 | 2026-04-30 |
36+
| 1.9.1 | 1.20.0 | 2026-04-29 |
37+
| 1.9.0 | 1.20.0 | 2026-04-24 |
38+
| 1.8.6 | 1.19.0 | 2026-04-21 |
39+
| 1.8.5 | 1.19.0 | 2026-04-17 |
3440
| 1.8.4 | 1.19.0 | 2026-04-02 |
3541
| 1.8.3 | 1.19.0 | 2026-03-31 |
3642
| 1.8.2 | 1.19.0 | 2026-03-25 |

docs/docs_generation/compatibility.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ class FeatureRequirement:
7070
# Mapping of Infrahub minor version series to minimum SDK versions.
7171
# Auto-updated by update_compatibility.py.
7272
VERSION_RANGES: list[VersionRange] = [
73+
VersionRange(infrahub="1.9.x", min_sdk="1.20.0", date="April 2026"),
7374
VersionRange(infrahub="1.8.x", min_sdk="1.19.0", date="March 2026"),
7475
VersionRange(infrahub="1.7.x", min_sdk="1.18.1", date="January 2026"),
7576
VersionRange(infrahub="1.6.x", min_sdk="1.16.0", date="December 2025"),
@@ -85,6 +86,11 @@ class FeatureRequirement:
8586
# Detailed mapping of every Infrahub release to its pinned SDK version.
8687
# Auto-updated by update_compatibility.py.
8788
RELEASE_MAPPINGS: list[ReleaseMapping] = [
89+
ReleaseMapping(infrahub="1.9.2", sdk="1.20.0", date="2026-04-30"),
90+
ReleaseMapping(infrahub="1.9.1", sdk="1.20.0", date="2026-04-29"),
91+
ReleaseMapping(infrahub="1.9.0", sdk="1.20.0", date="2026-04-24"),
92+
ReleaseMapping(infrahub="1.8.6", sdk="1.19.0", date="2026-04-21"),
93+
ReleaseMapping(infrahub="1.8.5", sdk="1.19.0", date="2026-04-17"),
8894
ReleaseMapping(infrahub="1.8.4", sdk="1.19.0", date="2026-04-02"),
8995
ReleaseMapping(infrahub="1.8.3", sdk="1.19.0", date="2026-03-31"),
9096
ReleaseMapping(infrahub="1.8.2", sdk="1.19.0", date="2026-03-25"),

0 commit comments

Comments
 (0)