From f3c3481752d0e2287f3fb0b75e1c24c1a8145e43 Mon Sep 17 00:00:00 2001 From: Matthew Penner Date: Thu, 1 Dec 2022 12:26:51 -0700 Subject: [PATCH] Update documentation for 1.11 release --- .vuepress/config.js | 4 ++-- panel/1.0/getting_started.md | 2 +- panel/1.0/updating.md | 44 +++++++++++++++++++++--------------- wings/1.0/upgrading.md | 3 +++ 4 files changed, 32 insertions(+), 21 deletions(-) diff --git a/.vuepress/config.js b/.vuepress/config.js index 2878fb67..e1206705 100644 --- a/.vuepress/config.js +++ b/.vuepress/config.js @@ -138,7 +138,7 @@ module.exports = { currentVersion: '1.0', versions: [ { - title: '1.10', + title: '1.11', name: '1.0', status: 'stable', children: [ @@ -159,7 +159,7 @@ module.exports = { currentVersion: '1.0', versions: [ { - title: '1.7', + title: '1.11', name: '1.0', status: 'stable', children: [ diff --git a/panel/1.0/getting_started.md b/panel/1.0/getting_started.md index a18c80ce..c2046736 100644 --- a/panel/1.0/getting_started.md +++ b/panel/1.0/getting_started.md @@ -36,7 +36,7 @@ this software on an OpenVZ based system you will — most likely — not ## Dependencies -* PHP `7.4`, `8.0` or `8.1` (recommended) with the following extensions: `cli`, `openssl`, `gd`, `mysql`, `PDO`, `mbstring`, `tokenizer`, `bcmath`, `xml` or `dom`, `curl`, `zip`, and `fpm` if you are planning to use NGINX. +* PHP `8.0` or `8.1` (recommended) with the following extensions: `cli`, `openssl`, `gd`, `mysql`, `PDO`, `mbstring`, `tokenizer`, `bcmath`, `xml` or `dom`, `curl`, `zip`, and `fpm` if you are planning to use NGINX. * MySQL `5.7.22` and higher (MySQL `8` recommended) **or** MariaDB `10.2` and higher. * Redis (`redis-server`) * A webserver (Apache, NGINX, Caddy, etc.) diff --git a/panel/1.0/updating.md b/panel/1.0/updating.md index 23912acf..e6d85079 100644 --- a/panel/1.0/updating.md +++ b/panel/1.0/updating.md @@ -9,31 +9,39 @@ Each version of Pterodactyl Panel also has a corresponding minimum version of Wi is required for it to run. Please see the chart below for how these versions line up. In most cases your base Wings version should match that of your Panel. -| Panel Version | Wings Version | Supported | PHP Versions | -|---------------|---------------|-----------|--------------------------------| -| 1.0.x | 1.0.x | | 7.3, 7.4 | -| 1.1.x | 1.1.x | | 7.3, 7.4 | -| 1.2.x | 1.2.x | | 7.3, 7.4 | -| 1.3.x | 1.3.x | | 7.4, 8.0 | -| 1.4.x | 1.4.x | | 7.4, 8.0 | -| 1.5.x | 1.4.x | | 7.4, 8.0 | -| 1.6.x | 1.4.x | | 7.4, 8.0 | -| 1.7.x | 1.5.x | | 7.4, 8.0 | -| 1.8.x | 1.6.x | | 7.4, 8.0, 8.1 | -| 1.9.x | 1.6.x | | 7.4, 8.0, 8.1 | -| **1.10.x** | **1.7.x** | ✅ | **8.1** (7.4 & 8.0 deprecated) | +| Panel Version | Wings Version | Supported | PHP Versions | +|---------------|---------------|-----------|------------------------------------| +| 1.0.x | 1.0.x | | 7.3, 7.4 | +| 1.1.x | 1.1.x | | 7.3, 7.4 | +| 1.2.x | 1.2.x | | 7.3, 7.4 | +| 1.3.x | 1.3.x | | 7.4, 8.0 | +| 1.4.x | 1.4.x | | 7.4, 8.0 | +| 1.5.x | 1.4.x | | 7.4, 8.0 | +| 1.6.x | 1.4.x | | 7.4, 8.0 | +| 1.7.x | 1.5.x | | 7.4, 8.0 | +| 1.8.x | 1.6.x | | 7.4, 8.0, 8.1 | +| 1.9.x | 1.6.x | | 7.4, 8.0, 8.1 | +| **1.10.x** | **1.7.x** | ✅ | 7.4, 8.0, **8.1** (7.4 deprecated) | +| **1.11.x** | **1.11.x** | ✅ | 8.0, **8.1** (8.0 deprecated) | + +*NOTE: There are no 1.8.x, 1.9.x, or 1.10.x releases of Wings.* ## Update Dependencies -* PHP `7.4`, `8.0` or `8.1` (recommended) +* PHP `8.0` or `8.1` (recommended) * Composer `2.X` +::: danger PHP 7.4 +Support for PHP 7.4 has been removed with the release of 1.11.0. Please upgrade +to PHP 8.0, 8.1 or newer. +:: + ::: warning Future PHP Version Changes -**Support for PHP 7.4 and 8.0 is deprecated**. Please plan accordingly — PHP 8.1 will be the only - supported version in future releases. +**Support for PHP 8.0 is deprecated**. Please plan accordingly — PHP 8.1 or newer + will be the only supported version in 1.12 and beyond. ::: -**Before continuing**, please ensure that your system and web server configuration has been upgraded to at least PHP 7.4 by running `php -v` and Composer 2 by running `composer --version`. You -should see an output similar to the result below. If you do not see at least PHP 7.4 and Composer 2, you will need to upgrade by following +**Before continuing**, please ensure that your system and web server configuration has been upgraded to at least PHP 8.0 by running `php -v` and Composer 2 by running `composer --version`. You +should see an output similar to the result below. If you do not see at least PHP 8.0 and Composer 2, you will need to upgrade by following our [PHP Upgrade Guide](/guides/php_upgrade.md) and return to this documentation afterward. ``` diff --git a/wings/1.0/upgrading.md b/wings/1.0/upgrading.md index ceeb1e4d..08860491 100644 --- a/wings/1.0/upgrading.md +++ b/wings/1.0/upgrading.md @@ -21,6 +21,9 @@ most cases your base Wings version should match that of your Panel. | 1.8.x | 1.6.x | | | 1.9.x | 1.6.x | | | **1.10.x** | **1.7.x** | ✅ | +| **1.11.x** | **1.11.x** | ✅ | + +*NOTE: There are no 1.8.x, 1.9.x, or 1.10.x releases of Wings.* ## Download Updated Binary