Skip to content

Commit

Permalink
Prepare compatibility for Moodle 4.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
abias committed Jan 15, 2024
1 parent 5805b6a commit a88d298
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/moodle-plugin-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

services:
postgres:
image: postgres:12
image: postgres:13
env:
POSTGRES_USER: 'postgres'
POSTGRES_HOST_AUTH_METHOD: 'trust'
Expand All @@ -30,8 +30,8 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ['7.4']
moodle-branch: ['MOODLE_39_STABLE']
php: ['7.4', '8.0', '8.1']
moodle-branch: ['MOODLE_401_STABLE']
database: [pgsql, mariadb]

steps:
Expand Down
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ moodle-tool_directsso
Changes
-------

### Unreleased

* 2024-01-15 - Prepare compatibility for Moodle 4.1.

### v3.9-r2

* 2024-01-15 - Improvement: Allow course as Direct Entry SSO target - inspired by Chris Murad.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Moodle admin tool which provides an entrypoint that can be used as persistent UR
Requirements
------------

This plugin requires Moodle 3.9+
This plugin requires Moodle 4.1+


Motivation for this plugin
Expand Down
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@
$plugin->component = 'tool_directsso';
$plugin->version = 2022062301;
$plugin->release = 'v3.9-r2';
$plugin->requires = 2020061512;
$plugin->supported = [39, 39];
$plugin->requires = 2022112800;
$plugin->supported = [401, 401];
$plugin->maturity = MATURITY_STABLE;

0 comments on commit a88d298

Please sign in to comment.