From 31b121f4b3b95f160322f3e97f395955011bbdd5 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Fri, 10 Nov 2023 15:58:29 +0100 Subject: [PATCH] docs: faq: move support table to CSV as the current table format isn't really a recommended way to encode tables for reStructuredText, and breaks various editor integrations (and possibly parsing in the future). From the two supported options, i.e., csv-table and list-table, the first one seems to be easier to maintain in the long-run, so go for that. https://docutils.sourceforge.io/docs/ref/rst/directives.html#csv-table-1 Signed-off-by: Thomas Lamprecht --- docs/faq-release-support-table.csv | 4 ++++ docs/faq.rst | 13 ++++--------- 2 files changed, 8 insertions(+), 9 deletions(-) create mode 100644 docs/faq-release-support-table.csv diff --git a/docs/faq-release-support-table.csv b/docs/faq-release-support-table.csv new file mode 100644 index 00000000..479a59bf --- /dev/null +++ b/docs/faq-release-support-table.csv @@ -0,0 +1,4 @@ +Proxmox Backup Version , Debian Version , First Release , Debian EOL , Proxmox Backup EOL +Proxmox Backup 3 , Debian 12 (Bookworm) , 2023-06 , TBA , TBA +Proxmox Backup 2 , Debian 11 (Bullseye) , 2021-07 , 2024-07 , 2024-07 +Proxmox Backup 1 , Debian 10 (Buster) , 2020-11 , 2022-08 , 2022-07 diff --git a/docs/faq.rst b/docs/faq.rst index 3adbbd33..01421d61 100644 --- a/docs/faq.rst +++ b/docs/faq.rst @@ -26,15 +26,10 @@ future plans to support 32-bit processors. How long will my Proxmox Backup Server version be supported? ------------------------------------------------------------ -+-----------------------+----------------------+---------------+------------+--------------------+ -|Proxmox Backup Version | Debian Version | First Release | Debian EOL | Proxmox Backup EOL | -+=======================+======================+===============+============+====================+ -|Proxmox Backup 3.x | Debian 12 (Bookworm) | 2023-06 | tba | tba | -+-----------------------+----------------------+---------------+------------+--------------------+ -|Proxmox Backup 2.x | Debian 11 (Bullseye) | 2021-07 | 2024-07 | 2024-07 | -+-----------------------+----------------------+---------------+------------+--------------------+ -|Proxmox Backup 1.x | Debian 10 (Buster) | 2020-11 | 2022-08 | 2022-07 | -+-----------------------+----------------------+---------------+------------+--------------------+ +.. csv-table:: Table Title + :file: faq-release-support-table.csv + :widths: 30 26 13 13 18 + :header-rows: 1 How can I upgrade Proxmox Backup Server to the next point release? ------------------------------------------------------------------