Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions admin_manual/installation/system_requirements.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ For best performance, stability and functionality we have documented some recomm
| PHP Runtime | - 8.2 (*deprecated*) |
| | - 8.3 |
| | - **8.4** (*recommended*) |
| | - 8.5 |
+------------------+-----------------------------------------------------------------------+

See :doc:`source_installation` for minimum PHP-modules and additional software for installing Nextcloud.
Expand Down
1 change: 1 addition & 0 deletions admin_manual/release_notes/upgrade_to_33.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Upgrade to Nextcloud 33
System requirements
-------------------

* PHP 8.5 is now supported.
* PHP 8.2 is now deprecated but still supported.
* PHP 8.1 is no longer supported.
* Oracle 11g is no longer supported.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@ Removed APIs
Back-end changes
----------------

Support for PHP 8.5 added
^^^^^^^^^^^^^^^^^^^^^^^^^

See below section for option code changes in your app and dependency management

Support for PHP 8.1 removed
^^^^^^^^^^^^^^^^^^^^^^^^^^^

Expand All @@ -58,7 +63,7 @@ In this release support for PHP 8.1 was removed. Follow the steps below to make
.. code-block:: xml

<dependencies>
<php min-version="8.2" max-version="8.4" />
<php min-version="8.2" max-version="8.5" />
<nextcloud min-version="31" max-version="33" />
</dependencies>

Expand All @@ -69,11 +74,11 @@ In this release support for PHP 8.1 was removed. Follow the steps below to make

{
"require": {
"php": ">=8.2 <=8.4"
"php": ">=8.2 <=8.5"
}
}

3. If you have :ref:`continuous integration <app-ci>` set up, remove PHP 8.1 from the matrices of tests and linters.
3. If you have :ref:`continuous integration <app-ci>` set up, remove PHP 8.1 and add PHP 8.5 from the matrices of tests and linters.

Default user agent for outgoing requests changed
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Expand Down