Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,15 @@ instructions, because git commits are used to generate release notes:

<!-- scriv-insert-here -->

<a id='changelog-21.0.1'></a>
## v21.0.1 (2026-02-11)

- [Feature] Add support for mounting `openedx-platform`, the which is new name of `edx-platform`. Mounting by the old name, `edx-platform`, will continue to work for now as well (by @kdmccormick).

- [Bugfix] Upgrade edx-search to 4.4.0 to fix Catalog MFE (by @kdmccormick)
- [Security] Upgrade Django from 5.2.7 to 5.2.11 (by @kdmccormick)
- [Bugfix] Upgrade ora2 to address pkg\_resources build failure (by @kdmccormick)

<a id='changelog-21.0.0'></a>
## v21.0.0 (2026-01-07)

Expand Down

This file was deleted.

This file was deleted.

2 changes: 1 addition & 1 deletion tutor/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Increment this version number to trigger a new release. See
# docs/tutor.html#versioning for information on the versioning scheme.
__version__ = "21.0.0"
__version__ = "21.0.1"

# The version suffix will be appended to the actual version, separated by a
# dash. Use this suffix to differentiate between the actual released version and
Expand Down
11 changes: 10 additions & 1 deletion tutor/templates/build/openedx/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,18 @@ RUN git config --global user.email "[email protected]" \
# Patches in Main node
{%- else %}
# Patches in non-Main mode (i.e., Release mode)
## Update edx-search to 4.4.0 to fix the Catalog MFE
RUN curl -fsSL https://github.com/openedx/openedx-platform/commit/1db37f309f710fa54e2372b1a3ca6dbb9b05640f.patch | git am
## Bump Django 5.2.7->5.2.11 for security fix
RUN curl -fsSL https://github.com/openedx/openedx-platform/commit/5f95ef0ba14baf145652d93be33176c51f926c6e.patch | git am
## Upgrade edx-ora2 to fix pkg_resources build error
RUN curl -fsSL https://github.com/openedx/openedx-platform/commit/e05ed0afb1a291635a91efc8c1620d06858f65c6.patch | git am
{%- endif %}

{# Example: RUN curl -fsSL https://github.com/openedx/edx-platform/commit/<GITSHA1>.patch | git am #}
{# Add new patches like this: #}
{# RUN curl -fsSL https://github.com/openedx/edx-platform/commit/<GITSHA1>.patch | git am #}
{# Include a comment on why the patch is neccessary. #}

{{ patch("openedx-dockerfile-post-git-checkout") }}

##### Empty layer with just the repo at the root.
Expand Down