Merge branch 'MDL-80725-402-enfix' of https://github.com/mudrd8mz/moodle into MOODLE_...
[moodle.git] / auth / upgrade.txt
blobf53c19d6098966043d7408c7bf5d0ba3e0a9c4f5
1 This files describes API changes in /auth/* - plugins,
2 information provided here is intended especially for developers.
4 === 4.2 ===
5 * Support for configuration with the deprecated auth_config.php file has been removed.
6 * The moodle-auth-passwordunmask YUI module has been removed. Any uses should be replaced with core_form/passwordunmask.
8 === 3.9 ===
10 * The following functions, previously used (exclusively) by upgrade steps are not available anymore because of the upgrade cleanup performed for this version. See MDL-65809 for more info:
11     - upgrade_fix_config_auth_plugin_names()
12     - upgrade_fix_config_auth_plugin_defaults()
14 === 3.7 ===
16 * get_password_change_info() method is added to the base class and returns an array containing the subject and body of the message
17   to the user that contains instructions on how to change their password. Authentication plugins can override this method if needed.
19 === 3.6 ===
21 * Login forms generated from Moodle must include a login token to protect automated logins. See \core\session\manager::get_login_token().
23 === 3.5 ===
25 * The auth_db and auth_ldap plugins' implementations of update_user_record() have been removed and both now
26   call the new implementation added in the base class.
27 * Self registration plugins should use core_privacy\local\sitepolicy\manager instead of directly checking
28   $CFG->sitepolicy , especially in custom signup forms.
30 === 3.3 ===
32 * Authentication plugins have been migrated to use the admin settings API.  Plugins should use a settings.php file to
33   manage configurations rather than using the old config.html files. See how the helper function
34   upgrade_fix_config_auth_plugin_names() can be used to convert the legacy settings to the new ones. Another helper
35   function upgrade_fix_config_auth_plugin_defaults() can be used to populate the settings with default values so that
36   they are not falsely reported as newly added ones.
37 * The function 'print_auth_lock_options' has been replaced by 'display_auth_lock_options' which uses the admin settings API.
38   See auth_manual as an exmple of how it can be used.  More information can be found in MDL-12689.
39 * The list of supported identity providers (SSO IdP) returned by the 'loginpage_idp_list' method (used to render the
40   login page and login block links) now supports a new key 'iconurl' which should be used instead of the legacy 'icon'.
42 === 3.2 ===
44 * New auth hook - pre_user_login_hook() - available, triggered right after the user object is created.
45   This can be used to modify the user object before any authentication errors are raised.
46 * The block_login now displays the loginpage_idp_list() links as well as main login page.
47 * The authentication plugin auth_radius has been moved to https://github.com/moodlehq/moodle-auth_radius
48 * New auth_email::user_signup_with_confirmation() method has a new optional parameter $confirmationurl to provide a different
49   confirmation URL.
50 * New signup_is_enabled() function available in lib/authlib.php to safely check if sign-up is enabled in the site.
52 === 3.0 ===
54 * login_signup_form::signup_captcha_enabled() now calls is_captcha_enabled() from the current auth plugin instead of from auth_email
56 === 2.9 ===
58 * Do not update user->firstaccess from any auth plugin, the complete_user_login() does it automatically.
60 * Add user_add_password_history() to user_signup() method.
62 * New auth hook - pre_loginpage_hook() - available, triggered before redirecting to the login page.
64 === 2.8 ===
66 * \core\session\manager::session_exists() now verifies the session is active
67   instead of only checking the session data is present in low level session handler
69 * MNet is no longer sending logs between the client and parent sites. auth_plugin_mnet::refresh_log() is now deprecated. There is
70   no alternative. Please don't use this function.
72 === 2.7 ===
74 * If you are returning a url in method change_password_url() from config, please make sure it is set before trying to use it.
76 === 2.6 ===
78 * can_be_manually_set() - This function was introduced in the base class and returns false by default. If overriden by
79   an authentication plugin to return true, the authentication plugin will be able to be manually set for users. For example,
80   when bulk uploading users you will be able to select it as the authentication method they use.
82 === 2.4 ===
84 required changes in code:
85 * use role_get_name() or role_fix_names() if you need any role names, using role.name
86   directly from database is not correct any more
88 optional - no changes needed:
89 * add support for custom user signup form - see auth_plugin_base::signup_form() function
91 === 2.2 ===
93 required changes in code:
94 * the correct sequence to set up global $USER is:
95     $user = get_complete_user_data('username', $username); // or $user = authenticate_user_login()
96     enrol_check_plugins($user);
97     session_set_user($user);