From 131c54408b1bc3460036c7a3a99d829195eb8723 Mon Sep 17 00:00:00 2001 From: Alexander Bias Date: Sat, 26 Oct 2024 15:43:28 +0200 Subject: [PATCH] Prepare compatibility for Moodle 4.5. --- .github/workflows/moodle-plugin-ci.yml | 2 +- CHANGES.md | 4 ++++ README.md | 2 +- version.php | 6 +++--- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/moodle-plugin-ci.yml b/.github/workflows/moodle-plugin-ci.yml index 7abec29..655733c 100644 --- a/.github/workflows/moodle-plugin-ci.yml +++ b/.github/workflows/moodle-plugin-ci.yml @@ -25,7 +25,7 @@ jobs: fail-fast: false matrix: php: ['8.1', '8.2', '8.3'] - moodle-branch: ['MOODLE_404_STABLE'] + moodle-branch: ['MOODLE_405_STABLE'] database: [pgsql] extensions: [redis] diff --git a/CHANGES.md b/CHANGES.md index 0932d1f..64eeb3a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,6 +4,10 @@ moodle-tool_redis Changes ------- +### Unreleased + +* 2024-10-07 - Prepare compatibility for Moodle 4.5. + ### v4.4-r1 * 2024-08-24 - Development: Rename master branch to main, please update your clones. diff --git a/README.md b/README.md index 37ed305..1d22ce8 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Moodle plugin which adds a Redis management GUI to Moodle site administration. Requirements ------------ -This plugin requires Moodle 4.4+ +This plugin requires Moodle 4.5+ Motivation for this plugin diff --git a/version.php b/version.php index 0215165..fe772d1 100644 --- a/version.php +++ b/version.php @@ -27,7 +27,7 @@ $plugin->component = 'tool_redis'; $plugin->version = 2024060100; $plugin->release = 'v4.4-r1'; -$plugin->requires = 2024042200; -$plugin->supported = [404, 404]; +$plugin->requires = 2024100700; +$plugin->supported = [405, 405]; $plugin->maturity = MATURITY_STABLE; -$plugin->dependencies = ['cachestore_redis' => 2024042200]; +$plugin->dependencies = ['cachestore_redis' => 2024060100];