-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: render supported enterprise versions from json
- Loading branch information
1 parent
7ba487a
commit 848d4bd
Showing
5 changed files
with
57 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"data": [ | ||
{ | ||
"version": "2024.2", | ||
"released": "November 2024", | ||
"status": "Supported", | ||
"end_of_life": "After 2026.1 or 2025.2 is released (see :ref:`Version Support Policy <version-support-policy>`)" | ||
}, | ||
{ | ||
"version": "2024.1 (LTS)", | ||
"released": "February 2024", | ||
"status": "Supported", | ||
"end_of_life": "After 2026.1 is released (see :ref:`Version Support Policy <version-support-policy>`)" | ||
}, | ||
{ | ||
"version": "2023.1 (LTS)", | ||
"released": "August 2023", | ||
"status": "Supported", | ||
"end_of_life": "After 2025.1 is released (see :ref:`Version Support Policy <version-support-policy>`)" | ||
}, | ||
{ | ||
"version": "2022.2", | ||
"released": "January 2023", | ||
"status": "Not supported", | ||
"end_of_life": "June 2024" | ||
}, | ||
{ | ||
"version": "2022.1 (LTS)", | ||
"released": "August 2022", | ||
"status": "Not supported", | ||
"end_of_life": "June 2024" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
.. list-table:: | ||
:widths: 15 20 15 50 | ||
:header-rows: 1 | ||
|
||
* - Version | ||
- Released | ||
- Status | ||
- End of Life (EOL) | ||
|
||
{% for row in data['data'] %} | ||
* - {{ row['version'] }} | ||
- {{ row['released'] }} | ||
- {{ row['status'] }} | ||
- {{ row['end_of_life'] }} | ||
{% endfor %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters