Skip to content
Merged
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
22 changes: 21 additions & 1 deletion developer_manual/release_notes/critical_changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,27 @@ Removed front-end APIs and libraries
Removed back-end APIs
---------------------

- TBD
Removed legacy hooks
^^^^^^^^^^^^^^^^^^^^

Hooks were the predecessor of the current Nextcloud event system.
They were deprecated in Nextcloud 17 in favor of the event system in general
and specific hooks based on when a replacement event was available.
With Nextcloud 36 the following hooks were removed,
if your app relies on them please migrate to the replacement event.

.. list-table::
:header-rows: 1
:widths: 55 45

* - Hook
- Replacement event
* - ``\OC\Core\LostPassword\Controller\LostController::pre_passwordReset``
- ``OC\Core\Events\BeforePasswordResetEvent``
* - ``\OC\Core\LostPassword\Controller\LostController::post_passwordReset``
- ``OC\Core\Events\PasswordResetEvent``
* - ``\OCP\Versions::rollback``
- ``OCA\Files_Versions\Events\VersionRestoredEvent``

Unified sharing
---------------
Expand Down
Loading