Document comment backend changes
authorMarcel Werk <burntime@woltlab.com>
Sun, 16 Jun 2024 11:44:09 +0000 (13:44 +0200)
committerMarcel Werk <burntime@woltlab.com>
Sun, 16 Jun 2024 11:44:09 +0000 (13:44 +0200)
docs/migration/wsc60/deprecations_removals.md
docs/migration/wsc60/php.md

index 94b5b6b7e9b7334406703c41091a6d28bc51e3d5..d52a3ba285b65a79fd82c4f9393d916a1e40803c 100644 (file)
@@ -34,6 +34,8 @@ With version 6.1, we have deprecated certain components and removed several othe
 - `wcf\system\comment\manager\ICommentManager::canModerate()` ([WoltLab/WCF#5852](https://github.com/WoltLab/WCF/pull/5852/))
 - `wcf\system\box\BoxHandler::createBoxCondition()` ([WoltLab/WCF#5906](https://github.com/WoltLab/WCF/pull/5906))
 - `wcf\system\box\BoxHandler::addBoxToPageAssignments()` ([WoltLab/WCF#5906](https://github.com/WoltLab/WCF/pull/5906))
+- Non-standard methods of `wcf\data\comment\CommentAction` ([WoltLab/WCF#5944](https://github.com/WoltLab/WCF/pull/5944))
+- Non-standard methods of `wcf\data\comment\response\CommentResponseAction` ([WoltLab/WCF#5944](https://github.com/WoltLab/WCF/pull/5944))
 
 ### JavaScript
 
index 8ddc0491a193b00214dc2fa827e37ce6701162bb..37654841c458b2c5972990e86963f3a6047fa8d9 100644 (file)
@@ -96,3 +96,10 @@ The old practice of placing events where they are used is somewhat inconsistent
 All PSR-14 events now use the new `event` namespace (located under `lib/event`). See the [PSR-14 event documentation](../../php/api/events.md) for details.
 
 The changes are backwards compatible, the old namespaces can still be used.
+
+
+## Comment Backend
+
+The backend of the comment system has been revised and is now based on the new RPC controllers and commands.
+The previous backend (the methods of `CommentAction` and `CommentResponseAction`) remains for backward compatibility reasons, but has been deprecated.
+If you do not interact directly with the backend, no changes are usually required. [See](https://github.com/WoltLab/WCF/pull/5944) for more details.