Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Based on Koa Dates: 2020-05-28 to 2020-12-31 (estimated end date)11-12

Deprecations

Jira Legacy
serverSystem JIRA
columnskey,summary,reporter,status,deprecation proposal accepted date,removal date
maximumIssues40
jqlQueryproject = DEPR AND Status NOT IN (Proposed, Rejected, Abandoned) AND (("Deprecation Proposal Accepted Date" > '2020-05-27' AND "Deprecation Proposal Accepted Date" <= '2020-12-31') OR (Status = Communicated AND "Deprecation Proposal Accepted Date" IS EMPTY AND created > '2020-05-27' AND created <= '2020-12-31')) AND (Status != Removed OR "Removal Date" > '2020-12-31') ORDER BY Status, Key
serverId13fd1930-5608-3aac-a5dd-21b934d3a4b4

...

  • As a part of DEPR-43 work, a migration was added that will drop all tables related to shoppingcart.

  • To disable forum digest features, you now just need to set the Django Setting FEATURES['ENABLE_FORUM_DAILY_DIGEST'] to False.

  • The COURSE_OUTLINE_PAGE_FLAG and UNIFIED_COURSE_TAB_FLAG feature flags have been deprecated (see PR and deprecation ticket DEPR-108). They were replaced by their negative equivalent: DISABLE_COURSE_OUTLINE_PAGE_FLAG and DISABLE_UNIFIED_COURSE_TAB_FLAG which default to False. Thus, if you manually set the older flags (which defaulted to True) to False, you should set the new flags to True.

  • The symlinks in /edx/bin to python, pip, and django-admin.py for each service were removed, as a new version of virtualenv used to create the virtual environments prevents such links from working correctly (in exchange for reliably creating working environments even if the newest releases of pip and setuptools have some problems, among other optimizations and fixes). Any scripts that currently call links such as “/edx/bin/python.edxapp” should be updated to instead call the binaries targeted by such links (in the previous example, “/edx/app/edxapp/venvs/edxapp/bin/python”). The PR that removed them has some additional background notes.

...