From f0c1a6f375719e127bc750de6dbafceecbf56022 Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Mon, 2 Feb 2026 12:39:35 +0100 Subject: [PATCH] fix(developer_manual): Add TaskProcessing updates to 33 upgrade guide see https://github.com/nextcloud/server/pull/56908 see https://github.com/nextcloud/server/pull/56717 Signed-off-by: Marcel Klehr --- .../app_upgrade_guide/upgrade_to_33.rst | 6 ++++++ 1 file changed, 6 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 fbec76873..95641615d 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 @@ -201,11 +201,17 @@ Added APIs You can add your own exporters by implementing ``\OCP\OpenMetrics\IMetricFamily`` interface. See :doc:`/digging_deeper/openmetrics` for more information. +- ``ImageToTextOpticalCharacterRecognition`` TaskProcessing task type was added + +- ``ISynchronousWatermarkingProvider`` TaskProcessing provider interface was added to allow synchronous processing providers to react to the boolean includeWatermark flag + Changed APIs ^^^^^^^^^^^^ - The ``setId`` and ``getId`` methods of ``\OCP\BackgroundJob\IJob`` were changed to return/accept a string instead of an int. Same for ``\OCP\BackgroundJob\IJobList`` were some methods (``removedById``, ``getById`` and ``getDetailsById``) are now taking a string instead of an int. The string is suppose to be a snowflake id. - The ``setObjectId`` and ``getObjectId`` methods of ``\OCP\Activity\IEvent`` were changed to return/accept a string in addition to an int. The string is suppose to be a snowflake id. +- The ``\OCP\TaskProcessing\Task`` class now has ``getIncludeWatermark`` and ``setIncludeWatermark`` methods for indicating whether the provider should add a watermark to the generated output. +- The TaskProcessing OCS API now also accepts the ``includeWatermark`` flag when scheduling tasks Deprecated APIs ^^^^^^^^^^^^^^^