Skip to content
Snippets Groups Projects
Commit 02304aef authored by Alexander Bias's avatar Alexander Bias
Browse files

Prepare compatibility for Moodle 3.10

parent 915ae8ea
No related branches found
No related tags found
No related merge requests found
...@@ -20,7 +20,7 @@ php: ...@@ -20,7 +20,7 @@ php:
env: env:
global: global:
- MOODLE_BRANCH=MOODLE_39_STABLE - MOODLE_BRANCH=MOODLE_310_STABLE
matrix: matrix:
- DB=pgsql - DB=pgsql
- DB=mysqli - DB=mysqli
......
...@@ -6,6 +6,7 @@ Changes ...@@ -6,6 +6,7 @@ Changes
### Unreleased ### Unreleased
* 2020-12-11 - Prepare compatibility for Moodle 3.10.
* 2020-12-10 - Change in Moodle release support: * 2020-12-10 - Change in Moodle release support:
For the time being, this plugin is maintained for the most recent LTS release of Moodle as well as the most recent major release of Moodle. For the time being, this plugin is maintained for the most recent LTS release of Moodle as well as the most recent major release of Moodle.
Bugfixes are backported to the LTS release. However, new features and improvements are not necessarily backported to the LTS release. Bugfixes are backported to the LTS release. However, new features and improvements are not necessarily backported to the LTS release.
......
...@@ -9,7 +9,7 @@ Moodle authentication plugin which provides all functionality of auth_ldap, but ...@@ -9,7 +9,7 @@ Moodle authentication plugin which provides all functionality of auth_ldap, but
Requirements Requirements
------------ ------------
This plugin requires Moodle 3.9+ This plugin requires Moodle 3.10+
Motivation for this plugin Motivation for this plugin
......
...@@ -27,7 +27,7 @@ defined('MOODLE_INTERNAL') || die(); ...@@ -27,7 +27,7 @@ defined('MOODLE_INTERNAL') || die();
$plugin->component = 'auth_ldap_syncplus'; $plugin->component = 'auth_ldap_syncplus';
$plugin->version = 2020091800; $plugin->version = 2020091800;
$plugin->release = 'v3.9-r1'; $plugin->release = 'v3.9-r1';
$plugin->requires = 2020061500; $plugin->requires = 2020110900;
$plugin->supported = [39, 39]; $plugin->supported = [310, 310];
$plugin->maturity = MATURITY_STABLE; $plugin->maturity = MATURITY_STABLE;
$plugin->dependencies = array('auth_ldap' => 2020061500); $plugin->dependencies = array('auth_ldap' => 2020110900);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment