From 3421ad1594825b90f08e7033fb42dc8ef9721aee Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Fri, 31 Oct 2025 14:30:16 +0100 Subject: [PATCH] chore: document removal of `OC.fileIsBlacklisted` Signed-off-by: Ferdinand Thiessen --- .../app_upgrade_guide/upgrade_to_33.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_33.rst b/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_33.rst index af8ffd5a3..eb8575099 100644 --- a/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_33.rst +++ b/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_33.rst @@ -32,6 +32,8 @@ Removed APIs - ``OC.redirect`` and ``OC.reload`` were removed. Both were deprecated since Nextcloud 17. To replace ``OC.redirect`` directly use ``window.location``. To replace ``OC.reload`` directly use ``window.location.reload``. +- ``OC.fileIsBlacklisted`` was removed. It was deprecated since Nextcloud 18. + The replacement is to use ``validateFilename`` from the `@nextcloud/files `_ package. - The `OCA.Sharing.ExternalLinkActions` API was deprecated in Nextcloud 23 and is now removed. It was replaced with `OCA.Sharing.ExternalShareAction` which now have a proper API by using `registerSidebarAction` from `@nextcloud/sharing` instead.