mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-04 20:37:52 +00:00
48ca6eb4b0
When we were changing unit titles in the CMS, the changes were taking a long time to be reflected in the LMS. That's because the cache key that corresponds to the course structure was not being updated. It was the responsibility of an asynchronous LMS celery worker to update this cache entry. However, this was impossible in most cases because tasks triggered in the CMS were only processed by CMS workers. That is, unless we are using a custom celery router: https://celery.readthedocs.io/en/latest/userguide/routing.html#routers This is what edx-platform does in the devstack: certain CMS tasks are forwarded both to CMS and to LMS workers. This is achieved by defining the ALTERNATE_WORKER_QUEUES="lms" django setting in the CMS. Adding this setting to Tutor solves the problem in production. However, in development mode Open edX runs without workers (`CELERY_ALWAYS_EAGER=True`). This means that the course structure will not be automatically updated when running `tutor dev` commands, which is a shame. The alternative is to define the "block_structure.invalidate_cache_on_publish" waffle switch. This can be done from the UI (in /admin/waffle/switch/add/) or by running: tutor dev run lms ./manage.py lms waffle_switch block_structure.invalidate_cache_on_publish on --create However, this flag seems to slow down access to the LMS for the first user who tries to access the course after it has been updated. Close #302
15 KiB
15 KiB
Changelog
Note: Breaking changes between versions are indicated by "💥".
Unreleased
- [Bugfix] Fix updates to the course structure in the LMS (#315)
v3.11.9 (2020-04-07)
- [Bugfix] Fix Android app build for domain names that include a dash ("-")
v3.11.8 (2020-04-06)
- [Feature] Add
encrypt
template filter to conveniently add htpasswd-based authentication to nginx - [Bugfix] Fix "missing tty" during init in cron jobs
v3.11.7 (2020-04-01)
- [Bugfix] Fix missing js translations
- [Bugfix] Fix tls certificate generation in cron jobs
v3.11.6 (2020-03-13)
- [Bugfix] Fix "Unable to resolve dependency" error during forum initialisation
- [Feature] Add
settheme
command to easily assign a theme to a domain name - [Improvement] Modify nginx access logs to include request scheme and server name (plugin developers should use the "tutor" log format)
- [Bugfix] Fix DNS resolution of restarted service
- [Feature] Restart multiple services with
local restart
- [Feature] Make it possible to easily reload openedx gunicorn process with
tutor local exec lms reload-gunicorn
- [Improvement] Rename lms/cms_worker to lms/cms-worker in local deployment
- [Improvement] Add the management plugin to the rabbitmq container
- [Improvement] Make it possible to run an Elasticsearch service on https
v3.11.5 (2020-02-27)
- [Improvement] Switch edx-platform from open-release/ironwood.2 tag to the open-release/ironwood.master branch
- [Security] Upgrade django to 1.11.28
- [Improvement] Make it possible to configure the elasticsearch heap size
- [Bugfix] Fix broken elasticsearch environment variables
- [Improvement] Restore more recent Android app version (#289).
v3.11.4 (2020-02-16)
- [Bugfix] Fix auth problem in Android app (#289)
3.11.3 (2020-01-21)
- [Bugfix] Fix incorrectly parsed empty strings for
config save --set ...=...
commands
3.11.2 (2020-01-17)
- [Bugfix] Make sure
docker-compose.override.yml
are loaded in dev and local contexts
3.11.1 (2020-01-16)
- [Feature] Add
config render
command
3.11.0 (2020-01-14)
- [Feature] Add support for simple, YAML-based plugins
- 💥[Improvement] The output of
plugins list
now includes plugin version numbers
3.10.1 (2020-01-13)
- [Improvement] Explicitely point to docker.io images, when necessary, for podman compatibility
3.10.0 (2020-01-10)
- [Bugfix] Fix oauth authentication in dev mode
- [Improvement] Upgrade to the 3.7 docker-compose syntax
- [Improvement] The
dev runserver
command can now be run for just any service - 💥[Feature]
dev run/exec
commands now support generic options which are passed to docker-compose. Consequently, defining theTUTOR_EDX_PLATFORM_PATH
environment variable no longer works. Instead, users are encouraged to explicitely pass the-v
option, define a command alias or create adocker-compose.override.yml
file.
3.9.1 (2020-01-08)
- [Improvement] Make it possible to override the project name in development mode
- [Bugfix] Fix user switching in development mode
- [Bugfix] Fix "k8s quickstart" crash
3.9.0 (2019-12-21)
- [Security] Apply django 1.11.21 -> 1.11.27 security patches
- [Bugfix] Fix running dev image with
sudo
- [Improvement] Add
cms/lms-env-features
patches (#276) - [Feature] Add plugin subcommands
- 💥[Improvement] Move
-r/--root
option to parent command level - [Bugfix] Fix course about page visibility
- [Improvement] Print gunicorn access logs in the console
- 💥[Improvement] Get rid of the
indexcourses
andportainer
command (#269)
3.8.0 (2019-11-22)
- [Improvement] Add
k8s-deployments-nginx-volume-mounts
patch - [Bugfix] Fix running forum locally when both elasticsearch and mongodb are not activated (#266)
- [Bugfix] Fix MongoDb url in forum when running separate service (#267)
- 💥[Improvement] Better
dev
commands, with dedicated development docker image. One of the consequences is that thedev watchthemes
command is replaced bydev run lms watchthemes
. - [Improvement]
images
commands now accept multipleimage
arguments
3.7.4 (2019-10-19)
- [Bugfix] Fix missing requirements file in pypi package (#261)
- [Improvement] Add missing cms/lms production/development setting patches
- [Improvement] Allow SigV4 authentication for video upload to S3
- [Bugfix] Fix cms development settings
3.7.3 (2019-10-17)
- [Improvement] Upgrade openedx locales to Ironwood
3.7.2 (2019-10-09)
- [Improvement] Properly set studio title (#246)
- [Improvement] Enable Mysql strict mode
3.7.1 (2019-10-06)
- [Feature] Introduce tutor docker image
- [Feature] Introduce
local hook
command for plugin development. - [Bugfix] Persist
private.txt
file between two runs ofconfig save
. (#247) - [Improvement] Added configuration values to limit the number of gunicorn workers for the LMS and CMS.
3.7.0 (2019-09-03)
- 💥[Improvement] Get rid of mysql-client container
- [Improvement] Add "local-docker-compose-lms/cms-dependencies" plugin patches
- [Improvement] Use "exec" instead of "run" to initialise local platform
3.6.3 (2019-08-31)
- [Security] Fix CustomTagModule mako template injection
- [Improvement] Move all plugins outside of the tutor repo
- [Bugfix/Improvement] Add all plugins (with data) into binary bundle (#242)
3.6.2 (2019-08-07)
- [Bugfix] Fix missing templates in bundled plugins
- [Bugfix] Enable html certificate view
3.6.1 (2019-07-27)
- [Bugfix] Fix missing patches from minio plugin (thanks @Wejie!)
3.6.0 (2019-07-11)
- [Feature] Modify
createuser
commands to define a password from the command line - [Improvement] Better yaml value parsing from command line
- [Feature] Add
dev exec
command - [Bugfix] Fix incorrect notes settings definition
- [Improvement] Make it possible to start/stop/reboot a selection of services
- [Improvement] Add
local/k8s reboot
commands - [Improvement] Add
-U/--unset
option toconfig save
- [Bugfix] Fix insecure static asset loading when web proxy is enabled
- [Improvement] Rename
SECRET_KEY
configuration parameter toOPENEDX_SECRET_KEY
- [Improvement] Add support for SSL and TLS in external SMTP server (#231)
- [Bugfix] Fix missing video transcripts in LMS (#229)
- [Improvement] Make it possible to enable/disable multiple plugins at once
- [Improvement] Add a few local and k8s patches for plugins
3.5.3 (2019-07-05)
- [Bugfix] Add pre-init hook for correct initialisation of minio
3.5.2 (2019-07-05)
- [Security] Apply certificate XSS security patch
3.5.1 (2019-07-04)
- [Feature] Make it possible for plugins to patch the build templates
- [Improvement] Move Xqueue and Student notes to a dedicated plugin
3.4.3 (2019-06-24)
- [Bugfix] Fix missing password values from generated configuration
3.4.2 (2019-06-23)
- [Bugfix] Fix incorrect settings during lms/cms init (#224)
3.4.1 (2019-06-23)
- [Bugfix] Fix install from pypi
- [Improvement] Get rid of kubernetes python package dependency
3.4.0 (2019-06-17)
- [Feature] Creation of a plugin system
- [Feature] Kubernetes support out of beta
- [Improvement] Switch to pinned image tags for easier upgrades
- 💥[Improvement] Remove the
-y/--yes
option:tutor config save
is now non-interactive by default. Use-i/--interactive
to force interactive mode. - 💥[Improvement] Replace the
databases
command byinit
. - [Improvement] Upgrade to ironwood.2
- [Improvement] Add
-y/--yes
option tolocal quickstart
for non-interactive quickstart - [Improvement] Persist LMS/CMS logs to disk by default (with collaboration from @silviot 💪)
- [Bugfix] Fix installing a locally cloned requirement repository
- [Improvement] Add
--no-cache
option toimages build
- [Improvement] Make it possible to configure the notes service hostname
- [Improvement] Better, more robust MySQL initialisation
3.3.10 (2019-05-15)
- [Bugfix] Fix boolean configuration choices
3.3.9 (2019-05-13)
- [Improvement] Add
local exec
command for running commands inside existing containers - [Bugfix] Fix triple display of courses in LMS search (upstream patch, #189)
3.3.8 (2019-04-28)
- [Bugfix] Reduce the number of gunicorn workers to address RAM usage (#207)
3.3.7 (2019-04-28)
- [Bugfix] Fix "Timeout after 20s" on running migrations
3.3.6 (2019-04-27)
- [Bugfix] Fix KeyError on first quickstart
- [Improvement] De-duplication of prod/dev settings. Thanks @silviot! 😺
3.3.5 (2019-04-22)
- [Feature] Pluggable LMS/CMS/forum
- [Improvement] Safer environment overwrite. Thanks @silviot! 👐
- [Security] Fix Jinja2 vulnerability
- [Improvement] Improve CLI cold start performance
- [Improvement] Allow uppercase "Y" and "N" as answers to boolean questions
3.3.4 (2019-04-09)
- [Improvement] Rename
--silent
option to-y/--yes
- [Bugfix] Fix (again) login from studio when https is activated (#193)
3.3.3 (2019-03-29)
- [Bugfix] Fix
pip install tutor-openedx
3.3.2 (2019-03-27)
- [Bugfix] Fix login from localhost
- [Bugfix] Fix Android app image build
3.3.1 (2019-03-25)
- [Improvement] Improve assets building for development
- [Improvement] Support CMS login when the CMS is not a subdomain of the LMS
3.3.0 (2019-03-22)
- [Feature] Upgrade from Hawthorn to Ironwood
3.2.2 (2019-03-21)
- [Feature] Multiple platforms on a single server \o/
- [Feature] Easily configure web proxy on the host
- [Bugfix] Fix
images pull all
command which failed on "all" image - [Improvement] Add configurable mongodb, SMTP and rabbitmq authentication
- [Improvement] Harmonize mysql username/password configuration parameters
- [Feature] Configurable and pluggable data storage backends (#114)
3.2.1 (2019-03-19)
- [Feature] Enable grade downloads by default (#143)
- [Improvement] Remove orphan containers on
local start
3.2.0 (2019-03-18)
- [Improvement]
images pull
now also pulls vendor images - [Feature] Add convenient
config printvalue
command - [Feature] Customize docker registry
- [Feature] Load configuration parameters from the system environment
- [Improvement] Automatic environment re-generation after re-configuration
- [Improvement] Error and interrupt handling in UI and web UI
- [Bugfix] Fix missing webui env directory
3.1.0 (2019-03-09)
- [Improvement] Install python requirements in virtual env in docker image
- [Bugfix] Add missing volume for theme development
- [Improvement] Rename "config [non]interactive" command to "config save [--silent]"
- [Improvement] More explicit logging during environment generation
- [Improvement] Configurable docker images (#122)
- [Bugfix] Fix "android pullimage" command
- [Improvement] Do not upgrade images as part of quickstart
- [Bugfix] Fix USERID setup in development mode and various dev-related docs (#177)
3.0.6 (2019-02-26)
- [Bugfix] Fix import/export of demo course (#175)
3.0.5 (2019-02-14)
- [Feature] Add cloud deployment script
- [Improvement] Run
images pull
command - [Improvement] Run
indexcourses
on importing demo course - [Improvement] Add
runserver stop
command
3.0.4 (2019-02-13)
- [Minor] Minimum required
click
version is 7.0 (#171) - [Bugfix] Fix
runserver
dev command (#172) - [Minor] Fix non-https link to documentation in pypi
- [Minor] Fix
createuser
documentation
3.0.3 (2019-02-12)
- [Bugfix] Add missing template data to pypi package
- [Bugfix] Fix quickstart on Kubernetes (#164)
- [Improvement] Add datatases task to Kubernetes quickstart (#167)
3.0.2 (2019-02-12)
- [Bugfix] Fix import paths -- 🚀 thanks @silviot!
- [Bugfix] Properly set docker project name in mysql logs -- 🦊 thanks again @silviot!
3.0.1 (2019-02-11)
- [Bugfix] fix mysql initialisation (#159, #160)
- [Improvement] Better handling of continuous integration
- [Bugfix] fix
tutor --version
(#156) - [Improvement] Absolute settings imports -- 📯 thanks @tonytan4ever!
3.0.0 (2019-02-09)
- [Improvement] Complete rewrite of Tutor: switch from a make-based project to a single binary which runs all commands.
- [Feature] An web user interface can be created with
tutor webui start
- [Bugfix] Add missing elasticsearch to Kubernetes deployment (#147)
- [Improvement] Upload
tutor-openedx
to pypi
Older changes
- 2019-01-27 [Bugfix] Fix video transcript/srt upload and download of user-uploaded files. Thanks @dannielariola!
- 2019-01-20 [Improvement] Make it easy to load custom settings for the local production install
- 2019-01-19 [Improvement] Upgrade to Ironwood
- 2019-01-16 [Improvement] Switch license from MIT to AGPL
- 2019-01-04 [Bugfix] Fix xqueue consumer command
- 2018-12-26 [Improvement] Upgrade nodejs to 5.5.1
- 2018-12-07 [Improvement] Bundle theme and production static assets in the openedx docker image
- 2018-12-02 [Feature] Download extra locales from openedx-i18n to the Open edX Docker image
- 2018-11-28 [Feature] Easily change openedx docker image
- 2018-11-28 [Feature] Enable comprehensive theming!
- 2018-11-28 [Improvement] Get rid of datadog
- 2018-11-28 [Improvement] Upgrade docker images to ubuntu 18.04 for android, forum, notes, xqueue
- 2018-11-28 [Feature] Make it possible to define default platform language interactively
- 2018-11-26 [Improvement] Make it easier to run a forked version of edx-platform
- 2018-11-25 [Feature] Use local filesystem for open assessment file upload
- 2018-11-23 [Improvement] Faster container bootstrapping without "chmod", as suggested by @silviot
- 2018-11-20 [Bugfix] Fix cross-platform theme assets generation
- 2018-11-17 [Improvement] Custom nginx port mapping. ⚔️ @frob @frohro
- 2018-11-17 [Improvement] Add "make restart-openedx" command. 👍 @frob
- 2018-11-13 [Improvement] Facilitate install of extra XBlocks. Thanks @frob!
- 2018-10-30 [Bugfix] Fix rabbitmq restart policy
- 2018-10-03 [Improvement/Bugfix] Fix and accelerate Android application build
- 2018-10-02 [Improvement] Bump Open edX version to hawthorn.2
- 2018-09-30 [Bugfix] Fix CMS celery worker, including export tasks
- 2018-09-30 [Improvement] Simplify boolean feature flags definition
- 2018-09-29 [Improvement] Add logging commands
- 2018-09-29 [Improvement] Add self-documented help with "make help"
- 2018-09-29 [Feature] Add Portainer as an optional web UI to administer docker containers
- 2018-09-15 [Feature] Add student notes as an optional feature
- 2018-09-15 [Feature] Add templates to configurator container, which can now be run separately
- 2018-09-15 [Improvement] Rename "up" and "daemon" commands to "run" and "daemonize"
- 2018-09-15 [Feature] Activate course search and discovery
- 2018-09-15 [Bugfix] Deduplicate console logs from lms/cms
- 2018-09-05 [Improvement] Use a single email address for all inbound email
- 2018-09-04 [Bugfix] Get make commands to work with 'sudo'
- 2018-09-02 [Bugfix] Get HTTPS to work for CMS. Thanks @flytreeleft!
- 2018-08-28 [Bugfix] Fix certbot image updating
- 2018-08-27 [Improvement] Add development requirements to openedx image
- 2018-08-27 [Bugfix] Upgrade mongodb
- 2018-08-19 [Improvement] Make Xqueue an optional feature
- 2018-08-16 [Feature] Add HTTPS support