From bde41be97e79008e6a1a82f17323f135d910ed4a Mon Sep 17 00:00:00 2001 From: Richard Lobb Date: Sat, 14 Sep 2024 12:31:06 +1200 Subject: [PATCH] Update change history, fix error in documentation of Twig QUESTION variable. --- Readme.md | 4 ++-- changehistory.md | 18 ++++++++++++++++++ 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/Readme.md b/Readme.md index abc53163..4be8e027 100644 --- a/Readme.md +++ b/Readme.md @@ -1521,8 +1521,8 @@ Other fields are: author. See under Combinator-template grading. * `QUESTION.language` The language being used to run the question in the sandbox, e.g. "Python3". - * `QUESTION.precheck` The setting of the precheck dropdown: 0 = no precheck -1 = precheck examples, 2 = precheck selected. + * `QUESTION.precheck` The setting of the precheck dropdown: 0 = no precheck, 1 = empty, +2 = precheck examples, 3 = precheck selected, 4 = all. * `QUESTION.hidecheck` True if the *Hide check* checkbox is set. * `QUESTION.iscombinatortemplate` True if this is a combinator question. * `QUESTION.penaltyregime` The penalty regime for this question. diff --git a/changehistory.md b/changehistory.md index 5adc5424..4a86dee8 100644 --- a/changehistory.md +++ b/changehistory.md @@ -1,5 +1,23 @@ # CHANGE HISTORY +### September 2024. 5.4.1 + + * New features: + * a Jobe-run cache stores run results, which dramatically + speeds up regrading of quizzes. Experimental, so off by default but has been + used extensively on our production server. One caution: cache can consume + a lot of disk space and clearing the cache on system upgrades can be slow. + * Support for Jobe server load balancing using cookies added (#206). + * Category and course shortname have been added to the bulk test report (#212). + * Full screen mode for Ace editor. + * Various code tidying and Behat testing improvements. + * Bug fixes: + * The prototypeextra field was missing from the Twig QUESTION variable (#211). + * PHP was issuing warnings "undefined property behat_prefix" (#208). + * The getallattempts script that was suppressing -precheck, -submit etc rows. + * Testcases marked as Precheck Only were not being validating on save. + * With combinator grader, all test cases were being displayed when a question didn't validate, rather than just the failed ones. + ### 11 February 2024. 5.3.0 * Significant refactoring to improve PHP8.2 compatibility, particularly with regard to dynamic attributes (thanks Anupama).