mirror of
https://github.com/pterodactyl/documentation.git
synced 2025-12-10 00:09:39 -06:00
Update documentation for 1.11 release
This commit is contained in:
parent
45c597ab3c
commit
f3c3481752
@ -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: [
|
||||
|
||||
@ -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.)
|
||||
|
||||
@ -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.
|
||||
|
||||
```
|
||||
|
||||
@ -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
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user