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

Prepare compatibility for Moodle 3.9.

parent 6edb7b97
No related branches found
No related tags found
No related merge requests found
language: php language: php
addons: addons:
postgresql: "9.4" postgresql: "9.5"
services: services:
- mysql - mysql
...@@ -14,13 +14,13 @@ cache: ...@@ -14,13 +14,13 @@ cache:
- $HOME/.npm - $HOME/.npm
php: php:
- 7.1
- 7.2 - 7.2
- 7.3 - 7.3
- 7.4
env: env:
global: global:
- MOODLE_BRANCH=MOODLE_38_STABLE - MOODLE_BRANCH=MOODLE_39_STABLE
matrix: matrix:
- DB=pgsql - DB=pgsql
- DB=mysqli - DB=mysqli
......
...@@ -6,6 +6,7 @@ Changes ...@@ -6,6 +6,7 @@ Changes
### Unreleased ### Unreleased
* 2020-09-18 - Prepare compatibility for Moodle 3.9.
* 2020-02-26 - Added Behat tests. * 2020-02-26 - Added Behat tests.
### v3.8-r1 ### v3.8-r1
......
...@@ -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.8+ This plugin requires Moodle 3.9+
Motivation for this plugin Motivation for this plugin
......
...@@ -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 = 2020021900; $plugin->version = 2020021900;
$plugin->release = 'v3.8-r1'; $plugin->release = 'v3.8-r1';
$plugin->requires = 2019111800; $plugin->requires = 2020061500;
$plugin->maturity = MATURITY_STABLE; $plugin->maturity = MATURITY_STABLE;
$plugin->dependencies = array('auth_ldap' => 2019111800); $plugin->dependencies = array('auth_ldap' => 2020061500);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment