Deprecation Policy

Deprecation Policy

This document outlines Sensei’s code deprecation policy and the timelines for removing deprecated code from the codebase.

Deprecated code is always removed in a major release. The scenarios below assume that there is at least one minor release that contains the deprecation before the major release in which the code is removed.

When to Remove Deprecated Code

Deprecated code removal will adhere to the following guidelines:

  • Code that is considered public will be removed two major versions after the deprecation. This includes hooks, public and protected methods and global functions that have not been marked with @access private.
  • Functions and methods marked with @access private are considered private and shouldn’t be used. They will be removed in the next major version after being marked as deprecated.
  • Private methods may be removed without notice.

Code Deprecation Process

When deprecating code, the scenarios above can be used to arrive at the major version in which the code will be removed and, if desired, the version can be included in the deprecation notice. Code will be marked as deprecated by using standard WordPress methods for this purpose _deprecated_function, _deprecated_argument or _doing_it_wrong.

A Github issue for tracking deprecations should be created and attached to the appropriate milestone. A reference to the pull request in which the code was deprecated, and the name of the function/method/hook that is being deprecated, should be added to the issue description. Additional deprecations scheduled for removal in the same release can be appended to the existing issue.

Did you find this article useful?

  • Courses

    o add a course, go to Courses > Add New. You will see that some blocks have alread...
  • Modules

    Modules A module is a container for a group of lessons in a course. Conceptually, they exist as an...
  • Lessons

    Lessons To add a lesson, go to Lessons > Add New. You will see that some blocks ...
  • Quizzes

    Quizzes Quizzes are associated with an individual lesson. That means that in order to add a quiz, ...
  • Questions

    Questions Questions can be added in one of two ways – by going to Questions >&#...