diff --git a/admin_manual/release_schedule.rst b/admin_manual/release_schedule.rst index bdc2b50fa..83f11c79c 100644 --- a/admin_manual/release_schedule.rst +++ b/admin_manual/release_schedule.rst @@ -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 `_ + * 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. diff --git a/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_26.rst b/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_26.rst index c6b111d7d..cb88a932a 100644 --- a/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_26.rst +++ b/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_26.rst @@ -106,13 +106,3 @@ Deprecated * ``OCP\BackgroundJob\IJobList::getJobs`` method was deprecated (`PR#36073 `_) * Controller action annotation ``@UseSession`` is deprecated. Use new ``UseSession`` attribute instead (`PR#36363 `_ by `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 `_ by `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 `_ - * The relevant lines to remove are ``error_page 403 /core/templates/403.php;`` and ``error_page 404 /core/templates/404.php;`` diff --git a/developer_manual/basics/events.rst b/developer_manual/basics/events.rst index 88432e8d4..6a94b8622 100644 --- a/developer_manual/basics/events.rst +++ b/developer_manual/basics/events.rst @@ -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`` ********************************************