File tree 6 files changed +15
-17
lines changed
6 files changed +15
-17
lines changed Original file line number Diff line number Diff line change 9
9
fail-fast : false
10
10
matrix :
11
11
include :
12
+ - php : ' 8.3'
13
+ moodle-branch : ' MOODLE_405_STABLE'
14
+ database : ' mariadb'
12
15
- php : ' 8.2'
13
16
moodle-branch : ' MOODLE_404_STABLE'
14
17
database : ' pgsql'
15
18
- php : ' 8.1'
16
19
moodle-branch : ' MOODLE_403_STABLE'
17
20
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
-
28
21
services :
29
22
postgres :
30
23
image : postgres:13
Original file line number Diff line number Diff line change 1
1
# CodeRunner
2
2
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
4
4
of Moodle must use CodeRunner V4.
5
5
6
6
Original file line number Diff line number Diff line change 1
1
# CHANGE HISTORY
2
2
3
- ### 2 January 2025. 5.5.0
3
+ ### 23 January 2025. 5.5.0
4
4
5
5
* New features:
6
6
* Addition of some unsupported question types, include an experimental C# dot net question type.
7
7
* Addition of an experimental capability for combinator grader questions to return files such as images
8
8
to be displayed in the response to the student. WARNING: these files do not survive
9
9
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).
10
15
* Various code tidying and Behat testing tweaks.
11
16
* Bug fixes:
12
17
* The layout of the testcase options in the author editing form were squished together in Moodle 4.5
Original file line number Diff line number Diff line change 3
3
'name ' => '__root__ ' ,
4
4
'pretty_version ' => 'dev-master ' ,
5
5
'version ' => 'dev-master ' ,
6
- 'reference ' => '2f5138bbed976a4c1ecf4ccd2d22f3537bb1e1f9 ' ,
6
+ 'reference ' => '4e3a951121052434b4e6b7f4e74260b3a1b2933c ' ,
7
7
'type ' => 'library ' ,
8
8
'install_path ' => __DIR__ . '/../../ ' ,
9
9
'aliases ' => array (),
13
13
'__root__ ' => array (
14
14
'pretty_version ' => 'dev-master ' ,
15
15
'version ' => 'dev-master ' ,
16
- 'reference ' => '2f5138bbed976a4c1ecf4ccd2d22f3537bb1e1f9 ' ,
16
+ 'reference ' => '4e3a951121052434b4e6b7f4e74260b3a1b2933c ' ,
17
17
'type ' => 'library ' ,
18
18
'install_path ' => __DIR__ . '/../../ ' ,
19
19
'aliases ' => array (),
Original file line number Diff line number Diff line change 22
22
23
23
defined ('MOODLE_INTERNAL ' ) || die ();
24
24
25
- $ plugin ->version = 2025011700 ;
26
- $ plugin ->requires = 2022041900 ;
25
+ $ plugin ->version = 2025012300 ;
26
+ $ plugin ->requires = 2023100900 ; # Moodle 4.3
27
27
$ plugin ->cron = 0 ;
28
28
$ plugin ->component = 'qtype_coderunner ' ;
29
29
$ plugin ->maturity = MATURITY_STABLE ;
30
- $ plugin ->release = '5.5 .0 ' ;
30
+ $ plugin ->release = '5.6 .0 ' ;
31
31
32
32
$ plugin ->dependencies = [
33
33
'qbehaviour_adaptive_adapted_for_coderunner ' => 2024041800 ,
You can’t perform that action at this time.
0 commit comments