Skip to content

Commit a0ee18a

Browse files
committed
docs: update compatibility matrix
1 parent 242c39d commit a0ee18a

2 files changed

Lines changed: 18 additions & 0 deletions

File tree

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

Lines changed: 9 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.10.x | >= 1.22.0 | June 2026 |
1516
| 1.9.x | >= 1.20.0 | April 2026 |
1617
| 1.8.x | >= 1.19.0 | March 2026 |
1718
| 1.7.x | >= 1.18.1 | January 2026 |
@@ -32,10 +33,18 @@ The table below shows the exact SDK version pinned to each Infrahub release.
3233
<!-- vale off -->
3334
| Infrahub | SDK version | Infrahub release date |
3435
| --- | --- | --- |
36+
| 1.10.0 | 1.22.0 | 2026-06-23 |
37+
| 1.9.9 | 1.20.1 | 2026-06-23 |
38+
| 1.9.8 | 1.20.1 | 2026-06-09 |
39+
| 1.9.7 | 1.20.1 | 2026-06-03 |
40+
| 1.9.6 | 1.20.1 | 2026-05-20 |
41+
| 1.9.5 | 1.20.0 | 2026-05-18 |
42+
| 1.9.4 | 1.20.0 | 2026-05-13 |
3543
| 1.9.3 | 1.20.0 | 2026-05-05 |
3644
| 1.9.2 | 1.20.0 | 2026-04-30 |
3745
| 1.9.1 | 1.20.0 | 2026-04-29 |
3846
| 1.9.0 | 1.20.0 | 2026-04-24 |
47+
| 1.8.7 | 1.19.0 | 2026-06-04 |
3948
| 1.8.6 | 1.19.0 | 2026-04-21 |
4049
| 1.8.5 | 1.19.0 | 2026-04-17 |
4150
| 1.8.4 | 1.19.0 | 2026-04-02 |

docs/docs_generation/compatibility.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ class FeatureRequirement:
7474
# Mapping of Infrahub minor version series to minimum SDK versions.
7575
# Auto-updated by update_compatibility.py.
7676
VERSION_RANGES: list[VersionRange] = [
77+
VersionRange(infrahub="1.10.x", min_sdk="1.22.0", date="June 2026"),
7778
VersionRange(infrahub="1.9.x", min_sdk="1.20.0", date="April 2026"),
7879
VersionRange(infrahub="1.8.x", min_sdk="1.19.0", date="March 2026"),
7980
VersionRange(infrahub="1.7.x", min_sdk="1.18.1", date="January 2026"),
@@ -90,10 +91,18 @@ class FeatureRequirement:
9091
# Detailed mapping of every Infrahub release to its pinned SDK version.
9192
# Auto-updated by update_compatibility.py.
9293
RELEASE_MAPPINGS: list[ReleaseMapping] = [
94+
ReleaseMapping(infrahub="1.10.0", sdk="1.22.0", date="2026-06-23"),
95+
ReleaseMapping(infrahub="1.9.9", sdk="1.20.1", date="2026-06-23"),
96+
ReleaseMapping(infrahub="1.9.8", sdk="1.20.1", date="2026-06-09"),
97+
ReleaseMapping(infrahub="1.9.7", sdk="1.20.1", date="2026-06-03"),
98+
ReleaseMapping(infrahub="1.9.6", sdk="1.20.1", date="2026-05-20"),
99+
ReleaseMapping(infrahub="1.9.5", sdk="1.20.0", date="2026-05-18"),
100+
ReleaseMapping(infrahub="1.9.4", sdk="1.20.0", date="2026-05-13"),
93101
ReleaseMapping(infrahub="1.9.3", sdk="1.20.0", date="2026-05-05"),
94102
ReleaseMapping(infrahub="1.9.2", sdk="1.20.0", date="2026-04-30"),
95103
ReleaseMapping(infrahub="1.9.1", sdk="1.20.0", date="2026-04-29"),
96104
ReleaseMapping(infrahub="1.9.0", sdk="1.20.0", date="2026-04-24"),
105+
ReleaseMapping(infrahub="1.8.7", sdk="1.19.0", date="2026-06-04"),
97106
ReleaseMapping(infrahub="1.8.6", sdk="1.19.0", date="2026-04-21"),
98107
ReleaseMapping(infrahub="1.8.5", sdk="1.19.0", date="2026-04-17"),
99108
ReleaseMapping(infrahub="1.8.4", sdk="1.19.0", date="2026-04-02"),

0 commit comments

Comments
 (0)