Skip to content

Commit 0a32480

Browse files
committed
Prepare compatibility for Moodle 5.0.
1 parent edc36d7 commit 0a32480

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'
@@ -30,8 +30,8 @@ jobs:
3030
strategy:
3131
fail-fast: false
3232
matrix:
33-
php: ['8.1', '8.2', '8.3']
34-
moodle-branch: ['MOODLE_405_STABLE']
33+
php: ['8.2', '8.3', '8.4']
34+
moodle-branch: ['MOODLE_500_STABLE']
3535
database: [pgsql, mariadb]
3636

3737
steps:

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ moodle-block_cohortspecifichtml
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-82183 and use new \core\output\html_writer

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This Text block provides the possibility to selectively display the block to mem
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 = 'block_cohortspecifichtml';
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 = ['block_html' => 2024060100];
33+
$plugin->dependencies = ['block_html' => 2025041400];

0 commit comments

Comments
 (0)