From 11f5e0ba650f28b2bdeadc939f5c6c4d97daf99d Mon Sep 17 00:00:00 2001 From: Alexander Bias Date: Sat, 25 Jun 2022 21:30:17 +0200 Subject: [PATCH] Add UPGRADE.md to the repository. --- UPGRADE.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 UPGRADE.md diff --git a/UPGRADE.md b/UPGRADE.md new file mode 100644 index 0000000..4dff55e --- /dev/null +++ b/UPGRADE.md @@ -0,0 +1,29 @@ +Upgrading this plugin +===================== + +This is an internal documentation for plugin developers with some notes what has to be considered when updating this plugin to a new Moodle major version. + +General +------- + +* Generally, this is a quite simple plugin with just one purpose. +* It does not rely on any fluctuating library functions and should remain quite stable between Moodle major versions. +* Thus, the upgrading effort is low. + + +Upstream changes +---------------- + +* This plugin does not inherit or copy anything from upstream sources. + + +Automated tests +--------------- + +* The plugin has a good coverage with Behat tests which test all of the plugin's user stories. + + +Manual tests +------------ + +* There aren't any manual tests needed to upgrade this plugin.