Merge pull request #9932 from andrey18106/master

Moved admin changes to admin_manual. Added new event to Events page
This commit is contained in:
Andrey Borysenko
2023-03-21 15:53:57 +02:00
committed by GitHub
3 changed files with 14 additions and 10 deletions

View File

@@ -19,6 +19,13 @@ Maintenance releases are scheduled in a 4 week cycle with one week before the re
Critical changes
----------------
* PHP 7.4 is not supported anymore. Please upgrade to PHP 8.0 or higher.
* PHP 8.2 is now supported.
* The recommended webserver configuration has changed to no longer include a default redirect to the login page
* For Apache this change will automatically come with the ``.htaccess`` file provided by the release
* for nginx administrators should ensure that their config is up to date with the `documentation <https://docs.nextcloud.com/server/latest/admin_manual/installation/nginx.html>`_
* The relevant lines to remove are ``error_page 403 /core/templates/403.php;`` and ``error_page 404 /core/templates/404.php;``
You can find important documentation for app developers here: https://docs.nextcloud.com/server/latest/developer_manual/app_publishing_maintenance/app_upgrade_guide/index.html
Each document lists a link to the breaking changes of the corresponding release.

View File

@@ -106,13 +106,3 @@ Deprecated
* ``OCP\BackgroundJob\IJobList::getJobs`` method was deprecated (`PR#36073 <https://github.com/nextcloud/server/pull/36073>`_)
* Controller action annotation ``@UseSession`` is deprecated. Use new ``UseSession`` attribute instead (`PR#36363 <https://github.com/nextcloud/server/pull/36363>`_ by `ChristophWurst <https://github.com/ChristophWurst>`_)
* **Notifications jQuery event deprecated**: The ``OCA.Notification.Action`` event of the notifications app is deprecated in favor of a ``notifications:action:executed`` event-bus event with (`PR#728 <https://github.com/nextcloud/notifications/pull/728>`_ by `nickvergessen <https://github.com/nickvergessen>`_)
Changes for admins
------------------
* PHP 7.4 is not supported anymore. Please upgrade to PHP 8.0 or higher.
* PHP 8.2 is now supported.
* The recommended webserver configuration has changed to no longer include a default redirect to the login page
* For Apache this change will automatically come with the ``.htaccess`` file provided by the release
* for nginx administrators should ensure that their config is up to date with the `documentation <https://docs.nextcloud.com/server/latest/admin_manual/installation/nginx.html>`_
* The relevant lines to remove are ``error_page 403 /core/templates/403.php;`` and ``error_page 404 /core/templates/404.php;``

View File

@@ -308,6 +308,13 @@ This event is triggered when a user updates a card in an address-book.
This event is triggered during the setup of the SabreDAV server to allow the registration of additional authentication backends.
``OCP\BeforeSabrePubliclyLoadedEvent``
**************************************
.. versionadded:: 26
This event is triggered when accessing public webdav endpoints.
``\OCA\DAV\Events\SubscriptionCreatedEvent``
********************************************