MDL-67810 core_contentbank: added dropdown menu to create content
[moodle.git] / lib / upgrade.txt
blob4e79b93075049b1ed9dfaacf9d7ff1f5ac13c442
1 This files describes API changes in core libraries and APIs,
2 information provided here is intended especially for developers.
4 === 3.9 ===
5 * Following function has been deprecated, please use \core\task\manager::run_from_cli().
6     - cron_run_single_task()
7 * Following class has been deprecated, please use \core\task\manager.
8     - \tool_task\run_from_cli
9 * Following CLI scripts has been deprecated:
10   - admin/tool/task/cli/schedule_task.php please use admin/cli/scheduled_task.php
11   - admin/tool/task/cli/adhoc_task.php please use admin/cli/adhoc_task.php
12 * Old Safe Exam Browser quiz access rule (quizaccess_safebrowser) replaced by new Safe Exam Browser access rule (quizaccess_seb).
13   Experimental setting enablesafebrowserintegration was deleted.
14 * New CFPropertyList library has been added to Moodle core in /lib/plist.
15 * behat_data_generators::the_following_exist() has been removed, please use
16   behat_data_generators::the_following_entities_exist() instead. See MDL-67691 for more info.
17 * admin/tool/task/cli/adhoc_task.php now observers the concurrency limits.
18   If you want to get the previous (unlimited) behavior, use the --ignorelimits switch).
19 * Removed the following deprecated functions:
20   - question_add_tops
21   - question_is_only_toplevel_category_in_context
22 * format_float() now accepts a special value (-1) as the $decimalpoints parameter
23   which means auto-detecting number of decimal points.
24 * plagiarism_save_form_elements() has been deprecated. Please use {plugin name}_coursemodule_edit_post_actions() instead.
25 * plagiarism_get_form_elements_module() has been deprecated. Please use {plugin name}_coursemodule_standard_elements() instead.
26 * Changed default sessiontimeout to 8 hours to cover most normal working days
27 * Plugins can now explicitly declare supported and incompatible Moodle versions in version.php
28   - $plugin->supported = [37,39];
29     supported takes an array of ascending numbers, that correspond to a range of branch numbers of supported versions, inclusive.
30     Moodle versions that are outside of this range will produce a message notifying at install time, but will allow for installation.
31   - $plugin->incompatible = 36;
32     incompatible takes a single int corresponding to the first incompatible branch. Any Moodle versions including and
33     above this will be prevented from installing the plugin, and a message will be given when attempting installation.
34 * Added the <component>_bulk_user_actions() callback which returns a list of custom action_links objects
35 * Add 'required' admin flag for mod forms allows elements to be toggled between being required or not in admin settings.
36   - In mod settings, along with lock, advanced flags, the required flag can now be set with $setting->set_required_flag_options().
37     The name of the admin setting must be exactly the same as the mod_form element.
38   - Currently supported by:
39     - mod_assign
40     - mod_quiz
41 * Added a native MySQL / MariaDB lock implementation
42 * The database drivers (moodle_database and subclasses) don't need to implement get_columns() anymore.
43   They have to implement fetch_columns instead.
44 * Added function cleanup_after_drop to the database_manager class to take care of all the cleanups that need to be done after a table is dropped.
45 * The 'xxxx_check_password_policy' callback now only fires if $CFG->passwordpolicy is true
46 * grade_item::update_final_grade() can now take an optional parameter to set the grade->timemodified. If not present the current time will carry on being used.
47 * lib/outputrequirementslib::get_jsrev now is public, it can be called from other classes.
48 * H5P libraries have been moved from /lib/h5p to h5p/h5plib as an h5plib plugintype.
49 * mdn-polyfills has been renamed to polyfills. The reason there is no polyfill from the MDN is
50   because there is no example polyfills on the MDN for this functionality.
51 * AJAX pages can be called without requiring a session lock if they set READ_ONLY_SESSION to true, eg.
52   define('READ_ONLY_SESSION', true); Note - this also requires $CFG->enable_read_only_sessions to be set to true.
53 * External functions can be called without requiring a session lock if they define 'readonlysession' => true in
54   db/services.php. Note - this also requires $CFG->enable_read_only_sessions to be set to true.
55 * database_manager::check_database_schema() now checks for missing and extra indexes.
56 * Implement a more direct xsendfile_file() method for an alternative_file_system_class
57 * A new `dynamic` table interface has been defined, which allows any `flexible_table` to be converted into a table which
58   is updatable via ajax calls. See MDL-68495 and `\core_table\dynamic` for further information.
59 * The core/notification module has been updated to use AMD modals for its confirmation and alert dialogues.
60   The confirmation dialogue no longer has a configurable "No" button as per similar changes in MDL-59759.
61   This set of confirmation modals was unintentionally missed from that deprecation process.
62 * The download_as_dataformat() method has been deprecated. Please use \core\dataformat::download_data() instead
63 * The following functions have been updated to support passing in an array of group IDs (but still support passing in a single ID):
64   * groups_get_members_join()
65   * groups_get_members_ids_sql()
66 * Additional parameters were added to core_get_user_dates:
67     - type: specifies the calendar type. Optional, defaults to Gregorian.
68     - fixday: Whether to remove leading zero for day. Optional, defaults to 1.
69     - fixhour: Whether to remove leading zero for hour. Optional, defaults to 1.
70 * Legacy cron has been deprecated and will be removed in Moodle 4.3. This includes the functions:
71   - cron_execute_plugin_type()
72   - cron_bc_hack_plugin_functions()
73   Please, use the Task API instead: https://docs.moodle.org/dev/Task_API
74 * Introduce new hooks for plugin developers:
75     - <component>_can_course_category_delete($category)
76     - <component>_can_course_category_delete_move($category, $newcategory)
77   These hooks allow plugin developers greater control over category deletion. Plugin can return false in those
78   functions if category deletion or deletion with content move to the new parent category is not permitted.
79   Both $category and $newcategory params are instances of core_course_category class.
80     - <component>_pre_course_category_delete_move($category, $newcategory)
81   This hook is expanding functionality of existing <component>_pre_course_category_delete hook and allow plugin developers
82   to execute code prior to category deletion when its content is moved to another category.
83   Both $category and $newcategory params are instances of core_course_category class.
84     - <component>_get_course_category_contents($category)
85   This hook allow plugin developers to add information that is displayed on category deletion form. Function should
86   return string, which will be added to the list of category contents shown on the form. $category param is an instance
87   of core_course_category class.
88 * Data generator create_user in both unittests and behat now validates user fields and triggers user_created event
90 === 3.8 ===
91 * Add CLI option to notify all cron tasks to stop: admin/cli/cron.php --stop
92 * The rotate_image function has been added to the stored_file class (MDL-63349)
93 * The yui checknet module is removed. Call \core\session\manager::keepalive instead.
94 * The generate_uuid() function has been deprecated. Please use \core\uuid::generate() instead.
95 * Remove lib/pear/auth/RADIUS.php (MDL-65746)
96 * Core components are now defined in /lib/components.json instead of coded into /lib/classes/component.php
97 * Subplugins should now be defined using /db/subplugins.json instead of /db/subplugins.php
98 * The following functions have been finally deprecated and can not be used anymore:
99     * allow_override()
100     * allow_assign()
101     * allow_switch()
102     * https_required()
103     * verify_https_required()
104 * Remove duplicate font-awesome SCSS, Please see /theme/boost/scss/fontawesome for usage (MDL-65936)
105 * Remove lib/pear/Crypt/CHAP.php (MDL-65747)
106 * New output component available: \core\output\checkbox_toggleall
107   - This allows developers to easily output groups of checkboxes that can be toggled by master controls in the form of a checkbox or
108     a button. Action elements which perform actions on the selected checkboxes can also be enabled/disabled depending on whether
109     at least a single checkbox item is selected or not.
110 * Final deprecation (removal) of the core/modal_confirm dialogue.
111 * Upgrade scssphp to v1.0.2, This involves renaming classes from Leafo => ScssPhp as the repo has changed.
112 * Implement supports_xsendfile() method and allow support for xsendfile in alternative_file_system_class
113   independently of local files (MDL-66304).
114 * The methods get_local_path_from_storedfile and get_remote_path_from_storedfile in lib/filestore/file_system.php
115   are now public. If you are overriding these then you will need to change your methods to public in your class.
116 * It is now possible to use sub-directories for AMD modules.
117   The standard rules for Level 2 namespaces also apply to AMD modules.
118   The sub-directory used must be either an valid component, or placed inside a 'local' directory to ensure that it does not conflict with other components.
120     The following are all valid module names and locations in your plugin:
121       mod_forum/view: mod/forum/amd/src/view.js
122       mod_forum/local/views/post: mod/forum/amd/src/local/views/post
123       mod_forum/form/checkbox-toggle: mod/forum/amd/src/form/checkbox-toggle.js
125     The following are all invalid module names and locations in your plugin:
126       mod_forum/views/post: mod/forum/amd/src/views/post
127 * The 'xxxx_check_password_policy' method now has an extra parameter: $user. It contains the user object to perform password
128 validation against and defaults to null (so, no user needed) if not provided.
129 * It is now possible to use sub-directories when creating mustache templates.
130   The standard rules for Level 2 namespaces also apply to templates.
131   The sub-directory used must be either an valid component, or placed inside a 'local' directory to ensure that it does not conflict with other components.
133     The following are all valid template names and locations in your plugin:
134       mod_forum/forum_post: mod/forum/templates/forum_post.mustache
135       mod_forum/local/post/user: mod/forum/templates/local/post/user.mustache
136       mod_forum/form/checkbox_toggle: mod/forum/templates/form/checkbox_toggle.mustache
138     The following are _invalid_ template names and locations:
139       mod_forum/post/user: mod/forum/templates/local/post/user.mustache
140 * Following behat steps have been removed from core:
141     - I go to "<gradepath_string>" in the course gradebook
142 * A new admin setting widget 'core_admin\local\settings\filesize' is added.
143 * Core capabilities 'moodle/community:add' and 'moodle/community:download' have been removed from core as part of Moodle.net sunsetting.
144 * As part of Moodle.net sunsetting process the following hub api functions have been deprecated:
145     - get_courses
146     - unregister_courses
147     - register_course
148     - add_screenshot
149     - download_course_backup
150     - upload_course_backup
151 * A new setting 'Cache templates' was added (see MDL-66367). This setting determines if templates are cached or not.
152   This setting can be set via the UI or by defining $CFG->cachetemplates in your config.php file. It is a boolean
153   and should be set to either false or true. Developers will probably want to set this to false.
154 * The core_enrol_edit_user_enrolment webservice has been deprecated. Please use core_enrol_submit_user_enrolment_form instead.
155 * \single_button constructor has a new attributes param to add attributes to the button HTML tag.
156 * Improved url matching behaviour for profiled urls and excluded urls
157 * Attempting to use xsendfile via the 3rd param of readstring_accel() is now ignored.
158 * New H5P libraries have been added to Moodle core in /lib/h5p.
159 * New H5P core subsystem have been added.
160 * Introduced new callback for plugin developers '<component>_get_path_from_pluginfile($filearea, $args)': This will return
161 the itemid and filepath for the filearea and path defined in $args. It has been added in order to get the correct itemid and
162 filepath because some components, such as mod_page or mod_resource, add the revision to the URL where the itemid should be placed
163 (to prevent caching problems), but then they don't store it in database.
164 * New utility function \core_form\util::form_download_complete should be called if your code sends
165   a file with Content-Disposition: Attachment in response to a Moodle form submit button (to ensure
166   that disabled submit buttons get re-enabled in that case). It is automatically called by the
167   filelib.php send_xx functions.
168 * If you have a form which sends a file in response to a Moodle form submit button, but you cannot
169   call the above function because the file is sent by a third party library, then you should add
170   the attribute data-double-submit-protection="off" to your form.
172 === 3.7 ===
174 * Nodes in the navigation api can have labels for each group. See set/get_collectionlabel().
175 * The method core_user::is_real_user() now returns false for userid = 0 parameter
176 * 'mform1' dependencies (in themes, js...) will stop working because a randomly generated string has been added to the id
177 attribute on forms to avoid collisions in forms loaded in AJAX requests.
178 * A new method to allow queueing or rescheduling of an existing scheduled task was added. This allows an existing task
179   to be updated or queued as required. This new functionality can be found in \core\task\manager::reschedule_or_queue_adhoc_task.
180 * Icons are displayed for screen readers unless they have empty alt text (aria-hidden). Do not provide an icon with alt text immediately beside an element with exactly the same text.
181 * admin_settingpage has a new function hide_if(), modeled after the same functionality in the forms library. This allows admin settings to be dynamically hidden based on the values of other settings.
182 * The \core_rating provider's get_sql_join function now accepts an optional $innerjoin parameter.
183   It is recommended that privacy providers using this function call rewrite any long query into a number of separate
184   calls to add_from_sql for improved performance, and that the new argument is used.
185   This will allow queries to remain backwards-compatible with older versions of Moodle but will have significantly better performance in version supporting the innerjoin parameter.
186 * /message/defaultoutputs.php file and admin_page_defaultmessageoutputs class have been deprecated
187   and all their settings moved to admin/message.php (see MDL-64495). Please use admin_page_managemessageoutputs class instead.
188 * A new parameter $lang has been added to mustache_template_source_loader->load_with_dependencies() method
189   so it is possible for Mustache to request string in a specific language.
190 * Behat timeout constants behat_base::TIMEOUT, EXTENDED_TIMEOUT, and REDUCED_TIMEOUT have been
191   deprecated. Please instead use the functions behat_base::get_timeout(), get_extended_timeout(),
192   and get_reduced_timeout(). These allow for timeouts to be increased by a setting in config.php.
193 * The $draftitemid parameter of file_save_draft_area_files() function now supports the constant IGNORE_FILE_MERGE:
194   When the parameter is set to that constant, the function won't process file merging, keeping the original state of the file area.
195   Notice also than when $text is set, pluginfile rewrite won't be processed so the text will not be modified.
196 * Introduced new callback for plugin developers '<component>_pre_processor_message_send($procname, $proceventdata)':
197   This will allow any plugin to manipulate messages or notifications before they are sent by a processor (email, mobile...)
198 * New capability 'moodle/category:viewcourselist' in category context that controls whether user is able to browse list of courses
199   in this category. To work with list of courses use API methods in core_course_category and also 'course' form element.
200 * It is possible to pass additional conditions to get_courses_search();
201   core_course_category::search_courses() now allows to search only among courses with completion enabled.
202 * Add support for a new xxx_after_require_login callback
203 * A new conversation type has been created for self-conversations. During the upgrading process:
204   - Firstly, the existing self-conversations will be starred and migrated to the new type, removing the duplicated members in the
205   message_conversation_members table.
206   - Secondly, the legacy self conversations will be migrated from the legacy 'message_read' table. They will be created using the
207   new conversation type and will be favourited.
208   - Finally, the self-conversations for all remaining users without them will be created and starred.
209 Besides, from now, a self-conversation will be created and starred by default to all the new users (even when $CFG->messaging
210 is disabled).
211 * New optional parameter $throwexception for \get_complete_user_data(). If true, an exception will be thrown when there's no
212   matching record found or when there are multiple records found for the given field value. If false, it will simply return false.
213   Defaults to false when not set.
214 * Exposed submit button to allow custom styling (via customclassoverride variable) which can override btn-primary/btn-secondary classes
215 * `$includetoken` parameter type has been changed. Now supports:
216    boolean: False indicates to not include the token, true indicates to generate a token for the current user ($USER).
217    integer: Indicates to generate a token for the user whose id is the integer value.
218 * The following functions have been updated to support the new usage:
219     - make_pluginfile_url
220     - file_rewrite_pluginfile_urls
221 * New mform element 'float' handles localised floating point numbers.
223 === 3.6 ===
225 * A new token-based version of pluginfile.php has been added which can be used for out-of-session file serving by
226   setting the `$includetoken` parameter to true on the `moodle_url::make_pluginfile_url()`, and
227   `moodle_url::make_file_url()` functions.
228 * The following picture functions have been updated to support use of the new token-based file serving:
229     - print_group_picture
230     - get_group_picture_url
231 * The `user_picture` class has a new public `$includetoken` property which can be set to make use of the new token-based
232   file serving.
233 * Custom AJAX handlers for the form autocomplete fields can now optionally return string in their processResults()
234   callback. If a string is returned, it is displayed instead of the list of suggested items. This can be used, for
235   example, to inform the user that there are too many items matching the current search criteria.
236 * The form element 'htmleditor' has been deprecated. Please use the 'editor' element instead.
237 * The print_textarea() function has been deprecated. Please use $OUTPUT->print_textarea() instead.
238 * The following functions have been finally deprecated and can not be used any more:
239     - external_function_info()
240     - core_renderer::update_module_button()
241     - events_trigger()
242     - events_cron()
243     - events_dispatch()
244     - events_is_registered()
245     - events_load_def()
246     - events_pending_count()
247     - events_process_queued_handler()
248     - events_queue_handler()
249     - events_trigger_legacy()
250     - events_update_definition()
251     - get_file_url()
252     - course_get_cm_rename_action()
253     - course_scale_used()
254     - site_scale_used()
255     - clam_message_admins()
256     - get_clam_error_code()
257     - get_records_csv()
258     - put_records_csv()
259     - print_log()
260     - print_mnet_log()
261     - print_log_csv()
262     - print_log_xls()
263     - print_log_ods()
264     - build_logs_array()
265     - get_logs_usercourse()
266     - get_logs_userday()
267     - get_logs()
268     - prevent_form_autofill_password()
269     - prefixed_tablenode_transformations()
270     - core_media_renderer
271     - core_media
272 * Following api's have been removed in behat_config_manager, please use behat_config_util instead.
273     - get_features_with_tags()
274     - get_components_steps_definitions()
275     - get_config_file_contents()
276     - merge_behat_config()
277     - get_behat_profile()
278     - profile_guided_allocate()
279     - merge_config()
280     - clean_path()
281     - get_behat_tests_path()
282 * Following behat steps have been removed from core:
283     - I set the field "<field_string>" to multiline
284     - I follow "<link_string>"" in the open menu
285 * The following behat steps have been deprecated, please do not use these step definitions any more:
286     - behat_navigation.php: i_navigate_to_node_in()
287     - theme/boost/tests/behat/behat_theme_boost_behat_navigation.php: i_navigate_to_node_in()
288   Use one of the following steps instead:
289     - I navigate to "PATH > ITEM" in current page administration
290     - I navigate to "PATH > ITEM" in site administration
291     - I navigate to course participants
292     - I navigate to "TAB1 > TAB2" in the course gradebook
293   If some items are not available without Navigation block at all, one can use combination of:
294     - I add the "Navigation" block if not present
295     - I click on "LINK" "link" in the "Navigation" "block"
296 * The core\session\util class has been removed. This contained one function only used by the memcached class which has
297   been moved there instead (connection_string_to_memcache_servers).
298 * Removed the lib/password_compat/lib/password.php file.
299 * The eventslib.php file has been deleted and its functions have been moved to deprecatedlib.php. The affected functions are:
300   - events_get_cached()
301   - events_uninstall()
302   - events_cleanup()
303   - events_dequeue()
304   - events_get_handlers()
305 * coursecat::get() now has optional $user parameter.
306 * coursecat::is_uservisible() now has optional $user parameter.
307 * Removed the lib/form/submitlink.php element which was deprecated in 3.2.
308 * The user_selector classes do not support custom list of extra identity fields any more. They obey the configured user
309   policy and respect the privacy setting made by site administrators. The list of user identifiers should never be
310   hard-coded. Instead, the setting $CFG->showuseridentity should be always respected, which has always been the default
311   behaviour (MDL-59847).
312 * The function message_send() in messagelib.php will now only take the object \core\message\message as a parameter.
313 * The method message_sent::create_from_ids() parameter courseid is now required. A debugging
314   message was previously displayed, and the SITEID was used, when not provided.
315 * The method \core\message\manager::send_message() now only takes the object \core\message\message as the first parameter.
316 * Following functions have been deprecated, please use get_roles_used_in_context.
317     - get_roles_on_exact_context()
318     - get_roles_with_assignment_on_context()
319 * New functions to support the merging of user draft areas from the interface; see MDL-45170 for details:
320   - file_copy_file_to_file_area()
321   - file_merge_draft_areas()
322   - file_replace_file_area_in_text()
323   - extract_draft_file_urls_from_text()
324 * Class coursecat is now alias to autoloaded class core_course_category, course_in_list is an alias to
325   core_course_list_element, class coursecat_sortable_records is deprecated without replacement.
326 * \core_user_external::create_users() and \core_user_external::update_users() can now accept more user profile fields so user
327   creation/update via web service can now be very similar to the edit profile page's functionality. The new fields that have been
328   added are:
329   - maildisplay
330   - interests
331   - url
332   - icq
333   - skype
334   - aim
335   - yahoo
336   - msn
337   - institution
338   - department
339   - phone1
340   - phone2
341   - address
342 * New function mark_user_dirty() must be called after changing data that gets cached in user sessions. Examples:
343   - Assigning roles to users.
344   - Unassigning roles from users.
345   - Enrolling users into courses.
346   - Unenrolling users from courses.
347 * New optional parameter $context for the groups_get_members_join() function and ability to filter users that are not members of
348 any group. Besides, groups_get_members_ids_sql, get_enrolled_sql and get_enrolled_users now accepts -1 (USERSWITHOUTGROUP) for
349 the groupid field.
350 * Added $CFG->conversionattemptlimit setting to config.php allowing a maximum number of retries before giving up conversion
351   of a given document by the assignfeedback_editpdf\task\convert_submissions task. Default value: 3.
352 * The following events have been deprecated and should not be used any more:
353   - message_contact_blocked
354   - message_contact_unblocked
355   The reason for this is because you can now block/unblock users without them necessarily being a contact. These events
356   have been replaced with message_user_blocked and message_user_unblocked respectively.
357 * The event message_deleted has been changed, it no longer records the value of the 'useridto' due to
358   the introduction of group messaging. Please, if you have any observers or are triggering this event
359   in your code you will have to make some changes!
360 * The gradebook now supports the ability to accept files as feedback. This can be achieved by adding
361   'feedbackfiles' to the $grades parameter passed to grade_update().
362     For example -
363         $grades['feedbackfiles'] = [
364             'contextid' => 1,
365             'component' => 'mod_xyz',
366             'filearea' => 'mod_xyz_feedback',
367             'itemid' => 2
368         ];
369   These files will be then copied to the gradebook file area.
370 * Allow users to choose who can message them for privacy reasons, with a 'growing circle of contactability':
371   - Added $CFG->messagingallusers, for enabling messaging to all site users. Default value: 0.
372     When $CFG->messagingallusers = false users can choose being contacted by only contacts or contacts and users sharing a course with them.
373     In that case, the default user preference is MESSAGE_PRIVACY_COURSEMEMBER (users sharing a course).
374     When $CFG->messagingallusers = true users have a new option for the privacy messaging preferences: "Anyone on the site". In that case,
375     the default user preference is MESSAGE_PRIVACY_SITE (all site users).
376   - Added $CFG->keepmessagingallusersenabled setting to config.php to force enabling $CFG->messagingallusers during the upgrading process.
377     Default value: 0.
378     When $CFG->keepmessagingallusersenabled is set to true, $CFG->messagingallusers will be also set to true to enable messaging site users.
379     However, when it is empty, $CFG->messagingallusers will be disabled during the upgrading process, so the users will only be able to
380     message contacts and users sharing a course with them.
381 * There has been interface and functional changes to admin_apply_default_settings() (/lib/adminlib.php).  The function now takes two
382   additional optional parameters, $admindefaultsettings and $settingsoutput.  It also has a return value $settingsoutput.
383   The function now does not need to be called twice to ensure all default settings are set.  Instead the function calls itself recursively
384   until all settings have been set. The additional parameters are used recursively and shouldn't be need to be explicitly passed in when calling
385   the function from other parts of Moodle.
386   The return value: $settingsoutput is an array of setting names and the values that were set by the function.
387 * Webservices no longer update the lastaccess time for a user in a course. Call core_course_view_course() manually if needed.
388 * A new field has been added to the context table. Please ensure that any contxt preloading uses get_preload_record_columns_sql or get_preload_record_columns to fetch the list of columns.
390 === 3.5 ===
392 * There is a new privacy API that every subsystem and plugin has to implement so that the site can become GDPR
393   compliant. Plugins use this API to report what information they store or process regarding users, and provide ability
394   to export and delete personal data. See https://docs.moodle.org/dev/Privacy_API for guidelines on how to implement the
395   privacy API in your plugin.
396 * The cron runner now sets up a fresh PAGE and OUTPUT between each task.
397 * The core_renderer methods notify_problem(), notify_success(), notify_message() and notify_redirect() that were
398   deprecated in Moodle 3.1 have been removed. Use \core\notification::add(), or \core\output\notification as required.
399 * The maximum supported precision (the total number of digits) for XMLDB_TYPE_NUMBER ("number") fields raised from 20 to
400   38 digits. Additionally, the whole number part (precision minus scale) must not be longer than the maximum length of
401   integer fields (20 digits). Note that PHP floats commonly support precision of roughly 15 digits only (MDL-32113).
402 * Event triggering and event handlers:
403     - The following events, deprecated since moodle 2.6, have been finally removed: groups_members_removed,
404       groups_groupings_groups_removed, groups_groups_deleted, groups_groupings_deleted.
405 * The following functions have been finally deprecated and can not be used any more:
406   - notify()
407 * XMLDB now validates the PATH attribute on every install.xml file. Both the XMLDB editor and installation will fail
408   when a problem is detected with it. Please ensure your plugins contain correct directory relative paths.
409 * Add recaptchalib_v2.php for support of reCAPTCHA v2.
410 * Plugins can define class 'PLUGINNAME\privacy\local\sitepolicy\handler' if they implement an alternative mechanisms for
411   site policies managements and agreements. Administrators can define which component is to be used for handling site
412   policies and agreements. See https://docs.moodle.org/dev/Site_policy_handler
413 * Scripts can define a constant NO_SITEPOLICY_CHECK and set it to true before requiring the main config.php file. It
414   will make the require_login() skipping the test for the user's policyagreed status. This is useful for plugins that
415   act as a site policy handler.
416 * There is a new is_fulltext_search_supported() DML function. The default implementation returns false. This function
417   is used by 'Simple search' global search engine to determine if the database full-text search capabilities can be used.
418 * The following have been removed from the list of core subsystems:
419    - core_register
420    - core_publish
421   Following this change, \core_register_renderer and \core_publish_renderer have been removed and their methods have been
422   moved to \core_admin_renderer and \core_course_renderer respectively.
424 === 3.4 ===
426 * oauth2_client::request method has an extra parameter to specify the accept header for the response (MDL-60733)
427 * The following functions, previously used (exclusively) by upgrade steps are not available
428   anymore because of the upgrade cleanup performed for this version. See MDL-57432 for more info:
429     - upgrade_mimetypes()
430     - upgrade_fix_missing_root_folders_draft()
431     - upgrade_minmaxgrade()
432     - upgrade_course_tags()
434 * Added new moodleform element 'filetypes' and new admin setting widget 'admin_setting_filetypes'. These new widgets
435   allow users to define a list of file types; either by typing them manually or selecting them from a list. The widgets
436   directly support the syntax used to feed the 'accepted_types' option of the filemanager and filepicker elements. File
437   types can be specified as extensions (.jpg or just jpg), mime types (text/plain) or groups (image).
438 * Removed accesslib private functions: load_course_context(), load_role_access_by_context(), dedupe_user_access() (MDL-49398).
439 * Internal "accessdata" structure format has changed to improve ability to perform role definition caching (MDL-49398).
440 * Role definitions are no longer cached in user session (MDL-49398).
441 * External function core_group_external::get_activity_allowed_groups now returns an additional field: canaccessallgroups.
442   It indicates whether the user will be able to access all the activity groups.
443 * file_get_draft_area_info does not sum the root folder anymore when calculating the foldercount.
444 * The moodleform element classes can now optionally provide a public function validateSubmitValue(). This method can be
445   used to perform implicit validation of submitted values - without the need to explicitly add the validation rules to
446   every form. The method should accept a single parameter with the submitted value. It should return a string with the
447   eventual validation error, or an empty value if the validation passes.
448 * New user_picture attribute $includefullname to determine whether to include the user's full name with the user's picture.
449 * Enrol plugins which provide enrolment actions can now declare the following "data-action" attributes in their implementation of
450   enrol_plugin::get_user_enrolment_actions() whenever applicable:
451   * "editenrolment" - For editing a user'e enrolment details. Defined by constant ENROL_ACTION_EDIT.
452   * "unenrol" - For unenrolling a student. Defined by constant ENROL_ACTION_UNENROL.
453   These attributes enable enrol actions to be rendered via modals. If not added, clicking on the enrolment action buttons will still
454   redirect the user to the appropriate enrolment action page. Though optional, it is recommended to add these attributes for a
455   better user experience when performing enrol actions.
456 * The enrol_plugin::get_user_enrolment_actions() implementations for core enrol plugins have been removed and moved to
457   the parent method itself. New enrol plugins don't have to implement get_user_enrolment_actions(), but just need to
458   make sure that they override:
459   - enrol_plugin::allow_manage(), and/or
460   - enrol_plugin::allow_unenrol_user() or enrol_plugin::allow_unenrol()
461   Existing enrol plugins that override enrol_plugin::get_user_enrolment_actions() don't have to do anything, but can
462   also opt to remove their own implementation of the method if they basically have the same logic as the parent method.
463 * New optional parameter $enrolid for the following functions:
464   - get_enrolled_join()
465   - get_enrolled_sql()
466   - get_enrolled_with_capabilities_join()
467   Setting this parameter to a non-zero value will add a condition to the query such that only users that were enrolled
468   with this enrolment method will be returned.
469 * New optional parameter 'closeSuggestionsOnSelect' for the enhance() function for form-autocomplete. Setting this to true will
470   close the suggestions popup immediately after an option has been selected. If not specified, it defaults to true for single-select
471   elements and false for multiple-select elements.
472 * user_can_view_profile() now also checks the moodle/user:viewalldetails capability.
473 * The core/modal_confirm dialogue has been deprecated. Please use the core/modal_save_cancel dialogue instead. Please ensure you
474   update to use the ModalEvents.save and ModalEvents.cancel events instead of their yes/no counterparts.
475 * Instead of checking the 'moodle/course:viewparticipants' and 'moodle/site:viewparticipants' capabilities use the
476   new functions course_can_view_participants() and course_require_view_participants().
477 * $stored_file->add_to_curl_request() now adds the filename to the curl request.
478 * The option for Login HTTPS (authentication-only SSL) has been removed
479 * $CFG->loginhttps is now deprecated, do not use it.
480 * $PAGE->https_required and $PAGE->verify_https_required() are now deprecated. They are no longer used and will throw a coding_exception.
481 * $CFG->httpswwwroot is now deprecated and will always result in the same value as wwwroot.
482 * Added function core_role_set_view_allowed() to check if a user should be able to see a given role.
483   This should be checked whenever displaying a list of roles to a user, however, core_role_set_assign_allowed may need to override it
484   in some cases.
485 * Deprecated allow_override, allow_assign and allow_switch and replaced with core_role_set_*_allowed to avoid function names conflicting.
487 === 3.3.1 ===
489 * ldap_get_entries_moodle() now always returns lower-cased attribute names in the returned entries.
490   It was suppposed to do so before, but it actually didn't.
492 === 3.3 ===
494 * Behat compatibility changes are now being documented at
495   https://docs.moodle.org/dev/Acceptance_testing/Compatibility_changes
496 * PHPUnit's bootstrap has been changed to use HTTPS wwwroot (https://www.example.com/moodle) from previous HTTP version. Any
497   existing test expecting the old HTTP URLs will need to be switched to the new HTTPS value (reference: MDL-54901).
498 * The information returned by the idp list has changed. This is usually only rendered by the login page and login block.
499   The icon attribute is removed and an iconurl attribute has been added.
500 * Support added for a new type of external file: FILE_CONTROLLED_LINK. This is an external file that Moodle can control
501   the permissions. Moodle makes files read-only but can grant temporary write access.
502     When accessing a URL, the info from file_browser::get_file_info will be checked to determine if the user has write access,
503     if they do - the remote file will have access controls set to allow editing.
504 * The method moodleform::after_definition() has been added and can now be used to add some logic
505   to be performed after the form's definition was set. This is useful for intermediate subclasses.
506 * Moodle has support for font-awesome icons. Plugins should use the xxx_get_fontawesome_icon_map callback
507   to map their custom icons to one from font-awesome.
508 * $OUTPUT->pix_url() has been deprecated because it is was used mostly to manually generate image tags for icons.
509   We now distinguish between icons and "small images". The difference is that an icon does not have to be rendered as an image tag
510   with a source. It is OK to still have "small images" - if this desired use $OUTPUT->image_icon() and $OUTPUT->image_url(). For
511   other uses - use $OUTPUT->pix_icon() or the pix helper in mustache templates {{#pix}}...{{/pix}}
512   For other valid use cases use $OUTPUT->image_url().
513 * Activity icons have been split from standard icons. Use $OUTPUT->image_icon instead of $OUTPUT->pix_icon for these
514   type of icons (the coloured main icon for each activity).
515 * YUI module moodle-core-formautosubmit has been removed, use jquery .change() instead (see lib/templates/url_select.mustache for
516   an example)
517 * $mform->init_javascript_enhancement() is deprecated and no longer does anything. Existing uses of smartselect enhancement
518   should be switched to the searchableselector form element or other solutions.
519 * Return value of the validate_email() is now proper boolean as documented. Previously the function could return 1, 0 or false.
520 * The mcore YUI rollup which included various YUI modules such as moodle-core-notification is no longer included on every
521   page. Missing YUI depdencies may be exposed by this change (e.g. missing a requirement on moodle-core-notification when
522   using M.core.dialogue).
523 * Various legacy javascript functions have been removed:
524     * M.util.focus_login_form and M.util.focus_login_error no longer do anything. Please use jquery instead. See
525       lib/templates/login.mustache for an example.
526     * Some outdated global JS functions have been removed and should be replaced with calls to jquery
527       or alternative approaches:
528         checkall, checknone, select_all_in_element_with_id, select_all_in, deselect_all_in, confirm_if, findParentNode,
529         filterByParent, stripHTML
530     * M.util.init_toggle_class_on_click has been removed.
531 * The following functions have been deprecated and should not be used any more:
532   - file_storage::try_content_recovery  - See MDL-46375 for more information
533   - file_storage::content_exists        - See MDL-46375 for more information
534   - file_storage::deleted_file_cleanup  - See MDL-46375 for more information
535   - file_storage::get_converted_document
536   - file_storage::is_format_supported_by_unoconv
537   - file_storage::can_convert_documents
538   - file_storage::send_test_pdf
539   - file_storage::test_unoconv_path
540 * Following behat steps have been removed from core:
541     - I click on "<element_string>" "<selector_string>" in the "<row_text_string>" table row
542     - I go to notifications page
543     - I add "<filename_string>" file from recent files to "<filepicker_field_string>" filepicker
544     - I upload "<filepath_string>" file to "<filepicker_field_string>" filepicker
545     - I create "<foldername_string>" folder in "<filepicker_field_string>" filepicker
546     - I open "<foldername_string>" folder from "<filepicker_field_string>" filepicker
547     - I unzip "<filename_string>" file from "<filepicker_field_string>" filepicker
548     - I zip "<filename_string>" folder from "<filepicker_field_string>" filepicker
549     - I delete "<file_or_folder_name_string>" from "<filepicker_field_string>" filepicker
550     - I send "<message_contents_string>" message to "<username_string>"
551     - I add "<user_username_string>" user to "<cohort_idnumber_string>" cohort
552     - I add "<username_string>" user to "<group_name_string>" group
553     - I fill in "<field_string>" with "<value_string>"
554     - I select "<option_string>" from "<select_string>"
555     - I select "<radio_button_string>" radio button
556     - I check "<option_string>"
557     - I uncheck "<option_string>"
558     - the "<field_string>" field should match "<value_string>" value
559     - the "<checkbox_string>" checkbox should be checked
560     - the "<checkbox_string>" checkbox should not be checked
561     - I fill the moodle form with:
562     - "<element_string>" "<selector_string>" should exists
563     - "<element_string>" "<selector_string>" should not exists
564     - the following "<element_string>" exists:
565 * get_user_capability_course() now has an additional parameter 'limit'. This can be used to return a set number of records with
566   the submitted capability. The parameter 'fieldsexceptid' will now accept context fields which can be used for preloading.
567 * The caching option 'immutable' has been added to send_stored_file() and send_file().
568 * New adhoc task refresh_mod_calendar_events_task that updates existing calendar events of modules.
569 * New 'priority' column for the event table to determine which event to show in case of events with user and group overrides.
570 * Webservices core_course_search_courses and core_course_get_courses_by_field will always return the sortorder field.
571 * core_course_external::get_activities_overview has been deprecated. Please do not call this function any more.
572 * Changed the pix mustache template helper to accept context variables for the key, component and alt text.
573 * New auth_plugin_base helper methods:
574   - get_identity_providers() - Retrieves available auth identity providers.
575   - prepare_identity_providers_for_output() - Prepares auth identity provider data for output (e.g. to templates, WS, etc.).
577 === 3.2 ===
579 * Custom roles with access to any part of site administration that do not use the manager archetype will need
580   moodle/site:configview capability added.
581 * Admin setting "Show My courses expanded on Dashboard" has been removed.
582 * Some backwards and forwards compatibility has been added for different bootstrap versions.
583   This is to allow the same markup to work in "clean" and "boost" themes alot of the time. It is also to allow user text
584   with bootstrap classes to keep working in the new theme. See MDL-56004 for the list of supported classes.
585 * MForms element 'submitlink' has been deprecated.
586 * Searchable selector form element is now a wrapper for autocomplete. A "No selection" option is automatically
587   added to the options list for best backwards compatibility - if you were manually adding a "no selection" option you will need
588   to remove it.
589 * Node.js versions >=4 are now required to run grunt.
590 * JQuery has been updated to 3.1.0. JQuery migrate plugins are no longer shipped - please read
591   https://jquery.com/upgrade-guide/3.0/ and update your javascript.
592 * New option 'blanktarget' added to format_text. This option adds target="_blank" to links
593 * A new webservice structure `external_files` has been created which provides a standardised view of files in Moodle and
594   should be used for all file return descriptions.
595   Files matching this format can be retrieved via the new `external_util::get_area_files` method.
596   See MDL-54951 for further information.
597 * The parameter $usepost of the following functions has been deprecated and is not used any more:
598   - get_max_upload_file_size()
599   - get_user_max_upload_file_size()
600 * The following classes have been removed and should not be used any more:
601     - boxclient - See MDL-49599 for more information.
602 * The following functions have been removed and should not be used any more:
603     - file_modify_html_header() - See MDL-29738 for more information.
604 * core_grades_external::get_grades has been deprecated. Please do not call this function any more.
605   External function gradereport_user_external::get_grade_items can be used for retrieving the course grades information.
606 * New option 'escape' added to format_string. When true (default), escapes HTML entities from the string
607 * The following functions have been deprecated and are not used any more:
608   - get_records_csv() Please use csv_import_reader::load_csv_content() instead.
609   - put_records_csv() Please use download_as_dataformat (lib/dataformatlib.php) instead.
610   - zip_files()   - See MDL-24343 for more information.
611   - unzip_file()  - See MDL-24343 for more information.
612   - print_log()           - See MDL-43681 for more information
613   - print_log_csv()       - See MDL-43681 for more information
614   - print_log_ods()       - See MDL-43681 for more information
615   - print_log_xls()       - See MDL-43681 for more information
616   - print_mnet_log()      - See MDL-43681 for more information
617   - build_logs_array()    - See MDL-43681 for more information
618   - get_logs()            - See MDL-43681 for more information
619   - get_logs_usercourse() - See MDL-43681 for more information
620   - get_logs_userday()    - See MDL-43681 for more information
621   - prevent_form_autofill_password() Please do not use anymore.
622 * The password_compat library was removed as it is no longer required.
623 * Phpunit has been upgraded to 5.4.x and following has been deprecated and is not used any more:
624   - setExpectedException(), use @expectedException or $this->expectException() and $this->expectExceptionMessage()
625   - getMock(), use createMock() or getMockBuilder()->getMock()
626   - UnitTestCase class is removed.
627 * The following methods have been finally deprecated and should no longer be used:
628   - course_modinfo::build_section_cache()
629   - cm_info::get_deprecated_group_members_only()
630   - cm_info::is_user_access_restricted_by_group()
631 * The following methods in cm_info::standardmethods have also been finally deprecated and should no longer be used:
632   - cm_info::get_after_edit_icons()
633   - cm_info::get_after_link()
634   - cm_info::get_content()
635   - cm_info::get_custom_data()
636   - cm_info::get_extra_classes()
637   - cm_info::get_on_click()
638   - cm_info::get_url()
639   - cm_info::obtain_dynamic_data()
640   Calling them through the magic method __call() will throw a coding exception.
641 * The alfresco library has been removed from core. It was an old version of
642   the library which was not compatible with newer versions of Alfresco.
643 * Added down arrow: $OUTPUT->darrow.
644 * All file_packer implementations now accept an additional parameter to allow a simple boolean return value instead of
645   an array of individual file statuses.
646 * "I set the field "field_string" to multiline:" now end with colon (:), as PyStrings is supposed to end with ":"
647 * New functions to support deprecation of events have been added to the base event. See MDL-46214 for further details.
648 * A new function `get_name_with_info` has been added to the base event. This function adds information about event
649   deprecations and should be used where this information is relevant.
650 * Following api's have been deprecated in behat_config_manager, please use behat_config_util instead.
651   - get_features_with_tags
652   - get_components_steps_definitions
653   - get_config_file_contents
654   - merge_behat_config
655   - get_behat_profile
656   - profile_guided_allocate
657   - merge_config
658   - clean_path
659   - get_behat_tests_path
660 * behat_util::start_test_mode() accepts 3 options now:
661   - 1. Theme sute with all features: If behat should initialise theme suite with all core features.
662   - 2. Parallel runs: How many parallel runs will be running.
663   - 3. Run: Which process behat should be initialise for.
664 * behat_context_helper::set_session() has been deprecated, please use behat_context_helper::set_environment() instead.
665 * data-fieldtype="type" attribute has been added to form field default template.
666 * form elements extending MoodleQuickForm_group must call $this->createFormElement() instead of
667   @MoodleQuickForm::createElement() in order to be compatible with PHP 7.1
668 * Relative paths in $CFG->alternateloginurl will be resolved to absolute path within moodle site. Previously they
669   were resolved to absolute path within the server. That means:
670   - $CFG->wwwroot: http://example.com/moodle
671   - $CFG->alternateloginurl : /my/super/login.php
672   - Login url will be: http://example.com/moodle/my/super/login.php (moodle root based)
673 * Database (DML) layer:
674   - new sql_equal() method available for places where case sensitive/insensitive varchar comparisons are required.
675 * PostgreSQL connections now use advanced options to reduce connection overhead.  These options are not compatible
676   with some connection poolers.  The dbhandlesoptions parameter has been added to allow the database to configure the
677   required defaults. The parameters that are required in the database are;
678     ALTER DATABASE moodle SET client_encoding = UTF8;
679     ALTER DATABASE moodle SET standard_conforming_strings = on;
680     ALTER DATABASE moodle SET search_path = 'moodle,public';  -- Optional, if you wish to use a custom schema.
681   You can set these options against the database or the moodle user who connects.
682 * Some form elements have been refined to better support right-to-left languages. In RTL,
683   most fields should not have their direction flipped, a URL, a path to a file, a number, ...
684   are always displayed LTR. Input fields and text areas now will best guess whether they
685   should be forced to be displayed in LTR based on the PARAM type associated with it. You
686   can call $mform->setForceLtr($elementName, true/false) on some form fields to manually
687   set the value.
688 * Action menus do_not_enhance() is deprecated, use a list of action_icon instead.
689 * The user_not_fully_set_up() function has a new $strict parameter (defaulting to true) in order to decide when
690   custom fields (and other checks) should be evaluated to determine if the user has been completely setup.
691 * profile_field_base class has new methods: get_field_config_for_external() and get_field_properties().
692   This two new methods should be implemented by profile field plugins to make them compatible with Web Services.
693 * The minifier library used by core_minify has been switched to https://github.com/matthiasmullie/minify - there are minor differences
694   in minifier output.
695 * context_header additional buttons can now have a class attribute provided in the link attributes.
696 * The return signature for the antivirus::scan_file() function has changed.
697   The calling function will now handle removal of infected files from Moodle based on the new integer return value.
698 * The first parameter $eventdata of both message_send() and \core\message\manager::send_message() should
699   be \core\message\message. Use of stdClass is deprecated.
700 * The message_sent event now expects other[courseid] to be always set, exception otherwise. For BC with contrib code,
701   message_sent::create_from_ids() will show a debugging notice if the \core\message\message being sent is missing
702   the courseid property, defaulting to SITEID automatically. In Moodle 3.6 (MDL-55449) courseid will be fully mandatory
703   for all messages sent.
704 * The send_confirmation_email() function has a new optional parameter $confirmationurl to provide a different confirmation URL.
705 * Introduced a new hook for plugin developers:
706     - <component>_course_module_background_deletion_recommended()
707   This hook should be used in conjunction with the existing '<component>_pre_course_module_delete($mod)'. It must
708   return a boolean and is called by core to check whether a plugin's implementation of
709   <component>_pre_course_module_deleted($mod) will take a long time. A plugin should therefore only implement this
710   function if it also implements <component>_pre_course_module_delete($mod).
711   An example in current use is recyclebin, which performs what can be a lengthy backup process in
712   tool_recyclebin_pre_course_module_delete. The recyclebin, if enabled, now returns true in its implementation of
713   tool_recyclebin_course_module_background_deletion_recommended(), to indicate to core that the deletion (and
714   execution of tool_recyclebin_pre_course_module_delete) should be handled with an adhoc task, meaning it will not
715   occur in real time.
717 === 3.1 ===
719 * Webservice function core_course_search_courses accepts a new parameter 'limittoenrolled' to filter the results
720   only to courses the user is enrolled in, and are visible to them.
721 * External functions that are not calling external_api::validate_context are buggy and will now generate
722   exceptions. Previously they were only generating warnings in the webserver error log.
723   See https://docs.moodle.org/dev/External_functions_API#Security
724 * The moodle/blog:associatecourse and moodle/blog:associatemodule capabilities has been removed.
725 * The following functions has been finally deprecated and can not be used any more:
726     - profile_display_badges()
727     - useredit_shared_definition_preferences()
728     - calendar_normalize_tz()
729     - get_user_timezone_offset()
730     - get_timezone_offset()
731     - get_list_of_timezones()
732     - calculate_user_dst_table()
733     - dst_changes_for_year()
734     - get_timezone_record()
735     - test_get_list_of_timezones()
736     - test_get_timezone_offset()
737     - test_get_user_timezone_offset()
738 * The google api library has been updated to version 1.1.7. There was some important changes
739   on the SSL handling. Now the SSL version will be determined by the underlying library.
740   For more information see https://github.com/google/google-api-php-client/pull/644
741 * The get_role_users() function will now add the $sort fields that are not part
742   of the requested fields to the query result and will throw a debugging message
743   with the added fields when that happens.
744 * The core_user::fill_properties_cache() static method has been introduced to be a reference
745   and allow standard user fields data validation. Right now only type validation is supported
746   checking it against the parameter (PARAM_*) type of the target user field. MDL-52781 is
747   going to add support to null/not null and choices validation, replacing the existing code to
748   validate the user fields in different places in a common way.
749 * Webservice function core_course_search_courses now returns results when the search string
750   is less than 2 chars long.
751 * Webservice function core_course_search_courses accepts a new parameter 'requiredcapabilities' to filter the results
752   by the capabilities of the current user.
753 * New mform element 'course' handles thousands of courses with good performance and usability.
754 * The redirect() function will now redirect immediately if output has not
755   already started. Messages will be displayed on the subsequent page using
756   session notifications. The type of message output can be configured using the
757   fourth parameter to redirect().
758 * The specification of extra classes in the $OUTPUT->notification()
759   function, and \core\output\notification renderable have been deprecated
760   and will be removed in a future version.
761   Notifications should use the levels found in \core\output\notification.
762 * The constants for NOTIFY_PROBLEM, NOTIFY_REDIRECT, and NOTIFY_MESSAGE in
763   \core\output\notification have been deprecated in favour of NOTIFY_ERROR,
764   NOTIFY_WARNING, and NOTIFY_INFO respectively.
765 * The following functions, previously used (exclusively) by upgrade steps are not available
766   anymore because of the upgrade cleanup performed for this version. See MDL-51580 for more info:
767     - upgrade_mysql_fix_unsigned_and_lob_columns()
768     - upgrade_course_completion_remove_duplicates()
769     - upgrade_save_orphaned_questions()
770     - upgrade_rename_old_backup_files_using_shortname()
771     - upgrade_mssql_nvarcharmax()
772     - upgrade_mssql_varbinarymax()
773     - upgrade_fix_missing_root_folders()
774     - upgrade_course_modules_sequences()
775     - upgrade_grade_item_fix_sortorder()
776     - upgrade_availability_item()
777 * A new parameter $ajaxformdata was added to the constructor for moodleform. When building a
778   moodleform in a webservice or ajax script (for example using the new fragments API) we
779   cannot allow the moodleform to parse it's own data from _GET and _POST - we must pass it as
780   an array.
781 * Plugins can extend the navigation for user by declaring the following callback:
782   <frankenstyle>_extend_navigation_user(navigation_node $parentnode, stdClass $user,
783                                         context_user $context, stdClass $course,
784                                         context_course $coursecontext)
785 * The function notify() now throws a debugging message - see MDL-50269.
786 * Ajax calls going through lib/ajax/* now validate the return values before sending
787   the response. If the validation does not pass an exception is raised. This behaviour
788   is consistent with web services.
789 * Several changes in Moodle core, standard plugins and third party libraries to
790   ensure compatibility with PHP7. All plugins are recommended to perform testing
791   against PHP7 as well. Refer to https://docs.moodle.org/dev/Moodle_and_PHP7 for more
792   information. The following changes may affect you:
793   * Class moodleform, moodleform_mod and some module classes have been changed to use
794     __construct() for the constructor. Calling parent constructors by the class
795     name will display debugging message. Incorrect: parent::moodleform(),
796     correct: parent::__construct()
797   * All form elements have also changed the constructor syntax. No changes are
798     needed for using form elements, however if plugin defines new form element it
799     needs to use correct syntax. For example, incorrect: parent::HTML_QuickForm_input(),
800     HTML_QuickForm_input::HTML_QuickForm_input(), $this->HTML_QuickForm_input().
801     Correct: HTML_QuickForm_input::__construct() or parent::__construct().
802   * profile_field_base::profile_field_base() is deprecated, use parent::__construct()
803     in custom profile fields constructors. Similar deprecations in exsiting
804     profile_field_* classes.
805   * user_filter_type::user_filter_type() is deprecated, use parent::__construct() in
806     custom user filters. Similar deprecations in existing user_filter_* classes.
807   * table_default_export_format_parent::table_default_export_format_parent() is
808     deprecated, use parent::__construct() in extending classes.
809 * groups_delete_group_members() $showfeedback parameter has been removed and is no longer
810   respected. Users of this function should output their own feedback if required.
811 * Number of changes to Tags API, see tag/upgrade.txt for more details
812 * The previous events API handlers are being deprecated in favour of events 2 API, debugging messages are being displayed if
813   there are 3rd party plugins using it. Switch to events 2 API please, see https://docs.moodle.org/dev/Event_2#Event_dispatching_and_observers
814   Note than you will need to bump the plugin version so moodle is aware that you removed the plugin's event handlers.
815 * mforms validation functions are not available in the global JS namespace anymore, event listeners
816   are assigned to fields and buttons through a self-contained JS function.
817 * Added $CFG->urlrewriteclass option to config.php allowing clean / semantic urls to
818   be implemented in a plugin, eg local_cleanurls.
819 * $CFG->pathtoclam global setting has been moved to clamav antivirus plugin setting of the same name.
820 * clam_message_admins() and get_clam_error_code() have been deprecated, its functionality
821   is now a part of \antivirus_clamav\scanner class methods.
822 * \repository::antivir_scan_file() has been deprecated, \core\antivirus\manager::scan_file() that
823   applies antivirus plugins is replacing its functionality.
824 * Added core_text::str_max_bytes() which safely truncates multi-byte strings to a maximum number of bytes.
825 * Zend Framework has been removed completely.
826 * Any plugin can report when a scale is being used with the callback function [pluginname]_scale_used_anywhere(int $scaleid).
827 * Changes in file_rewrite_pluginfile_urls: Passing a new option reverse = true in the $options var will make the function to convert
828   actual URLs in $text to encoded URLs in the @@PLUGINFILE@@ form.
829 * behat_util::is_server_running() is removed, please use behat_util::check_server_status() instead.
830 * Behat\Mink\Selector\SelectorsHandler::xpathLiteral() method is deprecated use behat_context_helper::escape instead
831   when building Xpath, or pass the unescaped value when using the named selector.',
832 * table_sql download process is using the new data formats plugin which you can't use if you are buffering any output
833     * flexible_table::get_download_menu(), considered private, has been deleted. Use
834       $OUTPUT->download_dataformat_selector() instead.
835   when building Xpath, or pass the unescaped value when using the named selector.
836 * Add new file_is_executable(), to consistently check for executables even in Windows (PHP bug #41062).
837 * Introduced new hooks for plugin developers.
838     - <component>_pre_course_category_delete($category)
839     - <component>_pre_course_delete($course)
840     - <component>_pre_course_module_delete($cm)
841     - <component>_pre_block_delete($instance)
842     - <component>_pre_user_delete($user)
843   These hooks allow developers to use the item in question before it is deleted by core. For example, if your plugin is
844   a module (plugins located in the mod folder) called 'xxx' and you wish to interact with the user object before it is
845   deleted then the function to create would be mod_xxx_pre_user_delete($user) in mod/xxx/lib.php.
846 * pear::Net::GeoIP has been removed.
848 === 3.0 ===
850 * Minify updated to 2.2.1
851 * htmlpurifier upgraded to 4.7.0
852 * Less.php upgraded to 1.7.0.9
853 * The horde library has been updated to version 5.2.7.
854 * Google libraries (lib/google) updated to 1.1.5
855 * Html2Text library has been updated to the latest version of the library.
856 * External functions x_is_allowed_from_ajax() methods have been deprecated. Define 'ajax' => true in db/services.php instead.
857 * External functions can be called without a session if they define 'loginrequired' => true in db/services.php.
858 * All plugins are required to declare their frankenstyle component name via
859   the $plugin->component property in their version.php file. See
860   https://docs.moodle.org/dev/version.php for details (MDL-48494).
861 * PHPUnit is upgraded to 4.7. Some tests using deprecated assertions etc may need changes to work correctly.
862 * Users of the text editor API to manually create a text editor should call set_text before calling use_editor.
863 * Javascript - SimpleYUI and the Y instance used for modules have been merged. Y is now always the same instance of Y.
864 * get_referer() has been deprecated, please use the get_local_referer function instead.
865 * \core\progress\null is renamed to \core\progress\none for improved PHP7 compatibility as null is a reserved word (see MDL-50453).
866 * \webservice_xmlrpc_client now respects proxy server settings. If your XMLRPC server is available on your local network and not via your proxy server, you may need to add it to the list of proxy
867   server exceptions in $CFG->proxybypass. See MDL-39353 for details.
868 * Group and groupings idnumbers can now be passed to and/or are returned from the following web services functions:
869   ** core_group_external::create_groups
870   ** core_group_external::get_groups
871   ** core_group_external::get_course_groups
872   ** core_group_external::create_groupings
873   ** core_group_external::update_groupings
874   ** core_group_external::get_groupings
875   ** core_group_external::get_course_groupings
876   ** core_group_external::get_course_user_groups
877 * Following functions are removed from core. See MDL-50049 for details.
878     password_compat_not_supported()
879     session_get_instance()
880     session_is_legacy()
881     session_kill_all()
882     session_touch()
883     session_kill()
884     session_kill_user()
885     session_set_user()
886     session_is_loggedinas()
887     session_get_realuser()
888     session_loginas()
889     js_minify()
890     css_minify_css()
891     update_login_count()
892     reset_login_count()
893     check_gd_version()
894     update_log_display_entry()
895     get_recent_enrolments()
896     groups_filter_users_by_course_module_visible()
897     groups_course_module_visible()
898     error()
899     formerr()
900     editorhelpbutton()
901     editorshortcutshelpbutton()
902     choose_from_menu()
903     update_event()
904     get_generic_section_name()
905     get_all_sections()
906     add_mod_to_section()
907     get_all_mods()
908     get_course_section()
909     format_weeks_get_section_dates()
910     get_print_section_cm_text()
911     print_section_add_menus()
912     make_editing_buttons()
913     print_section()
914     print_overview()
915     print_recent_activity()
916     delete_course_module()
917     update_category_button()
918     make_categories_list()
919     category_delete_move()
920     category_delete_full()
921     move_category()
922     course_category_hide()
923     course_category_show()
924     get_course_category()
925     create_course_category()
926     get_all_subcategories()
927     get_child_categories()
928     get_categories()
929     print_course_search()
930     print_my_moodle()
931     print_remote_course()
932     print_remote_host()
933     print_whole_category_list()
934     print_category_info()
935     get_course_category_tree()
936     print_courses()
937     print_course()
938     get_category_courses_array()
939     get_category_courses_array_recursively()
940     blog_get_context_url()
941     get_courses_wmanagers()
942     convert_tree_to_html()
943     convert_tabrows_to_tree()
944     can_use_rotated_text()
945     get_parent_contexts()
946     get_parent_contextid()
947     get_child_contexts()
948     create_contexts()
949     cleanup_contexts()
950     build_context_path()
951     rebuild_contexts()
952     preload_course_contexts()
953     context_moved()
954     fetch_context_capabilities()
955     context_instance_preload()
956     get_contextlevel_name()
957     print_context_name()
958     mark_context_dirty()
959     delete_context()
960     get_context_url()
961     get_course_context()
962     get_user_courses_bycap()
963     get_role_context_caps()
964     get_courseid_from_context()
965     context_instance_preload_sql()
966     get_related_contexts_string()
967     get_plugin_list_with_file()
968     check_browser_operating_system()
969     check_browser_version()
970     get_device_type()
971     get_device_type_list()
972     get_selected_theme_for_device_type()
973     get_device_cfg_var_name()
974     set_user_device_type()
975     get_user_device_type()
976     get_browser_version_classes()
977     generate_email_supportuser()
978     badges_get_issued_badge_info()
979     can_use_html_editor()
980     enrol_cohort_get_cohorts()
981     enrol_cohort_can_view_cohort()
982     cohort_get_visible_list()
983     enrol_cohort_enrol_all_users()
984     enrol_cohort_search_cohorts()
985 * The never unused webdav_locks table was dropped.
986 * The actionmenu hideMenu() function now expects an EventFacade object to be passed to it,
987   i.e. a call to M.core.actionmenu.instance.hideMenu() should be change to M.core.actionmenu.instance.hideMenu(e)
988 * In the html_editors (tinyMCE, Atto), the manage files button can be hidden by changing the 'enable_filemanagement' option to false.
989 * external_api::validate_context now is public, it can be called from other classes.
990 * rss_error() now supports returning of correct HTTP status of error and will return '404 Not Found'
991   unless other status is specified.
992 * Plugins can extend the navigation for categories settings by declaring the following callback:
993   <frankenstyle>_extend_navigation_category_settings(navigation_node, context_coursecat)
994 * The clilib.php provides two new functions cli_write() and cli_writeln() that should be used for outputting texts from the command
995   line interface scripts.
996 * External function core_course_external::get_course_contents returned parameter "name" has been changed to PARAM_RAW,
997   this is because the new external_format_string function may return raw data if the global moodlewssettingraw parameter is used.
998 * Function is_web_crawler() has been deprecated, please use core_useragent::is_web_crawler() instead.
1000 === 2.9.1 ===
1002 * New methods grade_grade::get_grade_max() and get_grade_min() must be used rather than directly the public properties rawgrademax and rawgrademin.
1003 * New method grade_item::is_aggregate_item() indicates when a grade_item is an aggreggated type grade.
1005 === 2.9 ===
1007 * The default home page for users has been changed to the dashboard (formely my home). See MDL-45774.
1008 * Support for rendering templates from php or javascript has been added. See MDL-49152.
1009 * Support for loading AMD javascript modules has been added. See MDL-49046.
1010 * Webservice core_course_delete_courses now return warning messages on any failures and does not try to rollback the entire deletion.
1011 * \core\event\course_viewed 'other' argument renamed from coursesectionid to coursesectionnumber as it contains the section number.
1012 * New API core_filetypes::add_type (etc.) allows custom filetypes to be added and modified.
1013 * PHPUnit: PHPMailer Sink is now started for all tests and is setup within the phpunit wrapper for advanced tests.
1014   Catching debugging messages when sending mail will no longer work. Use $sink = $this->redirectEmails(); and then check
1015   the message in the sink instead.
1016 * The file pluginlib.php was deprecated since 2.6 and has now been removed, do not include or require it.
1017 * \core_component::fetch_subsystems() now returns a valid path for completion component instead of null.
1018 * Deprecated JS global methods have been removed (show_item, destroy_item, hide_item, addonload, getElementsByTagName, findChildNodes).
1019 * For 3rd party plugin specific environment.xml files, it's now possible to specify version independent checks by using the
1020   <PLUGIN name="component_name"> tag instead of the version dependent <MOODLE version="x.y"> one. If the PLUGIN tag is used any
1021   Moodle specific tags will be ignored.
1022 * html_table: new API for adding captions to tables (new field, $table->caption) and subsequently hiding said captions from sighted users using accesshide (enabled using $table->captionhide).
1023 * The authorization procedure in the mdeploy.php script has been improved. The script
1024   now relies on the main config.php when deploying an available update.
1025 * sql_internal_reader and sql_select_reader interfaces have been deprecated in favour of sql_internal_table_reader
1026   and sql_reader which use iterators to be more memory efficient.
1027 * $CFG->enabletgzbackups setting has been removed as now backups are stored internally using .tar.gz format by default, you can
1028   set $CFG->usezipbackups to store them in zip format. This does not affect the restore process, which continues accepting both.
1029 * Added support for custom string manager implementations via $CFG->customstringmanager
1030   directive in the config.php. See MDL-49361 for details.
1031 * Add new make_request_directory() for creation of per-request files.
1032 * Added generate_image_thumbnail_from_string. This should be used instead of generate_image_thumbnail when the source is a string.
1033   This prevents the need to write files to disk unnecessarily.
1034 * Added generate_image_thumbnail to stored_file class. This should be used when generating thumbnails for stored files.
1035   This prevents the need to write files to disk unnecessarily.
1036 * Removed pear/HTTP/WebDav. See MDL-49534 for details.
1037 * Use standard PHP date time classes and methods - see new core_date class for timezone normalisation methods.
1038 * Moved lib/google/Google/ to lib/google/src/Google. This is to address autoloader issues with Google's provided autoloader
1039   for the library. See MDL-49519 for details.
1040 * The outdated lib/google/Google_Client.php and related files have been completely removed. To use
1041   the new client, read lib/google/readme_moodle.txt, please.
1042 * profile_display_badges() has been deprecated. See MDL-48935 for details.
1043 * Added a new method add_report_nodes() to pagelib.php. If you are looking to add links to the user profile page under the heading "Reports"
1044   then please use this function to ensure that the breadcrumb and navigation block are created properly for all user profile pages.
1045 * process_new_icon() now does not always return a PNG file. When possible, it will try to keep the format of the original file.
1046   Set the new argument $preferpng to true to force PNG. See MDL-46763 and MDL-50041 for details.
1048 === 2.8 ===
1050 * Gradebook grade category option "aggregatesubcats" has been removed completely.
1051   This means that the database column is removed, the admin settings are removed and
1052   the properties from the grade_category object have been removed. If any courses were
1053   found to be using this setting, a warning to check the grades will be shown in the
1054   course grader report after upgrading the site. The same warning will be shown on
1055   courses restored from backup that had this setting enabled (see MDL-47503).
1056 * lib/excelllib.class.php has been updated. The class MoodleExcelWorkbook will now only produce excel 2007 files.
1057 * renderers: We now remove the suffix _renderable when looking for a render method for a renderable.
1058   If you have a renderable class named like "blah_renderable" and have a method on a renderer named "render_blah_renderable"
1059   you will need to change the name of your render method to "render_blah" instead, as renderable at the end is no longer accepted.
1060 * New functions get_course_and_cm_from_cmid($cmorid, $modulename) and
1061   get_course_and_cm_from_instance($instanceorid, $modulename) can be used to
1062   more efficiently load these basic data objects at the start of a script.
1063 * New function cm_info::create($cm) can be used when you need a cm_info
1064   object, but have a $cm which might only be a standard database record.
1065 * $CFG->enablegroupmembersonly no longer exists.
1066 * Scheduled tasks have gained support for syntax to introduce variability when a
1067   task will run across installs. When a when hour or minute are defined as 'R'
1068   they will be installed with a random hour/minute value.
1069 * Several classes grade_edit_tree_column_xxx were removed since grades setup page
1070   has been significantly changed. These classes should not be used outside of
1071   gradebook or developers can copy them into their plugins from 2.7 branch.
1072 * Google APIs Client Library (lib/google/) has been upgraded to 1.0.5-beta and
1073   API has changed dramatically without backward compatibility. Any code accessing
1074   it must be amended. It does not apply to lib/googleapi.php. See MDL-47297
1075 * Added an extra parameter to the function get_formatted_help_string() (default null) which is used to specify
1076   additional string parameters.
1077 * User settings node and course node in navigation now support callbacks from admin tools.
1078 * grade_get_grades() optional parameteres $itemtype, $itemmodule, $iteminstance are now required.
1080 DEPRECATIONS:
1081 * completion_info->get_incomplete_criteria() is deprecated and will be removed in Moodle 3.0.
1082 * grade_category::aggregate_values() is deprecated and will be removed in Moodle 3.0.
1083 * groups_filter_users_by_course_module_visible() is deprecated; replace with
1084   core_availability\info::filter_user_list. Will be removed in Moodle 3.0.
1085 * groups_course_module_visible() is deprecated; replace with $cm->uservisible.
1086 * cm_info property $cm->groupmembersonly is deprecated and always returns 0.
1087   Use core_availability\info::filter_user_list if trying to determine which
1088   other users can see an activity.
1089 * cm_info method $cm->is_user_access_restricted_by_group() is deprecated and
1090   always returns false. Use $cm->uservisible to determine whether the user can
1091   access the activity.
1092 * Constant FEATURE_GROUPMEMBERSONLY (used in module _supports functions) is
1093   deprecated.
1094 * cohort_get_visible_list() is deprecated. There is a better function cohort_get_available_cohorts()
1095   that respects user capabilities to view cohorts.
1096 * enrol_cohort_get_cohorts() and enrol_cohort_search_cohorts() are deprecated since
1097   functionality is removed. Please use cohort_get_available_cohorts()
1098 * enrol_cohort_enrol_all_users() is deprecated; enrol_manual is now responsible for this action
1099 * enrol_cohort_can_view_cohort() is deprecated; replace with cohort_can_view_cohort()
1101 === 2.6.4 / 2.7.1 ===
1103 * setnew_password_and_mail() and update_internal_user_password() will trigger
1104   \core\event\user_password_updated. Previously they used to generate
1105   \core\event\user_updated event.
1106 * update_internal_user_password() accepts optional boolean $fasthash for fast
1107   hashing.
1108 * user_update_user() and user_create_user() api's accept optional param
1109   $triggerevent to avoid respective events to be triggred from the api's.
1111 === 2.7 ===
1113 * PHPUnit cannot be installed via PEAR any more, please use composer package manager instead.
1114 * $core_renderer->block_move_target() changed to support more verbose move-block-here descriptions.
1116 Events and Logging:
1117 * Significant changes in Logging API. For upgrading existing events_trigger() and
1118   add_to_log() see http://docs.moodle.org/dev/Migrating_logging_calls_in_plugins
1119   For accessing logs from plugins see http://docs.moodle.org/dev/Migrating_log_access_in_reports
1120 * The validation of the following events is now stricter (see MDL-45445):
1121     - \core\event\blog_entry_created
1122     - \core\event\blog_entry_deleted
1123     - \core\event\blog_entry_updated
1124     - \core\event\cohort_member_added
1125     - \core\event\cohort_member_removed
1126     - \core\event\course_category_deleted
1127     - \core\event\course_completed
1128     - \core\event\course_content_deleted
1129     - \core\event\course_created
1130     - \core\event\course_deleted
1131     - \core\event\course_restored
1132     - \core\event\course_section_updated (see MDL-45229)
1133     - \core\event\email_failed
1134     - \core\event\group_member_added
1135     - \core\event\group_member_removed
1136     - \core\event\note_created
1137     - \core\event\note_deleted
1138     - \core\event\note_updated
1139     - \core\event\role_assigned
1140     - \core\event\role_deleted
1141     - \core\event\role_unassigned
1142     - \core\event\user_graded
1143     - \core\event\user_loggedinas
1144     - \core\event\user_profile_viewed
1145     - \core\event\webservice_token_created
1147 DEPRECATIONS:
1148 * $module uses in mod/xxx/version.php files is now deprecated. Please use $plugin instead. It will be removed in Moodle 2.10.
1149 * Update init methods in all event classes - "level" property was renamed to "edulevel", the level property is now deprecated.
1150 * Abstract class \core\event\course_module_instances_list_viewed is deprecated now, use \core\event\instances_list_viewed instead.
1151 * Abstract class core\event\content_viewed has been deprecated. Please extend base event or other relevant abstract class.
1152 * mod_book\event\instances_list_viewed has been deprecated. Please use mod_book\event\course_module_instance_list_viewed instead.
1153 * mod_chat\event\instances_list_viewed has been deprecated. Please use mod_chat\event\course_module_instance_list_viewed instead.
1154 * mod_choice\event\instances_list_viewed has been deprecated. Please use mod_choice\event\course_module_instance_list_viewed instead.
1155 * mod_feedback\event\instances_list_viewed has been deprecated. Please use mod_feedback\event\course_module_instance_list_viewed instead.
1156 * mod_page\event\instances_list_viewed has been deprecated. Please use mod_page\event\course_module_instance_list_viewed instead.
1157 * The constants FRONTPAGECOURSELIST, FRONTPAGETOPICONLY & FRONTPAGECOURSELIMIT have been removed.
1158 * Conditional availability API has moved and changed. The condition_info class is
1159   replaced by \core_availability\info_module, and condition_info_section by
1160   \core_availability\info_section. (Code that uses the old classes will generally
1161   still work.)
1162 * coursemodule_visible_for_user() has been deprecated but still works - replaced
1163   by a new static function \core_availability\info_module::is_user_visible()
1164 * cm_info::is_user_access_restricted_by_conditional_access has been deprecated
1165   but still works (it has never done what its name suggests, and is
1166   unnecessary).
1167 * cm_info and section_info property showavailability has been deprecated, but
1168   still works (with the caveat that this information is now per-user).
1169 * cm_info and section_info properties availablefrom and availableuntil have been
1170   deprecated and always return zero (underlying data doesn't have these values).
1171 * section_info property groupingid has been deprecated and always returns zero,
1172   same deal.
1173 * Various cm_info methods have been deprecated in favour of their read-only properties (get_url(), get_content(), get_extra_classes(),
1174   get_on_click(), get_custom_data(), get_after_link, get_after_edit_icons)
1175 * The ajaxenabled function has been deprecated and always returns true. All code should be fully functional in Javascript.
1176 * count_login_failures() has been deprecated, use user_count_login_failures() instead. Refer MDL-42891 for details.
1178 Conditional availability (activities and sections):
1179 * New conditional availability API in /availability, including new availability
1180   condition plugins in /availability/condition. The new API is very similar with
1181   regard to checking availability, but any code that modifies availability settings
1182   for an activity or section is likely to need substantial changes.
1184 YUI:
1185   * The lightbox attribute for moodle-core-notification-dialogue has been
1186     deprecated and replaced by the modal attribute. This was actually
1187     changed in Moodle 2.2, but has only been marked as deprecated now. It
1188     will be removed in Moodle 2.9.
1189   * When destroying any type of dialogue based on moodle-core-notification, the relevant content is also removed from
1190     the DOM. Previously it was left orphaned.
1192 JavaSript:
1193     * The findChildNodes global function has been deprecated. Y.all should
1194       be used instead.
1195     * The callback argument to confirm_action and M.util.show_confirm_dialog has been deprecated. If you need to write a
1196       confirmation which includes a callback, please use moodle-core-notification-confirmation and attach callbacks to the
1197       events provided.
1199 * New locking api and admin settings to configure the system locking type.
1200 * New "Time spent waiting for the database" performance metric displayed along with the
1201   other MDL_PERF vars; the change affects both the error logs and the vars displayed in
1202   the page footer.
1203 * Changes in the tag API. The component and contextid are now saved when assigning tags to an item. Please see
1204   tag/upgrade.txt for more information.
1206 === 2.6 ===
1208 * Use new methods from core_component class instead of get_core_subsystems(), get_plugin_types(),
1209   get_plugin_list(), get_plugin_list_with_class(), get_plugin_directory(), normalize_component(),
1210   get_component_directory() and get_plugin_list_with_file(). The names of the new methods are
1211   exactly the same, the only differences are that core_component::get_plugin_types() now always returns
1212   full paths and core_component::get_plugin_list() does not accept empty parameter any more.
1213 * Use core_text::* instead of textlib:: and also core_collator::* instead of collatorlib::*.
1214 * Use new function moodleform::mock_submit() to simulate form submission in unit tests (backported).
1215 * New $CFG->localcachedir setting useful for cluster nodes. Admins have to update X-Sendfile aliases if used.
1216 * MS SQL Server drivers are now using NVARCHAR(MAX) instead of NTEXT and VARBINARY(MAX) instead of IMAGE,
1217   this change should be fully transparent and it should help significantly with add-on compatibility.
1218 * The string manager classes were renamed. Note that they should not be modified or used directly,
1219   always use get_string_manager() to get instance of the string manager.
1220 * The ability to use an 'insecure' rc4encrypt/rc4decrypt key has been removed.
1221 * Use $CFG->debugdeveloper instead of debugging('', DEBUG_DEVELOPER).
1222 * Use set_debugging(DEBUG_xxx) when changing debugging level for current request.
1223 * Function moveto_module() does not modify $mod argument and instead now returns the new module visibility value.
1224 * Use behat_selectors::get_allowed_text_selectors() and behat_selectors::get_allowed_selectors() instead of
1225   behat_command::$allowedtextselectors and behat_command::$allowedselectors
1226 * Subplugins are supported in admin tools and local plugins.
1227 * file_packer/zip_packer API has been modified so that key functions support a new file_progress interface
1228   to report progress during long operations. Related to this, zip_archive now supports an estimated_count()
1229   function that returns an approximate number of entries in the zip faster than the count() function.
1230 * Class cm_info no longer extends stdClass. All properties are read-only and calculated on first request only.
1231 * Class course_modinfo no longer extends stdClass. All properties are read-only.
1232 * Database fields modinfo and sectioncache in table course are removed. Application cache core/coursemodinfo
1233   is used instead. Course cache is still reset, rebuilt and retrieved using function rebuild_course_cache() and
1234   get_fast_modinfo(). Purging all caches and every core upgrade purges course modinfo cache as well.
1235   If function get_fast_modinfo() is called for multiple courses make sure to include field cacherev in course
1236   object.
1237 * Internal (noreply and support) user support has been added for sending/receiving message.
1238   Use core_user::get_noreply_user() and core_user::get_support_user() to get noreply and support user's respectively.
1239   Real users can be used as noreply/support users by setting $CFG->noreplyuserid and $CFG->supportuserid
1240 * New function readfile_allow_large() in filelib.php for use when very large files may need sending to user.
1241 * Use core_plugin_manager::reset_caches() when changing visibility of plugins.
1242 * Implement new method get_enabled_plugins() method in subplugin info classes.
1243 * Each plugin should include version information in version.php.
1244 * Module and block tables do not contain version column any more, use get_config('xx_yy', 'version') instead.
1245 * $USER->password field is intentionally unset so that session data does not contain password hashes.
1246 * Use core_shutdown_manager::register_function() instead of register_shutdown_function().
1247 * New file packer for .tar.gz files; obtain by calling get_file_packer('application/x-gzip'). Intended initially
1248   for use in backup/restore only, as there are limitations on supported filenames. Also new packer for
1249   backups which supports both compression formats; get_file_packer('application/vnd.moodle.backup').
1250 * New optional parameter to stored_file::get_content_file_handle to open file handle with 'gzopen' instead
1251   of 'fopen' to read gzip-compressed files if required.
1252 * update_internal_user_password() and setnew_password_and_mail() now trigger user_updated event.
1253 * Add thirdpartylibs.xml file to plugins that bundle any 3rd party libraries.
1254 * New class introduced to help auto generate zIndex values for modal dialogues. Class "moodle-has-zindex"
1255   should set on any element which uses a non-default zindex and needs to ensure it doesn't show above a
1256   dialogue.
1257 * $CFG->filelifetime is now used consistently for most file serving operations, the default was lowered
1258   to 6 hours from 24 hours because etags and x-sendfile support should make file serving less expensive.
1259 * Date format locale charset for windows server will come from calendar type and for gregorian it will use
1260   lang file.
1261 * The library to interact with Box.net (class boxclient) is only compatible with their APIv1 which
1262   reaches its end of life on the 14th of Dec. You should migrate your scripts to make usage of the
1263   new class boxnet_client(). Note that the method names and return values have changed.
1264 * Settings pages are now possible for Calendar type plugins. Calendar type plugins that require a settings page to
1265   work properly will need to set their requires version to a number that is equal to or grater than the 2.6.1 release version.
1266 * The admin/tool/generator tool was overhauled to use testing data generators and the previous interface to create
1267   test data was removed (it was not working correctly anyway). If you were using this tool you will probably need to
1268   update your code.
1270 DEPRECATIONS:
1271 Various previously deprecated functions have now been altered to throw DEBUG_DEVELOPER debugging notices
1272 and will be removed in a future release (target: 2.8), a summary follows:
1274 Accesslib:
1275     * get_context_instance()                ->  context_xxxx::instance()
1276     * get_context_instance_by_id()          ->  context::instance_by_id($id)
1277     * get_system_context()                  ->  context_system::instance()
1278     * context_moved()                       ->  context::update_moved()
1279     * preload_course_contexts()             ->  context_helper::preload_course()
1280     * context_instance_preload()            ->  context_helper::preload_from_record()
1281     * context_instance_preload_sql()        ->  context_helper::get_preload_record_columns_sql()
1282     * get_contextlevel_name()               ->  context_helper::get_level_name()
1283     * create_contexts()                     ->  context_helper::create_instances()
1284     * cleanup_contexts()                    ->  context_helper::cleanup_instances()
1285     * build_context_path()                  ->  context_helper::build_all_paths()
1286     * print_context_name()                  ->  $context->get_context_name()
1287     * mark_context_dirty()                  ->  $context->mark_dirty()
1288     * delete_context()                      ->  $context->delete_content() or context_helper::delete_instance()
1289     * get_context_url()                     ->  $context->get_url()
1290     * get_course_context()                  ->  $context->get_course_context()
1291     * get_parent_contexts()                 ->  $context->get_parent_context_ids()
1292     * get_parent_contextid()                ->  $context->get_parent_context()
1293     * get_child_contexts()                  ->  $context->get_child_contexts()
1294     * rebuild_contexts()                    ->  $context->reset_paths()
1295     * get_user_courses_bycap()              ->  enrol_get_users_courses()
1296     * get_courseid_from_context()           ->  $context->get_course_context(false)
1297     * get_role_context_caps()               ->  (no replacement)
1298     * load_temp_role()                      ->  (no replacement)
1299     * remove_temp_roles()                   ->  (no replacement)
1300     * get_related_contexts_string()         ->  $context->get_parent_context_ids(true)
1301     * get_recent_enrolments()               ->  (no replacement)
1303 Enrollment:
1304     * get_course_participants()             -> get_enrolled_users()
1305     * is_course_participant()               -> is_enrolled()
1307 Output:
1308     * current_theme()                       -> $PAGE->theme->name
1309     * skip_main_destination()               -> $OUTPUT->skip_link_target()
1310     * print_container()                     -> $OUTPUT->container()
1311     * print_container_start()               -> $OUTPUT->container_start()
1312     * print_container_end()                 -> $OUTPUT->container_end()
1313     * print_continue()                      -> $OUTPUT->continue_button()
1314     * print_header()                        -> $PAGE methods
1315     * print_header_simple()                 -> $PAGE methods
1316     * print_side_block()                    -> $OUTPUT->block()
1317     * print_arrow()                         -> $OUTPUT->arrow()
1318     * print_scale_menu_helpbutton()         -> $OUTPUT->help_icon_scale($courseid, $scale)
1319     * print_checkbox()                      -> html_writer::checkbox()
1321 Navigation:
1322     * print_navigation()                    -> $OUTPUT->navbar()
1323     * build_navigation()                    -> $PAGE->navbar methods
1324     * navmenu()                             -> (no replacement)
1325     * settings_navigation::
1326           get_course_modules()              -> (no replacement)
1328 Files and repositories:
1329     * stored_file::replace_content_with()   -> stored_file::replace_file_with()
1330     * stored_file::set_filesize()           -> stored_file::replace_file_with()
1331     * stored_file::get_referencelifetime()  -> (no replacement)
1332     * repository::sync_external_file()      -> see repository::sync_reference()
1333     * repository::get_file_by_reference()   -> repository::sync_reference()
1334     * repository::
1335           get_reference_file_lifetime()     -> (no replacement)
1336     * repository::sync_individual_file()    -> (no replacement)
1337     * repository::reset_caches()            -> (no replacement)
1339 Calendar:
1340     * add_event()                           -> calendar_event::create()
1341     * update_event()                        -> calendar_event->update()
1342     * delete_event()                        -> calendar_event->delete()
1343     * hide_event()                          -> calendar_event->toggle_visibility(false)
1344     * show_event()                          -> calendar_event->toggle_visibility(true)
1346 Misc:
1347     * filter_text()                         -> format_text(), format_string()...
1348     * httpsrequired()                       -> $PAGE->https_required()
1349     * detect_munged_arguments()             -> clean_param([...], PARAM_FILE)
1350     * mygroupid()                           -> groups_get_all_groups()
1351     * js_minify()                           -> core_minify::js_files()
1352     * css_minify_css()                      -> core_minify::css_files()
1353     * course_modinfo::build_section_cache() -> (no replacement)
1354     * generate_email_supportuser()          -> core_user::get_support_user()
1356 Sessions:
1357     * session_get_instance()->xxx()         -> \core\session\manager::xxx()
1358     * session_kill_all()                    -> \core\session\manager::kill_all_sessions()
1359     * session_touch()                       -> \core\session\manager::touch_session()
1360     * session_kill()                        -> \core\session\manager::kill_session()
1361     * session_kill_user()                   -> \core\session\manager::kill_user_sessions()
1362     * session_gc()                          -> \core\session\manager::gc()
1363     * session_set_user()                    -> \core\session\manager::set_user()
1364     * session_is_loggedinas()               -> \core\session\manager::is_loggedinas()
1365     * session_get_realuser()                -> \core\session\manager::get_realuser()
1366     * session_loginas()                     -> \core\session\manager::loginas()
1368 User-agent related functions:
1369     * check_browser_operating_system()      -> core_useragent::check_browser_operating_system()
1370     * check_browser_version()               -> core_useragent::check_browser_version()
1371     * get_device_type()                     -> core_useragent::get_device_type()
1372     * get_device_type_list()                -> core_useragent::get_device_type_list()
1373     * get_selected_theme_for_device_type()  -> core_useragent::get_device_type_theme()
1374     * get_device_cfg_var_name()             -> core_useragent::get_device_type_cfg_var_name()
1375     * set_user_device_type()                -> core_useragent::set_user_device_type()
1376     * get_user_device_type()                -> core_useragent::get_user_device_type()
1377     * get_browser_version_classes()         -> core_useragent::get_browser_version_classes()
1379 YUI:
1380     * moodle-core-notification has been deprecated with a recommendation of
1381       using its subclasses instead. This is to allow for reduced page
1382       transport costs. Current subclasses include:
1383       * dialogue
1384       * alert
1385       * confirm
1386       * exception
1387       * ajaxexception
1389 Event triggering and event handlers:
1390     * All existing events and event handlers should be replaced by new
1391       event classes and matching new event observers.
1392     * See http://docs.moodle.org/dev/Event_2 for more information.
1393     * The following events will be entirely removed, though they can still
1394       be captured using handlers, but they should not be used any more.
1395       * groups_members_removed          -> \core\event\group_member_removed
1396       * groups_groupings_groups_removed -> (no replacement)
1397       * groups_groups_deleted           -> \core\event\group_deleted
1398       * groups_groupings_deleted        -> \core\event\grouping_deleted
1399     * edit_module_post_actions() does not trigger events any more.
1401 === 2.5.1 ===
1403 * New get_course() function for use when obtaining the course record from database. Will
1404   reuse existing $COURSE or $SITE globals if possible to improve performance.
1406 === 2.5 ===
1408 * The database drivers (moodle_database and subclasses) aren't using anymore the ::columns property
1409   for caching database metadata. MUC (databasemeta) is used instead. Any custom DB driver should
1410   apply for that change.
1411 * The cron output has been changed to include time and memory usage (see cron_trace_time_and_memory()),
1412   so any custom utility relying on the old output may require modification.
1413 * Function get_max_file_sizes now returns an option for (for example) "Course limit (500MB)" or
1414   "Site limit (200MB)" when appropriate with the option set to 0. This function no longer returns
1415   an option for 0 bytes. Existing code that was replacing the 0 option in the return
1416   from this function with a more sensible message, can now use the return from this function directly.
1417 * Functions responsible for output in course/lib.php are deprecated, the code is moved to
1418   appropriate renderers: print_section(), print_section_add_menus(), get_print_section_cm_text(),
1419   make_editing_buttons()
1420   See functions' phpdocs in lib/deprecatedlib.php
1421 * Function get_print_section_cm_text() is deprecated, replaced with methods in cm_info
1422 * zip_packer may create empty zip archives, there is a new option to ignore
1423   problematic files when creating archive
1424 * The function delete_course_module was deprecated and has been replaced with
1425   course_delete_module. The reason for this was because the function delete_course_module
1426   only partially deletes data, so wherever it was called extra code was needed to
1427   perform the whole deletion process. The function course_delete_module now takes care
1428   of the whole process.
1429 * curl::setopt() does not accept constant values any more. As it never worked properly,
1430   we decided to make the type check stricter. Now, the keys of the array pass must be a string
1431   corresponding to the curl constant name.
1432 * Function get_users_listing now return list of users except guest and deleted users. Previously
1433   deleted users were excluded by get_users_listing. As guest user is not expected while browsing users,
1434   and not included in get_user function, it will not be returned by get_users_listing.
1435 * The add_* functions in course/dnduploadlib.php have been deprecated. Plugins should be using the
1436   MODNAME_dndupload_register callback instead.
1437 * The signature of the add() method of classes implementing the parentable_part_of_admin_tree
1438   interface (such as admin_category) has been extended. The new parameter allows the caller
1439   to prepend the new node before an existing sibling in the admin tree.
1440 * condition_info:get_condition_user_fields($formatoptions) now accepts the optional
1441   param $formatoptions, that will determine if the field names are processed by
1442   format_string() with the passed options.
1443 * remove all references to $CFG->gdversion, GD PHP extension is now required
1444 * Formslib will now throw a developer warning if a PARAM_ type hasn't been set for elements which
1445   need it. Please set PARAM_RAW explicitly if you do not want any cleaning.
1446 * Functions responsible for managing and accessing course categories are moved to class coursecat
1447   in lib/coursecatlib.php, functions responsible for rendering courses and categories lists are
1448   moved to course/renderer.php. The following global functions are deprecated: make_categories_list(),
1449   category_delete_move(), category_delete_full(), move_category(), course_category_hide(),
1450   course_category_show(), get_course_category(), create_course_category(), get_all_subcategories(),
1451   get_child_categories(), get_categories(), print_my_moodle(), print_remote_course(),
1452   print_remote_host(), print_whole_category_list(), print_category_info(), get_course_category_tree(),
1453   print_courses(), print_course(), get_category_courses_array(), get_category_courses_array_recursively(),
1454   get_courses_wmanagers()
1455   See http://docs.moodle.org/dev/Courses_lists_upgrade_to_2.5
1456 * $core_renderer->block_move_target() changed to support more verbose move-block-here descriptions.
1457 * Additional (optional) param $onlyactive has been added to get_enrolled_users, count_enrolled_users
1458   functions to get information for only active (excluding suspended enrolments) users. Included two
1459   helper functions extract_suspended_users, get_suspended_userids to extract suspended user information.
1460 * The core_plugin_manager class now provides two new helper methods for getting information
1461   about known plugins: get_plugins_of_type() and get_subplugins_of_plugin().
1462 * The get_uninstall_url() method of all subclasses of \core\plugininfo\base class is now expected
1463   to always return moodle_url. Subclasses can use the new method is_uninstall_allowed()
1464   to control the availability of the 'Uninstall' link at the Plugins overview page (previously
1465   they would do it by get_uninstall_url() returning null). By default, URL to a new general plugin
1466   uninstall tool is returned. Unless the plugin type needs extra steps that can't be handled by
1467   plugininfo_xxx::uninstall() method or xmldb_xxx_uninstall() function, this default URL should
1468   satisfy all plugin types.
1470 Database (DML) layer:
1471 * $DB->sql_empty() is deprecated, you have to use sql parameters with empty values instead,
1472   please note hardcoding of empty strings in SQL queries breaks execution in Oracle database.
1473 * Indexes must not be defined on the same columns as keys, this is now reported as fatal problem.
1474   Please note that internally we create indexes instead of foreign keys.
1476 YUI changes:
1477 * M.util.help_icon has been deprecated. Code should be updated to use moodle-core-popuphelp
1478   instead. To do so, remove any existing JS calls to M.util.help_icon from your PHP and ensure
1479   that your help link is placed in a span which has the class 'helplink'.
1481 === 2.4 ===
1483 * Pagelib: Numerous deprecated functions were removed as classes page_base, page_course
1484   and page_generic_activity.
1485 * use $CFG->googlemapkey3 instead of removed $CFG->googlemapkey and migrate to Google Maps API V3
1486 * Function settings_navigation::add_course_editing_links() is completely removed
1487 * function global_navigation::format_display_course_content() is removed completely (the
1488   functionality is moved to course format class)
1489 * in the function global_navigation::load_generic_course_sections() the argument $courseformat is
1490   removed
1491 * New component and itemid columns in groups_members table - this allows plugin to create protected
1492   group memberships using 'xx_yy_allow_group_member_remove' callback and there is also a new restore
1493   callback 'xx_yy_restore_group_member()'.
1494 * New general role assignment restore plugin callback 'xx_yy_restore_role_assignment()'.
1495 * functions get_generic_section_name(), get_all_sections(), add_mod_to_section(), get_all_mods()
1496   are deprecated. See their phpdocs in lib/deprecatedlib.php on how to replace them
1498 YUI changes:
1499 * moodle-enrol-notification has been renamed to moodle-core-notification
1500 * YUI2 code must now use 2in3, see http://yuilibrary.com/yui/docs/yui/yui-yui2.html
1501 * M.util.init_select_autosubmit() and M.util.init_url_select() have been deprecated. Code using this should be updated
1502   to use moodle-core-formautosubmit
1504 Unit testing changes:
1505 * output debugging() is not sent to standard output any more,
1506   use $this->assertDebuggingCalled(), $this->assertDebuggingNotCalled(),
1507   $this->getDebuggingMessages() or $this->assertResetDebugging() instead.
1509 === 2.3 ===
1511 Database layer changes:
1512 * objects are not allowed in paramters of DML functions, use explicit casting to strings if necessary
1514 Note:
1515 * DDL and DML methods which were deprecated in 2.0 have now been removed, they will no longer produce
1516 debug messages and will produce fatal errors
1518 API changes:
1520 * send_stored_file() has changed its interface
1521 * deleted several resourcelib_embed_* functions from resourcelib.php
1523 === 2.2 ===
1525 removed unused libraries:
1526 * odbc, base32, CodeSniffer, overlib, apd profiling, kses, Smarty, PEAR Console, swfobject, cssshover.htc, md5.js
1528 API changes:
1529 * new admin/tool plugin type
1530 * new context API - old API is still available
1531 * deleted users do not have context any more
1532 * removed global search
1535 === 2.1 ===
1537 API changes:
1538 * basic suport for restore from 1.9
1539 * new mobile devices API
1540 * new questions API
1543 === 2.0 ===
1545 API changes:
1546 * new DML API - http://docs.moodle.org/dev/DML_functions
1547 * new DDL API - http://docs.moodle.org/dev/DDL_functions
1548 * new file API - http://docs.moodle.org/dev/File_API
1549 * new $PAGE and $OUTPUT API
1550 * new navigation API
1551 * new theme API - http://docs.moodle.org/dev/Theme_changes_in_2.0
1552 * new javascript API - http://docs.moodle.org/dev/JavaScript_usage_guide
1553 * new portfolio API
1554 * new local plugin type
1555 * new translation support - http://lang.moodle.org
1556 * new web service API
1557 * new cohorts API
1558 * new messaging API
1559 * new rating API
1560 * new comment API
1561 * new sessions API
1562 * new enrolment API
1563 * new backup/restore API
1564 * new blocks API
1565 * new filters API
1566 * improved plugin support (aka Frankenstyle)
1567 * new registration and hub API
1568 * new course completion API
1569 * new plagiarism API
1570 * changed blog API
1571 * new text editor API
1572 * new my moodle and profiles API