From 3ef0e023c79318834db73504b0c5799cdd810cad Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Wed, 7 Feb 2024 12:24:15 +0100 Subject: [PATCH 1/2] chore(developer): Add note about dashboard no longer loading the viewer scripts by default Co-authored-by: Ferdinand Thiessen Co-authored-by: Christoph Wurst Signed-off-by: Ferdinand Thiessen --- .../app_upgrade_guide/index.rst | 1 + .../app_upgrade_guide/upgrade_to_29.rst | 83 +++++++++++++++++++ 2 files changed, 84 insertions(+) create mode 100644 developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_29.rst diff --git a/developer_manual/app_publishing_maintenance/app_upgrade_guide/index.rst b/developer_manual/app_publishing_maintenance/app_upgrade_guide/index.rst index c179ebb84..89d3e2887 100644 --- a/developer_manual/app_publishing_maintenance/app_upgrade_guide/index.rst +++ b/developer_manual/app_publishing_maintenance/app_upgrade_guide/index.rst @@ -11,6 +11,7 @@ These sub pages will cover the most important changes in Nextcloud, as well as s .. toctree:: :maxdepth: 1 + upgrade_to_29.rst upgrade_to_28.rst upgrade_to_27.rst upgrade_to_26.rst diff --git a/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_29.rst b/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_29.rst new file mode 100644 index 000000000..c1a814c2d --- /dev/null +++ b/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_29.rst @@ -0,0 +1,83 @@ +======================= +Upgrade to Nextcloud 28 +======================= + +General +------- + +info.xml +^^^^^^^^ + +Make sure your ``appinfo/info.xml`` allows for Nextcloud 29. + +.. code-block:: xml + + + + + +Front-end changes +----------------- + +Added APIs +^^^^^^^^^^ + +* tbd + +Changed APIs +^^^^^^^^^^^^ + +* tbd + +Deprecated APIs +^^^^^^^^^^^^^^^ + +* tbd + +Removed APIs +^^^^^^^^^^^^ + +* tbd + +Back-end changes +---------------- + +Added APIs +^^^^^^^^^^ + +* tbd + +Changed APIs +^^^^^^^^^^^^ + +* tbd + +Deprecated APIs +^^^^^^^^^^^^^^^ + +* tbd + +Removed APIs +^^^^^^^^^^^^ + +* tbd + +Added events +^^^^^^^^^^^^ + +* tbd + +Deprecated events +^^^^^^^^^^^^^^^^^ + +* tbd + +Removed events +^^^^^^^^^^^^^^ + +* tbd + +Changed behavior +^^^^^^^^^^^^^^^^ + +The dashboard no longer loads the sidebar or Viewer scripts, if your dashboard widget relies on this it should emit the required events itself. \ No newline at end of file From e85c337aabe11c199c48d1d0c9e724101ecb28bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <91878298+come-nc@users.noreply.github.com> Date: Thu, 8 Feb 2024 11:54:05 +0100 Subject: [PATCH 2/2] fix: Fix version number in upgrade_to_29.rst MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Joas Schilling <213943+nickvergessen@users.noreply.github.com> Signed-off-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com> --- .../app_upgrade_guide/upgrade_to_29.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_29.rst b/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_29.rst index c1a814c2d..3d5cbf1a4 100644 --- a/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_29.rst +++ b/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_29.rst @@ -1,5 +1,5 @@ ======================= -Upgrade to Nextcloud 28 +Upgrade to Nextcloud 29 ======================= General