Skip to content
Snippets Groups Projects
Commit 600a9c36 authored by Kathrin Osswald's avatar Kathrin Osswald
Browse files

Prepare compatibility for Moodle 3.7.

parent 85e7df45
No related branches found
No related tags found
No related merge requests found
...@@ -18,12 +18,13 @@ cache: ...@@ -18,12 +18,13 @@ cache:
- $HOME/.npm - $HOME/.npm
php: php:
- 7.0
- 7.1 - 7.1
- 7.2
- 7.3
env: env:
global: global:
- MOODLE_BRANCH=MOODLE_36_STABLE - MOODLE_BRANCH=MOODLE_37_STABLE
matrix: matrix:
- DB=pgsql - DB=pgsql
- DB=mysqli - DB=mysqli
......
...@@ -4,6 +4,10 @@ moodle-auth_ldap_syncplus ...@@ -4,6 +4,10 @@ moodle-auth_ldap_syncplus
Changes Changes
------- -------
### Unreleased
* 2019-08-15 - Prepare compatibility for Moodle 3.7.
### v3.6-r1 ### v3.6-r1
* 2019-01-29 - Check compatibility for Moodle 3.6, no functionality change. * 2019-01-29 - Check compatibility for Moodle 3.6, no functionality change.
......
...@@ -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.6+ This plugin requires Moodle 3.7+
Motivation for this plugin Motivation for this plugin
...@@ -118,8 +118,8 @@ Theme support ...@@ -118,8 +118,8 @@ Theme support
------------- -------------
This plugin acts behind the scenes, therefore it should work with all Moodle themes. This plugin acts behind the scenes, therefore it should work with all Moodle themes.
It has been developed on and tested only with Moodle Core's Boost theme. This plugin is developed and tested on Moodle Core's Boost theme.
While this plugin should also work with Moodle Core's legacy Clean theme or third party themes, we can't support any other theme than Boost. It should also work with Boost child themes, including Moodle Core's Classic theme. However, we can't support any other theme than Boost.
Plugin repositories Plugin repositories
------------------- -------------------
...@@ -199,6 +199,5 @@ Copyright ...@@ -199,6 +199,5 @@ Copyright
--------- ---------
Ulm University Ulm University
kiz - Media Department Communication and Information Centre (kiz)
Team Web & Teaching Support
Alexander Bias Alexander Bias
...@@ -27,6 +27,6 @@ defined('MOODLE_INTERNAL') || die(); ...@@ -27,6 +27,6 @@ defined('MOODLE_INTERNAL') || die();
$plugin->component = 'auth_ldap_syncplus'; $plugin->component = 'auth_ldap_syncplus';
$plugin->version = 2019012901; $plugin->version = 2019012901;
$plugin->release = 'v3.6-r1'; $plugin->release = 'v3.6-r1';
$plugin->requires = 2018120300; $plugin->requires = 2019052000;
$plugin->maturity = MATURITY_STABLE; $plugin->maturity = MATURITY_STABLE;
$plugin->dependencies = array('auth_ldap' => 2018051400); $plugin->dependencies = array('auth_ldap' => 2019052000);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment