Skip to content

Commit bf07dbf

Browse files
committed
Update version, date etc and remove tests for older versions of Moodle and PHP no longer supported.
1 parent 4e3a951 commit bf07dbf

File tree

6 files changed

+15
-17
lines changed

6 files changed

+15
-17
lines changed

.github/workflows/ci.yml

+3-10
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,15 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
include:
12+
- php: '8.3'
13+
moodle-branch: 'MOODLE_405_STABLE'
14+
database: 'mariadb'
1215
- php: '8.2'
1316
moodle-branch: 'MOODLE_404_STABLE'
1417
database: 'pgsql'
1518
- php: '8.1'
1619
moodle-branch: 'MOODLE_403_STABLE'
1720
database: 'mariadb'
18-
- php: '8.0'
19-
moodle-branch: 'MOODLE_402_STABLE'
20-
database: 'pgsql'
21-
- php: '7.4'
22-
moodle-branch: 'MOODLE_401_STABLE'
23-
database: 'pgsql'
24-
- php: '7.3'
25-
moodle-branch: 'MOODLE_400_STABLE'
26-
database: 'mariadb'
27-
2821
services:
2922
postgres:
3023
image: postgres:13

Readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CodeRunner
22

3-
Version: 5.4.1 November 12, 2024. Requires **MOODLE V4.0 or later**. Earlier versions
3+
Version: 5.5.0 January 23, 2025. Requires **MOODLE V4.3 or later + PHP >=8.1**. Earlier versions
44
of Moodle must use CodeRunner V4.
55

66

changehistory.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
# CHANGE HISTORY
22

3-
### 2 January 2025. 5.5.0
3+
### 23 January 2025. 5.5.0
44

55
* New features:
66
* Addition of some unsupported question types, include an experimental C# dot net question type.
77
* Addition of an experimental capability for combinator grader questions to return files such as images
88
to be displayed in the response to the student. WARNING: these files do not survive
99
course backup/restore cycles and would need to be rebuilt by regrading if wanted.
10+
* An enhanced bulk tester that supports multiple tests of randomised questions, setting of
11+
the random seed for such runs, and rerunning of failed tests.
12+
* Addition of a script to purge the Jobe cache.
13+
* Improved styling of question authoring window (thanks Luca Bösch).
14+
* Preliminary updates for Moodle 5 compatability (a work in progress still).
1015
* Various code tidying and Behat testing tweaks.
1116
* Bug fixes:
1217
* The layout of the testcase options in the author editing form were squished together in Moodle 4.5

moodlebook3.3.0.zip

-47.2 KB
Binary file not shown.

vendor/composer/installed.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
'name' => '__root__',
44
'pretty_version' => 'dev-master',
55
'version' => 'dev-master',
6-
'reference' => '2f5138bbed976a4c1ecf4ccd2d22f3537bb1e1f9',
6+
'reference' => '4e3a951121052434b4e6b7f4e74260b3a1b2933c',
77
'type' => 'library',
88
'install_path' => __DIR__ . '/../../',
99
'aliases' => array(),
@@ -13,7 +13,7 @@
1313
'__root__' => array(
1414
'pretty_version' => 'dev-master',
1515
'version' => 'dev-master',
16-
'reference' => '2f5138bbed976a4c1ecf4ccd2d22f3537bb1e1f9',
16+
'reference' => '4e3a951121052434b4e6b7f4e74260b3a1b2933c',
1717
'type' => 'library',
1818
'install_path' => __DIR__ . '/../../',
1919
'aliases' => array(),

version.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@
2222

2323
defined('MOODLE_INTERNAL') || die();
2424

25-
$plugin->version = 2025011700;
26-
$plugin->requires = 2022041900;
25+
$plugin->version = 2025012300;
26+
$plugin->requires = 2023100900; # Moodle 4.3
2727
$plugin->cron = 0;
2828
$plugin->component = 'qtype_coderunner';
2929
$plugin->maturity = MATURITY_STABLE;
30-
$plugin->release = '5.5.0';
30+
$plugin->release = '5.6.0';
3131

3232
$plugin->dependencies = [
3333
'qbehaviour_adaptive_adapted_for_coderunner' => 2024041800,

0 commit comments

Comments
 (0)