Note:

If you want to create a new page for developers, you should create it on the Moodle Developer Resource site.

Deprecation: Difference between revisions

From MoodleDocs
m (typo and tip)
m (Moving tip a little bit.)
Line 38: Line 38:
* A <tt>@todo</tt> tag can be added linking to the issues created for further action. (optional)
* A <tt>@todo</tt> tag can be added linking to the issues created for further action. (optional)
* A <tt>@see</tt> tag can be added to point to the new apis that can be used. (optional)
* A <tt>@see</tt> tag can be added to point to the new apis that can be used. (optional)
* Tip: Usually it's a good idea to inspect the body of the function being deprecated, looking for called functions that, without other uses in core, maybe could be deprecated together with the caller function if they both belong to the same area of code.


Longer deprecation periods can be considered for functions that are widely used.
Longer deprecation periods can be considered for functions that are widely used.
'''Tip:''' Usually it's a good idea to inspect the body of the function being deprecated, looking for called functions that, without other uses in core, maybe could be deprecated together with the caller function if they both belong to the same area of code. This applies to all the process phases (dev, peer review, integration).


=== Step 2. Final deprecation ===
=== Step 2. Final deprecation ===

Revision as of 00:37, 3 August 2016

What is deprecation?

Deprecation, in its programming sense, is the process of taking older code and marking it as no longer being useful within the codebase, usually because it has been superseded by newer code. The deprecated code is not immediately removed from the codebase because doing so may cause regression errors.

Why is deprecation needed?

In an open source project, the end use of the codebase varies. People may have customisations and plugins that depend on a function that has been targeted for deprecation. Rather than simply removing a function, we must gracefully deprecate the function over a period covered by a number of released versions.

What is Moodle's deprecation policy?

  • Deprecations should only be on master, not on stables (exceptions may be made for some external service integrations)
  • Deprecations apply to all public APIs, classes, and files.
  • Removal of a function, class, or file may only be considered after a minimum of 4 major releases since the deprecation.
  • All deprecations should emit debugging notices where possible
  • All deprecations should be noted in the relevant upgrade.txt

Moodle Core deprecation process

Once it is decided that a function should be deprecated, a two-step process should be followed.

Note that both steps should always happen as earlier as possible in the 6-months period between major releases, so all developers will have time to adjust their code and ensure it will work in the next release. Obviously, no changes will be allowed after code freeze (the APIs must remain 100% unmodified after it).

Every deprecation should be documented in the corresponding upgrade.txt files at least once, but ideally both on initial deprecation and on final removal.

Step 1. Immediate action

Deprecation affects only the current master version, in other words, the deprecation only becomes affective after the next major release.

  • If the function is not a member of a class (in other words, it is an independent function), it should be moved, with its PHPDoc and all comments, to lib/deprecatedlib.php, which is included everywhere. If the function is a class member, it will need to be deprecated in its current location.
    • Deprecated behat step definitions should be moved to lib/tests/behat/behat_deprecated.php, including a call to behat_deprecated::deprecated_message() proposing an alternative to the deprecated method.
  • A debugging message should be added to the function so that, when developer debugging mode is on, attention is drawn to the deprecation. The message should state that the function being called has been deprecated. If the function has been replaced, the user should be directed to the alternative.
debugging('foobar() is deprecated. Please use foobar::blah() instead.', DEBUG_DEVELOPER);
  • If the deprecated function has been replaced with a new function, ideally the new function should be called from the deprecated function, so that the new functionality is used. This will make maintenance easier moving forward.
  • A @deprecated tag should be added to the PHPDoc for the function description so that IDEs describing the function will note that it is deprecated, documenting which version it was deprecated in and the MDL issue associated with it. See the guidelines in Coding_style#.40deprecated_.28and_.40todo.29.
  • There will need to be an issue associated with the initial part of the deprecation. A second issue needs to be created to finish the job. The first issue will be linked to second issue. The second issue needs to be a sub-task of an appropriate deprecation META. For example, if the current version is 3.1.2, the function will be marked as deprecated in 3.2 and should normally be removed for 3.6, so the second issue should be an issue in a deprecation epic for the 3.6 version (MDL-54740). This second issue should include instructions on how to remove the function so that when it comes time to do so, the task is trivial for any developer.
  • A @todo tag can be added linking to the issues created for further action. (optional)
  • A @see tag can be added to point to the new apis that can be used. (optional)

Longer deprecation periods can be considered for functions that are widely used.

Tip: Usually it's a good idea to inspect the body of the function being deprecated, looking for called functions that, without other uses in core, maybe could be deprecated together with the caller function if they both belong to the same area of code. This applies to all the process phases (dev, peer review, integration).

Step 2. Final deprecation

  • If a function has been marked as deprecated for 3.x (eg. 3.1) and set for removal at 3.x+4 (eg. 3.5), soon after the release of 3.x+3.1 (eg. 3.4.1), the 3.x+4 deprecation META will be processed. This means that the deprecated function will be removed before 3.x+4, but only in the master version. This allows any potential regressions caused by the removal of the function to be exposed as soon as possible.
  • All content of the function is removed and in the skeleton that remains, an error statement should be included that reports that the function has been removed. You can direct developers to new function(s) in this message.
throw new coding_exception('check_potential_filename() can not be used any more, please use new file API');
  • The PHPDoc for the function should have @param and @return tags removed to reduce the temptation for developers to consider using the function and make it obvious in IDEs that the function has been deprecated. The @deprecated tag should remain. When feasible the description should be removed as well, but do not remove the information about what you should use instead of the deprecated function.
  • Please note that previously the final deprecation was 2 versions instead of 4, for example functions deprecated in 2.9 are throwing exceptions starting from 3.1; however functions deprecated in 3.0 will throw exception in 3.4

See also...