MDL-59510 core_oauth2: add autorefresh mode to oauth2\client
[moodle.git] / backup / upgrade.txt
blob3d55558a042f8c9e58cbacec3a4d35aaa55cbdef
1 This files describes API changes in /backup/*,
2 information provided here is intended especially for developers.
4 === 4.0 ===
5  * Local plugins can now hook into a backup and restore process of grade items by
6    using define_grade_item_plugin_structure method (See MDL-69418).
8 === 3.1 ===
10 * New close() method added to loggers so they can close any open resource. Previously
11   any backup and restore operation using the file logger may be leaving unclosed files.
12 * New destroy() method added to loggers, normally called from backup and restore controllers
13   own destroy() method to ensure that all references in the chained loggers are deleted
14   and any open resource within them is closed properly.
16 === 3.0 ===
18 * The backup_auto_keep setting, in automated backups configuration, is now
19   renamed to backup_auto_max_kept as part of a rationalise of naming (see MDL-50602)
21 === 2.6 ===
23 * The backup_controller_dbops::create_temptable_from_real_table()
24   method is not available anymore. Temp tables must be created
25   inline always.
27 * Using the info field from backup_ids_temp or backup_files_temp
28   must now go via backup_controller_dbops::decode_backup_temp_info() and
29   backup_controller_dbops::encode_backup_temp_info(). The implementation
30   of the encoding has changed.  These new functions encapsulate any future
31   changes to the encoding.
33 === 2.5 ===
35 * New optional param $sortby in backup set_source_table() allows to
36     specify the ORDER BY clause to be used. Previously it was required
37     to use the set_source_sql() more complex alternative in places
38     requiring ordering.
39 * The old 1.9 files backuplib.php, lib.php and restorelib.php and the bb directory,
40     (all under /backup) have been deleted and no code should rely on them anymore.
42 === 2.4 ===
44 * Since 2.3.1+ the backup file name schema has changed. The ID of the course will always be part of
45     the filename regardless of the setting 'backup_shortname'. See MDL-33812.
47 === 2.3 ===
49 * Since 2.3.1+ the backup file name schema has changed. The ID of the course will always be part of
50     the filename regardless of the setting 'backup_shortname'. See MDL-33812.
52 === 2.2 ===
54 * Since 2.2.4+ the backup file name schema has changed. The ID of the course will always be part of
55     the filename regardless of the setting 'backup_shortname'. See MDL-33812.