Skip to content

Commit 3fd66d0

Browse files
Muhammad Faraz  MaqsoodMuhammad Faraz  Maqsood
authored andcommitted
v19.0.0
upgrade to sumac
1 parent 1cc9c3f commit 3fd66d0

8 files changed

+16
-10
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,16 @@ instructions, because git commits are used to generate release notes:
1919

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

22+
<a id='changelog-19.0.0'></a>
23+
## v19.0.0 (2024-10-23)
24+
25+
- 💥[Feature] Upgrade to Sumac. (by @Faraz32123)
26+
- 💥[Feature] Update Course Discovery Image to use Ubuntu 22.04 as base OS. (by @hinakhadim)
27+
- [Bugfix] Fix catalog_service_user permissions and 403 while fetching pathways (by @dyudyunov)
28+
- [BugFix] Fix images(media) persistance issue by mounting media directory in volumes through patches. (by @Faraz32123)
29+
- [Bugfix] Fix legacy warnings during Docker build. (by @regisb)
30+
31+
2232
<a id='changelog-18.0.0'></a>
2333
## v18.0.0 (2024-05-14)
2434

changelog.d/20240621_170044_regis.md

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

changelog.d/20240626_115731_faraz.maqsood_images_persistance_issue.md

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

changelog.d/20240710_160247_evgen.dyudyunov_fix_service_user_permissions.md

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

changelog.d/20241018_185457_hina.khadim_upgrade_ubuntu.md

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

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
long_description_content_type="text/x-rst",
3535
packages=find_packages(exclude=["tests*"]),
3636
include_package_data=True,
37-
install_requires=["tutor>=18.0.0,<19.0.0"],
38-
extras_require={"dev": "tutor[dev]>=18.0.0,<19.0.0"},
37+
install_requires=["tutor>=19.0.0,<20.0.0"],
38+
extras_require={"dev": "tutor[dev]>=19.0.0,<20.0.0"},
3939
python_requires=">=3.8",
4040
entry_points={"tutor.plugin.v1": ["discovery = tutordiscovery.plugin"]},
4141
classifiers=[

tutordiscovery/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "18.0.0"
1+
__version__ = "19.0.0"

tutordiscovery/templates/discovery/build/discovery/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ RUN --mount=type=cache,target=/openedx/.cache/pip,sharing=shared pip install \
4747
# https://pypi.org/project/setuptools/
4848
# https://pypi.org/project/pip/
4949
# https://pypi.org/project/wheel/
50-
setuptools==69.1.1 pip==24.0 wheel==0.43.0
50+
setuptools==75.2.0 pip==24.2 wheel==0.44.0
5151

5252
# Install a recent version of nodejs
53-
RUN pip install nodeenv==1.8.0
53+
RUN pip install nodeenv==1.9.1
5454
# nodejs version picked from https://github.com/openedx/course-discovery/blob/master/Dockerfile
5555
RUN nodeenv /openedx/nodeenv --node=16.14.2 --prebuilt
5656
ENV PATH=/openedx/nodeenv/bin:${PATH}
@@ -73,7 +73,7 @@ RUN --mount=type=cache,target=/openedx/.cache/pip,sharing=shared pip install \
7373
# Use redis as a django cache https://pypi.org/project/django-redis/
7474
django-redis==5.4.0 \
7575
# uwsgi server https://pypi.org/project/uWSGI/
76-
uwsgi==2.0.24
76+
uwsgi==2.0.27
7777

7878
{% if DISCOVERY_ATLAS_PULL %}
7979
# Pull translations. Support the OEP-58 proposal behind a feature flag until it's fully implemented.

0 commit comments

Comments
 (0)