diff --git a/.github/workflows/moodle-plugin-ci.yml b/.github/workflows/moodle-plugin-ci.yml index 4dd1001..ac9a15d 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: ['7.4', '8.0', '8.1'] - moodle-branch: ['MOODLE_401_STABLE'] + php: ['8.0', '8.1', '8.2'] + moodle-branch: ['MOODLE_402_STABLE'] database: [pgsql, mariadb] steps: diff --git a/CHANGES.md b/CHANGES.md index 02bf9f5..dd81767 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,6 +4,10 @@ moodle-auth_ldap_syncplus Changes ------- +### Unreleased + +* 2023-09-01 - Prepare compatibility for Moodle 4.2. + ### v4.1-r2 * 2023-10-14 - Add automated release to moodle.org/plugins diff --git a/README.md b/README.md index 0a4ce06..7b3330f 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.1+ +This plugin requires Moodle 4.2+ Motivation for this plugin diff --git a/version.php b/version.php index b801321..17bddfd 100644 --- a/version.php +++ b/version.php @@ -27,7 +27,7 @@ $plugin->component = 'auth_ldap_syncplus'; $plugin->version = 2023010501; $plugin->release = 'v4.1-r2'; -$plugin->requires = 2022112800; -$plugin->supported = [401, 401]; +$plugin->requires = 2023042400; +$plugin->supported = [402, 402]; $plugin->maturity = MATURITY_STABLE; -$plugin->dependencies = ['auth_ldap' => 2022041900]; +$plugin->dependencies = ['auth_ldap' => 2023042400];