v19.0.0
upgrade to sumac
This commit is contained in:
parent
468662c75c
commit
b89af42406
10
CHANGELOG.md
10
CHANGELOG.md
@ -19,6 +19,16 @@ instructions, because git commits are used to generate release notes:
|
||||
|
||||
<!-- scriv-insert-here -->
|
||||
|
||||
<a id='changelog-19.0.0'></a>
|
||||
## v19.0.0 (2024-10-23)
|
||||
|
||||
- 💥[Feature] Upgrade to Sumac. (by @Faraz32123)
|
||||
- 💥[Feature] Update Course Discovery Image to use Ubuntu 22.04 as base OS. (by @hinakhadim)
|
||||
- [Bugfix] Fix catalog_service_user permissions and 403 while fetching pathways (by @dyudyunov)
|
||||
- [BugFix] Fix images(media) persistance issue by mounting media directory in volumes through patches. (by @Faraz32123)
|
||||
- [Bugfix] Fix legacy warnings during Docker build. (by @regisb)
|
||||
|
||||
|
||||
<a id='changelog-18.0.0'></a>
|
||||
## v18.0.0 (2024-05-14)
|
||||
|
||||
|
||||
@ -1 +0,0 @@
|
||||
- [Bugfix] Fix legacy warnings during Docker build. (by @regisb)
|
||||
@ -1 +0,0 @@
|
||||
- [BugFix] Fix images(media) persistance issue by mounting media directory in volumes through patches. (by @Faraz32123)
|
||||
@ -1 +0,0 @@
|
||||
- [Bugfix] Fix catalog_service_user permissions and 403 while fetching pathways (by @dyudyunov)
|
||||
@ -1 +0,0 @@
|
||||
- 💥[Feature] Update Course Discovery Image to use Ubuntu 22.04 as base OS. (by @hinakhadim)
|
||||
4
setup.py
4
setup.py
@ -34,8 +34,8 @@ setup(
|
||||
long_description_content_type="text/x-rst",
|
||||
packages=find_packages(exclude=["tests*"]),
|
||||
include_package_data=True,
|
||||
install_requires=["tutor>=18.0.0,<19.0.0"],
|
||||
extras_require={"dev": "tutor[dev]>=18.0.0,<19.0.0"},
|
||||
install_requires=["tutor>=19.0.0,<20.0.0"],
|
||||
extras_require={"dev": "tutor[dev]>=19.0.0,<20.0.0"},
|
||||
python_requires=">=3.9",
|
||||
entry_points={"tutor.plugin.v1": ["discovery = tutordiscovery.plugin"]},
|
||||
classifiers=[
|
||||
|
||||
@ -1 +1 @@
|
||||
__version__ = "18.0.0"
|
||||
__version__ = "19.0.0"
|
||||
|
||||
@ -47,10 +47,10 @@ RUN --mount=type=cache,target=/openedx/.cache/pip,sharing=shared pip install \
|
||||
# https://pypi.org/project/setuptools/
|
||||
# https://pypi.org/project/pip/
|
||||
# https://pypi.org/project/wheel/
|
||||
setuptools==69.1.1 pip==24.0 wheel==0.43.0
|
||||
setuptools==75.2.0 pip==24.2 wheel==0.44.0
|
||||
|
||||
# Install a recent version of nodejs
|
||||
RUN pip install nodeenv==1.8.0
|
||||
RUN pip install nodeenv==1.9.1
|
||||
# nodejs version picked from https://github.com/openedx/course-discovery/blob/master/Dockerfile
|
||||
RUN nodeenv /openedx/nodeenv --node=16.14.2 --prebuilt
|
||||
ENV PATH=/openedx/nodeenv/bin:${PATH}
|
||||
@ -73,7 +73,7 @@ RUN --mount=type=cache,target=/openedx/.cache/pip,sharing=shared pip install \
|
||||
# Use redis as a django cache https://pypi.org/project/django-redis/
|
||||
django-redis==5.4.0 \
|
||||
# uwsgi server https://pypi.org/project/uWSGI/
|
||||
uwsgi==2.0.24
|
||||
uwsgi==2.0.27
|
||||
|
||||
{% if DISCOVERY_ATLAS_PULL %}
|
||||
# Pull translations. Support the OEP-58 proposal behind a feature flag until it's fully implemented.
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user