Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/documentation.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2022-10-24 11:15:26 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2022-10-24 11:46:05 +0300
commit4cdf7f5c26a688ab8b538b8a2886ef6bcbff2f01 (patch)
tree0a0cc5fb8079b5644dbdfde3f83e154dc784002d
parent9353064447d479efebfd61f2333b6ed77edddca6 (diff)
Add Nextcloud 26 upgrade docs for app devs
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
-rw-r--r--developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_26.rst39
1 files changed, 39 insertions, 0 deletions
diff --git a/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_26.rst b/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_26.rst
new file mode 100644
index 000000000..9b804c049
--- /dev/null
+++ b/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_26.rst
@@ -0,0 +1,39 @@
+=======================
+Upgrade to Nextcloud 26
+=======================
+
+.. note:: Critical changes were collected `on GitHub <https://github.com/nextcloud/server/issues/34692>`__. See the original ticket for links to the pull requests and tickets.
+
+General
+-------
+
+info.xml
+^^^^^^^^
+
+Make sure your ``appinfo/info.xml`` allows for Nextcloud 26.
+
+.. code-block:: xml
+
+ <dependencies>
+ <nextcloud min-version="23" max-version="26" />
+ </dependencies>
+
+Front-end changes
+-----------------
+
+tbd
+
+Back-end changes
+----------------
+
+tbd
+
+Changed APIs
+^^^^^^^^^^^^
+
+tbd
+
+Removed APIs
+^^^^^^^^^^^^
+
+tbd \ No newline at end of file