Régis Behmo 2019-07-05 06:27:28 +08:00
parent 1ed0185dfd
commit c02fabb493
2 changed files with 8 additions and 0 deletions

View File

@ -2,6 +2,10 @@
Note: Breaking changes between versions are indicated by "💥".
## Latest
- [Security] Apply certificate XSS security patch
## 3.5.1 (2019-07-04)
- [Feature] Make it possible for plugins to patch the build templates

View File

@ -24,6 +24,10 @@ RUN mkdir -p /openedx/edx-platform && \
git clone $EDX_PLATFORM_REPOSITORY --branch $EDX_PLATFORM_VERSION --depth 1 /openedx/edx-platform
WORKDIR /openedx/edx-platform
# Apply patches
# Certificates XSS vulnerability https://github.com/edx/edx-platform/pull/20904
RUN curl https://github.com/edx/edx-platform/commit/b33db2c548a1a530510d785f7659c78783a187fa.patch | git apply -
# Download extra locales to /openedx/locale
# TODO upgrade this to ironwood
RUN cd /tmp \