From 05e4f59ccc87b2fc2376b862bddde308d88592b6 Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Tue, 30 May 2023 12:04:53 +0200 Subject: [PATCH] fix(developer): Add information about API change of `\OCP\AppFramework\Db\IMapperException` Signed-off-by: Ferdinand Thiessen Co-authored-by: Christoph Wurst --- .../app_upgrade_guide/upgrade_to_27.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_27.rst b/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_27.rst index 115956d32..02b4a4a9f 100644 --- a/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_27.rst +++ b/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_27.rst @@ -63,6 +63,7 @@ Behavioral changes ^^^^^^^^^^^^^^^^^^ * ``\OCP\Files\Cache\CacheEntryRemovedEvent`` will now be dispatched for all files and folders inside the deleted node. (`nextcloud/server#34773 `_) +* ``\OCP\AppFramework\Db\IMapperException`` does now implement ``\Throwable``, previously either ``\OCP\AppFramework\Db\DoesNotExistException`` or ``\OCP\AppFramework\Db\MultipleObjectsReturnedException`` had to be caught explicitly. (`nextcloud/server#37324 `_) Client APIs -----------