diff --git a/mod/quiz/upgrade.txt b/mod/quiz/upgrade.txt index 2319c92db6f..f0265b024c5 100644 --- a/mod/quiz/upgrade.txt +++ b/mod/quiz/upgrade.txt @@ -1,5 +1,12 @@ This files describes API changes in the quiz code. +=== 3.6 === + +* The following renamed classes have been completely removed: + - quiz_question_bank_view (now: mod_quiz\question\bank\custom_view) + - question_bank_add_to_quiz_action_column (now: mod_quiz\question\bank\add_action_column) + - question_bank_question_name_text_column (now: mod_quiz\question\bank\question_name_text_column) + === 3.5 === * Removed questionbank.ajax.php. Please use the quiz_question_bank fragment instead. * Adding "random" questions to a quiz via quiz_add_quiz_question() has been deprecated. Please use quiz_add_random_questions(). diff --git a/mod/scorm/report/basic/upgrade.txt b/mod/scorm/report/basic/upgrade.txt new file mode 100644 index 00000000000..64f4278f00a --- /dev/null +++ b/mod/scorm/report/basic/upgrade.txt @@ -0,0 +1,6 @@ +This files describes API changes in the mod scorm basic report + +=== 3.6 === + +* The following renamed classes have been completely removed: + - scorm_basic_report (now: scormreport_basic\report) \ No newline at end of file diff --git a/mod/scorm/upgrade.txt b/mod/scorm/upgrade.txt index f6b7d58b38a..0a09d709a0a 100644 --- a/mod/scorm/upgrade.txt +++ b/mod/scorm/upgrade.txt @@ -1,5 +1,10 @@ This files describes API changes in the mod_scorm code. +=== 3.6 === + +* The following renamed classes have been completely removed: + - scorm_default_report (now: mod_scorm\report) + === 3.5 === * In get_scorms_by_courses() external/ws function, the force new attempt setting is no longer a boolean - now accepts 3 values: No (0), On complete (1) and the new Always (2). See MDL-32585 for more details.