Skip to content

Commit

Permalink
NOBUG: Add upgrade notes
Browse files Browse the repository at this point in the history
  • Loading branch information
junpataleta committed Nov 22, 2024
1 parent 671514c commit f83ab42
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
14 changes: 14 additions & 0 deletions UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,20 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt

For more information see [MDL-82809](https://tracker.moodle.org/browse/MDL-82809)

### mod_quiz

#### Changed

- The `\mod_quiz\attempt_walkthrough_from_csv_test` unit test has been marked as final and should not be extended by other tests.

All shared functionality has been moved to a new autoloadable test-case:
`\mod_quiz\tests\attempt_walkthrough_testcase`.

To support this testcase the existing `$files` instance property should be replaced with a new static method, `::get_test_files`.
Both the existing instance property and the new static method can co-exist.

For more information see [MDL-81521](https://tracker.moodle.org/browse/MDL-81521)

## 4.5

### core
Expand Down
14 changes: 14 additions & 0 deletions mod/quiz/UPGRADING.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# mod_quiz Upgrade notes

## 4.5+

### Changed

- The `\mod_quiz\attempt_walkthrough_from_csv_test` unit test has been marked as final and should not be extended by other tests.

All shared functionality has been moved to a new autoloadable test-case:
`\mod_quiz\tests\attempt_walkthrough_testcase`.

To support this testcase the existing `$files` instance property should be replaced with a new static method, `::get_test_files`.
Both the existing instance property and the new static method can co-exist.

For more information see [MDL-81521](https://tracker.moodle.org/browse/MDL-81521)

## 4.5

### Added
Expand Down

0 comments on commit f83ab42

Please sign in to comment.