diff --git a/CHANGELOG.md b/CHANGELOG.md index 68eed72..96087d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ Note: Breaking changes between versions are indicated by "💥". ## Unreleased +- [Bugfix] Fix "Invalid type for parameter ContentType" error on js upload in Scorm xblock ([openedx-scorm-xblock #16](https://github.com/overhangio/openedx-scorm-xblock/issues/16)) + ## v11.0.4 (2020-12-17) - [Bugfix] Fix "Read-only file system" errors when running `tutor dev runserver` commands on Mac OS. (#392) diff --git a/tutor/templates/build/openedx/Dockerfile b/tutor/templates/build/openedx/Dockerfile index 4446c5f..d786a6d 100644 --- a/tutor/templates/build/openedx/Dockerfile +++ b/tutor/templates/build/openedx/Dockerfile @@ -52,8 +52,10 @@ RUN curl https://github.com/overhangio/edx-platform/commit/928fe14a5656303b53828 # Fix video transcript upload to S3 # https://github.com/edx/edx-platform/pull/24800 RUN curl https://github.com/overhangio/edx-platform/commit/81b18b1b97ca89e2d941c9f7283e3f6e385c5f92.patch | git apply - - - +# Fix js upload in scorm packages by upgrading django-pipeline +# https://github.com/edx/edx-platform/pull/25957 +# https://github.com/overhangio/edx-platform/tree/overhangio/upgrade-django-pipeline +RUN curl https://github.com/overhangio/edx-platform/commit/1c733e3ba11249cf16358684169e6137a308e796.patch | git apply - ###### Download extra locales to /openedx/locale/contrib/locale FROM minimal as locales