Skip to content

Commit 5afc18f

Browse files
authored
v21.0.5 (#1379)
1 parent 62106cc commit 5afc18f

6 files changed

Lines changed: 10 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,13 @@ instructions, because git commits are used to generate release notes:
2020

2121
<!-- scriv-insert-here -->
2222

23+
<a id='changelog-21.0.5'></a>
24+
## v21.0.5 (2026-05-05)
25+
26+
- [Bugfix] Fixes wrong LMS_HOST when `tutor dev launch -I` is executed. After this change, it will set to `local.openedx.io` instead of `www.myopenedx.com` (by @muhammadadeeltajamul)
27+
28+
- [Feature] Upgrade OPENEDX_COMMON_VERSION to release/ulmo.3 (by @ahmed-arb)
29+
2330
<a id='changelog-21.0.4'></a>
2431
## v21.0.4 (2026-04-10)
2532

changelog.d/20260429_fixed_wrong_host_on_dev_launch.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/configuration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ Open edX customisation
132132

133133
This defines the git repository from which you install Open edX platform code. If you run an Open edX fork with custom patches, set this to your own git repository. You may also override this configuration parameter at build time, by providing a ``--build-arg`` option.
134134

135-
- ``OPENEDX_COMMON_VERSION`` (default: ``"release/ulmo.2"``, or ``master`` in :ref:`Tutor Main <main>`)
135+
- ``OPENEDX_COMMON_VERSION`` (default: ``"release/ulmo.3"``, or ``master`` in :ref:`Tutor Main <main>`)
136136

137137
This defines the default version that will be pulled from all Open edX git repositories.
138138

tutor/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Increment this version number to trigger a new release. See
44
# docs/tutor.html#versioning for information on the versioning scheme.
5-
__version__ = "21.0.4"
5+
__version__ = "21.0.5"
66

77
# The version suffix will be appended to the actual version, separated by a
88
# dash. Use this suffix to differentiate between the actual released version and

tutor/templates/build/openedx/Dockerfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,6 @@ RUN git config --global user.email "tutor@overhang.io" \
5959
{%- else %}
6060
# Patches in non-Main mode (i.e., Release mode)
6161

62-
# SECURITY FIX: remove activation_key exposure from account API
63-
RUN curl -fsSL https://github.com/openedx/openedx-platform/commit/21cead238466ca398ba368518f1d3288431d68f4.patch | git am
6462
{%- endif %}
6563

6664
{# Add new patches like this: #}

tutor/templates/config/defaults.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ OPENEDX_LMS_UWSGI_WORKERS: 2
6161
OPENEDX_MYSQL_DATABASE: "openedx"
6262
OPENEDX_MYSQL_USERNAME: "openedx"
6363
# the common version will be automatically set to "master" in the main branch
64-
OPENEDX_COMMON_VERSION: "release/ulmo.2"
64+
OPENEDX_COMMON_VERSION: "release/ulmo.3"
6565
OPENEDX_EXTRA_PIP_REQUIREMENTS: []
6666
MYSQL_HOST: "mysql"
6767
MYSQL_PORT: 3306

0 commit comments

Comments
 (0)