From 9b2a05592c3baea0bd13801d106a9f506a2ebda2 Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Fri, 26 Sep 2025 16:56:01 +0200 Subject: [PATCH 1/2] feat: Add removal of OC.SystemTags JS API Signed-off-by: Carl Schwan --- .../app_upgrade_guide/upgrade_to_33.rst | 1 + 1 file changed, 1 insertion(+) 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 e050fb9700a..fcef92d5a3f 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 @@ -25,6 +25,7 @@ Removed APIs - The global ``md5`` implementation is removed. It was deprecated since Nextcloud 20 and not used by Nextcloud anymore. If you still need a ``md5`` implementation you can just use some external package like `crypto-browserify `_. +- The ``OC.SystemTags`` api was removed. If you need to get the list of system tags, check `this merge request `_ for how to fetch the tags directly. Back-end changes ---------------- From 311e14961345f1cad6d3f85ef86309a3ba002035 Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Fri, 26 Sep 2025 17:16:31 +0200 Subject: [PATCH 2/2] feat: Mention deprecated of OC.SystemTags Signed-off-by: Carl Schwan --- .../app_upgrade_guide/upgrade_to_32.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_32.rst b/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_32.rst index 7d4244d47b1..cd285d5d4c3 100644 --- a/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_32.rst +++ b/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_32.rst @@ -50,6 +50,7 @@ Deprecated APIs - ``--color-error-rgb``, ``--color-info-rgb``, ``--color-success-rgb``, ``--color-warning-rgb`` are deprecated. Instead use the native CSS color utils with the the existing variables like ``--color-error`` and similar. +- The ``OC.SystemTags`` api is deprecated. If you need to get the list of system tags, check `this merge request `_ for how to fetch the tags directly. Back-end changes ----------------