From c5086a5e3ce45166b7b225f1cb76c60520823787 Mon Sep 17 00:00:00 2001 From: Alexander Bias Date: Fri, 23 Aug 2024 06:40:42 +0200 Subject: [PATCH] Prepare compatibility for Moodle 4.4. --- .github/workflows/moodle-plugin-ci.yml | 4 ++-- CHANGES.md | 4 ++++ README.md | 2 +- version.php | 6 +++--- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/moodle-plugin-ci.yml b/.github/workflows/moodle-plugin-ci.yml index 65fdcc8..f8407fe 100644 --- a/.github/workflows/moodle-plugin-ci.yml +++ b/.github/workflows/moodle-plugin-ci.yml @@ -30,8 +30,8 @@ jobs: strategy: fail-fast: false matrix: - php: ['8.0', '8.1', '8.2'] - moodle-branch: ['MOODLE_403_STABLE'] + php: ['8.1', '8.2', '8.3'] + moodle-branch: ['MOODLE_404_STABLE'] database: [pgsql, mariadb] steps: diff --git a/CHANGES.md b/CHANGES.md index 53aace5..bad8552 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,6 +4,10 @@ moodle-auth_ldap_syncplus Changes ------- +### Unreleased + +* 2024-08-20 - Prepare compatibility for Moodle 4.4. + ### v4.3-r2 * 2024-08-19 - Fix behat tests which broke due to Github actions changes diff --git a/README.md b/README.md index ce28d0a..a541aee 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Moodle authentication plugin which provides all functionality of auth_ldap, but Requirements ------------ -This plugin requires Moodle 4.3+ +This plugin requires Moodle 4.4+ Motivation for this plugin diff --git a/version.php b/version.php index e3ed866..994d8eb 100644 --- a/version.php +++ b/version.php @@ -27,7 +27,7 @@ $plugin->component = 'auth_ldap_syncplus'; $plugin->version = 2023102001; $plugin->release = 'v4.3-r2'; -$plugin->requires = 2023100900; -$plugin->supported = [403, 403]; +$plugin->requires = 2024042200; +$plugin->supported = [404, 404]; $plugin->maturity = MATURITY_STABLE; -$plugin->dependencies = ['auth_ldap' => 2023100900]; +$plugin->dependencies = ['auth_ldap' => 2024042200];