Skip to content

Commit 7a3c770

Browse files
committed
Prepare compatibility for Moodle 5.0.
1 parent 066c9c3 commit 7a3c770

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

.github/workflows/moodle-plugin-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
services:
1010
postgres:
11-
image: postgres:13
11+
image: postgres:14
1212
env:
1313
POSTGRES_USER: 'postgres'
1414
POSTGRES_HOST_AUTH_METHOD: 'trust'
@@ -24,8 +24,8 @@ jobs:
2424
strategy:
2525
fail-fast: false
2626
matrix:
27-
php: ['8.1', '8.2', '8.3']
28-
moodle-branch: ['MOODLE_405_STABLE']
27+
php: ['8.2', '8.3', '8.4']
28+
moodle-branch: ['MOODLE_500_STABLE']
2929
database: [pgsql]
3030
extensions: [redis]
3131

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ moodle-tool_redis
44
Changes
55
-------
66

7+
### Unreleased
8+
9+
* 2025-04-14 - Prepare compatibility for Moodle 5.0.
10+
711
### v4.5-r1
812

913
* 2024-10-14 - Upgrade: Adopt changes from MDL-81960 and use new \core\url class

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Moodle plugin which adds a Redis management GUI to Moodle site administration.
99
Requirements
1010
------------
1111

12-
This plugin requires Moodle 4.5+
12+
This plugin requires Moodle 5.0+
1313

1414

1515
Motivation for this plugin

version.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
$plugin->component = 'tool_redis';
2828
$plugin->version = 2024100700;
2929
$plugin->release = 'v4.5-r1';
30-
$plugin->requires = 2024100700;
31-
$plugin->supported = [405, 405];
30+
$plugin->requires = 2025041400;
31+
$plugin->supported = [500, 500];
3232
$plugin->maturity = MATURITY_STABLE;
33-
$plugin->dependencies = ['cachestore_redis' => 2024060100];
33+
$plugin->dependencies = ['cachestore_redis' => 2025041400];

0 commit comments

Comments
 (0)