MDL-55609 mod_assign: Deprecate base_test
[moodle.git] / mod / assign / upgrade.txt
blobd32481c41b92e5896b29080181fc6fbef4a6177a
1 This files describes API changes in the assign code.
3 === 3.6 ===
4 * The mod_assign_base_testcase unit test base class has been deprecated.
5   It encouraged poor unit test design and led to significant performance issues with unit tests. See MDL-55609 for
6   further information.
8 === 3.5 ===
9 * Functions assign:get_assign_grading_summary_renderable, assign:can_view_submission, assign:count_submissions_with_status,
10   assign:count_submissions_need_grading and mod_assign_external::get_submission_status now admit an additional group parameter.
11   This parameter can be used to force those functions to retrieve data only for the given group.
13 === 3.4 ===
14 * assign::add_attempt requires that set_most_recent_team_submission() be called if attempting to use this function with a team
15   submission.
17 === 3.3.2 ===
18 * assign_refresh_events() Now takes two additional parameters to refine the update to a specific instance. This function
19   now optionally takes the module instance object or ID, and the course module object or ID. Please try to send the full
20   objects instead of the ids to save DB calls.
22 === 3.3 ===
23 * All pluginfile file serving functions now pass through the options to send_stored_file() (all assignment plugins should do
24   the same).
25 * Fixed calendar event types for overridden due dates from 'close' to 'due'.
26 * Removed calendar event type of 'open', since mod_assign only has the 'due' event type. No point in creating an override event
27 for an event type that does not exist.
29 === 3.2 ===
30 * External function mod_assign_external::get_assignments now returns additional optional fields:
31    - preventsubmissionnotingroup: Prevent submission not in group.
32    - submissionstatement and submissionstatementformat: When there is a submission statement defined.
33 * Proper checking for empty submissions
34 * Submission modification time checking - this will help students working in groups not clobber each others'
35   submissions
36 * External functions that were returning file information now return the following file fields:
37   filename, filepath, mimetype, filesize, timemodified and fileurl.
38   Those fields are now marked as VALUE_OPTIONAL for backwards compatibility.
39   Please, note that previously the filename was part of the filepath field, now they are separated.
40 * Submission and feedback plugins can now specify file areas related to their configuration data,
41   which will then be included in backup and restore; see assign_plugin::get_config_file_areas().
42 * Submission and feedback plugins must now return the specific list of configs available for external functions,
43   this can be done implementing the new assign plugin method get_config_for_external()
44 * Webservice function mod_assign_get_submissions returns a new field 'gradingstatus' from each submission.
46 === 3.1 ===
47 * The feedback plugins now need to implement the is_feedback_modified() method. The default is to return true
48   for backwards compatibiltiy.
49 * When downloading all submissions as a zip each students' files are in a separate folder, are no longer renamed
50   and the folder structure is kept intact.
52 === 3.0 ===
53 * assign_submission_status renderable now requires $usergroups in its constructor
54 * External function mod_assign_external::get_assignments now have a new optional parameter: includenotenrolledcourses.
55   Its default value is false, setting it to true will return assignments for courses a user can see even if it's not enroled.
57 === 2.9 ===
58 * External parameter now returns PARAM_RAW instead of PARAM_TEXT for webservices using feedback comments.
59 * External function mod_assign_external::get_assignments now returns additional optional fields:
60    - intro: Assignment intro.
61    - introformat: Intro format.
62    - introattachments: Intro attachments files.
64 === 2.8 ===
65 * Some DB changes were made to simplify the SQL required to query the latest attempt.
66   - The assign_submission table now has a column "latest" which is set to 1 for the latest submission attempt.
67   - There will always be a submission row if there is a grade (so the latest grade can be found by joining with the submission)
68   - There is a new submission status "new" for a submission that has never been attempted by a student (but the record exists purely
69     to mark the latest attempt number as 0). The function get_user_submission will create a record with the status set to "new"
70     by default (the previous default was "draft").
72 === 2.7 ===
74 * Added setting sendstudentnotifications to assign DB table with admin defaults. This sets the default value for the
75   "Notify students" option on the grading forms. This setting can be retrieved via webservices.
77 * Web service function mod_assign_save_grade has an additional optional parameter $advancedgradingdata which allows
78   advanced grading data to be used.
79 * A new web service function mod_assign_save_grades has been added which allows multiple grades to be processed.
80 * The event submission_updated() [mod/assign/classes/event/submission_updated.php] has been altered to now be an abstract class
81   for submission events in the submission plug-ins.
83 === 2.6.1 ===
85 * format_text() is no longer used for formating assignment content to be used in events (assign_submission_onlinetext::save()) or
86   the word count (assign_submission_onlinetext::format_for_log()) in mod/assign/submission/onlinetext/locallib.php. format_text()
87   should only be used when displaying information to the screen. It was being used incorrectly before in these areas. Plugins using
88   the event assessable_uploaded() should use file_rewrite_pluginfile_urls() to translate the text back to the desired output.
90 === 2.6 ===
91 * To see submission/grades of inactive users, user should have moodle/course:viewsuspendedusers capability.
92 * count_* functions will return only active participants.
93 * assign_submission_plugin->lock and unlock methods have an additional parameter for user flags. A user will not
94   always have a submission record when the submission is locked/unlocked.
95 * Submission and feedback plugins can now participate in webservices. The plugin must implement get_external_parameters()
96   to describe the parameters it is expecting from the mod_assign_save_grade or mod_assign_save_submission functions. The
97   plugin will then handle the webservice via it's normal save() method with the extra data supplied in the $data argument.
99 === 2.5 ===
101 * New feature - Attempt History
103     This adds settings so that a student can have build up a history of separate submission attempts and grades for the same
104     assignment.
106     Extra settings on the assign table are:
107     attemptreopenmethod - The way attempts can be reopened. One of:
108                             ASSIGN_ATTEMPT_REOPEN_METHOD_NONE - Attempts cannot be reopened (default)
109                             ASSIGN_ATTEMPT_REOPEN_METHOD_UNTIL_PASS - Attempts are reopened on grading until the gradebook
110                                                                       indicates this student has passed.
111                             ASSIGN_ATTEMPT_REOPEN_METHOD_MANUAL - Attempts are reopened on manually by the grader.
112     maxattempts - The maximum allowed number of attempts per student for this assign instance.
114     Extra settings on the submission and grade records:
115     attemptnumber - Starting from 0 until the latest attempt.
117     New table assign_user_flags holds user specific flags that were stored in the assign_grade table.  (contains assignment,
118     userid, extensionduedate, mailed and locked)
120     assign changes:
121         "get_user_grade" function has an extra optional parameter to retrieve a specific attempt number.
122         "get_user_submission" function has an extra optional parameter to retrieve a specific attempt number.
123         "get_group_submission" function has an extra optional parameter to retrieve a specific attempt number.
124         new "get_user_flags" function can retrieve the user flags for a specific user (extensionduedate, mailed and locked).
125         new "update_user_flags" function can update the user flags for a specific user (extensionduedate, mailed and locked).
127     assign_submission_plugin changes:
128         "precheck_submission" function now takes a submission record so you can determine which submission is being checked.
129         "submit_for_grading" function now takes a submission record so you can determine which submission is being submitted.
130         new function "copy_submission" can be implemented to copy submission data from one submission to a new one.
132     New renderable object "assign_attempt_history" for rendering the list of previous submissions.
133     New renderable object "assign_gradingmessage" for rendering a generic grading message.
135     assign_grading_table changes:
136         get_group_and_submission is now protected and should not be called from outside this class.
139 === Earlier changes ===
141 * Were not documented in this way. Sorry.