Skip to content

Commit

Permalink
feat: upgrade richie to v2.15.1
Browse files Browse the repository at this point in the history
  • Loading branch information
BbrSofiane committed Aug 19, 2022
1 parent 2e40bb0 commit d01358a
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 6 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Changelog

<!--
Every user-facing change should have an entry in this changelog. Please respect the following instructions:
- Add your changes right below the "Unreleased" section title. If there are other unreleased changes,
add your own on top of them, as the first line in that section.
- Indicate breaking changes by prepending an explosion 💥 character.
- You may optionally append "(by <author>)" at the end of the line, where "<author>" is either one (just one)
of your GitHub username, real name or affiliated organization. These affiliations will be displayed in
he release notes for every release.
- If you need to create a new release, create a separate commit just for that. It is important to respect these
instructions, because git commits are used to generate release notes:
- Add a "## vX.Y.Z (year-month-day)" line just below "## Unreleased", such that the new changes are now listed as part of release.
- The title of the commit should be the same as the section title: "vX.Y.Z (year-month-day)".
- The commit message should be copy-pasted from the release section.
- Have a look at other release commits for reference.
-->

## [Unrealeased]

- [Feature] Upgrade richie to v2.15.1

Upgrade node to 16

## v14.0.0 (2022-06-09)

- 💥[Feature] Upgrade to Nutmeg (by @regisb)
2 changes: 1 addition & 1 deletion tutorrichie/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"defaults": {
"VERSION": __version__,
"DOCKER_IMAGE": "{{ DOCKER_REGISTRY }}overhangio/openedx-richie:{{ RICHIE_VERSION }}",
"RELEASE_VERSION": "v2.9.1",
"RELEASE_VERSION": "v2.15.1",
"HOST": "courses.{{ LMS_HOST }}",
"MYSQL_DATABASE": "richie",
"MYSQL_USERNAME": "richie",
Expand Down
10 changes: 5 additions & 5 deletions tutorrichie/templates/richie/build/richie/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ARG RICHIE_VERSION={{ RICHIE_RELEASE_VERSION }}
RUN git clone $RICHIE_REPOSITORY --branch $RICHIE_VERSION --depth 1 /richie

#--------- Front-end builder image
FROM node:14 as frontend-builder
FROM node:16 as frontend-builder

COPY --from=base /richie/src/frontend /app/richie/src/frontend
WORKDIR /app/richie/src/frontend
Expand Down Expand Up @@ -42,10 +42,10 @@ RUN pip install pip==22.0.4 setuptools==62.1.0 wheel==0.37.1
RUN pip install -e .[sandbox]
RUN pip install uwsgi==2.0.20
RUN pip install mysqlclient==2.1.0
# Use temporarily a forked version of djangocms-admin-style
# Remove this when djangocms-admin-style 2.0.3 will be released\
# See upstream Dockerfile https://github.com/openfun/richie/blob/master/Dockerfile
RUN pip install git+https://github.com/jbpenrath/djangocms-admin-style@fun#egg=djangocms-admin-style
# The django-cms fork includes drillable search feature,
# it should be removed when this feature will be officially released
# See upstream Dockerfile https://github.com/openfun/fun-richie-site-factory/blob/main/Dockerfile
RUN pip install git+https://github.com/jbpenrath/django-cms@fun-3.11.0#egg=django-cms
# Install requirements for storing media assets on S3/MinIO
RUN pip install django-storages==1.12.3 boto3==1.20.25

Expand Down

0 comments on commit d01358a

Please sign in to comment.