Releases: overhangio/tutor
v3.3.10
Tutor can be installed simply by downloading the compiled binaries:
sudo curl -L "https://github.com/regisb/tutor/releases/download/v3.3.10/tutor-$(uname -s)_$(uname -m)" -o /usr/local/bin/tutor
sudo chmod +x /usr/local/bin/tutor
See the install docs for more install options and instructions.
Features
- [Bugfix] Fix boolean configuration choices
v3.3.9
Tutor can be installed simply by downloading the compiled binaries:
sudo curl -L "https://github.com/regisb/tutor/releases/download/v3.3.9/tutor-$(uname -s)_$(uname -m)" -o /usr/local/bin/tutor
sudo chmod +x /usr/local/bin/tutor
See the install docs for more install options and instructions.
Features
- [Improvement] Add
local exec
command for running commands inside
existing containers - [Bugfix] Fix triple display of courses in LMS search (upstream patch,
v3.3.8
Tutor can be installed simply by downloading the compiled binaries:
sudo curl -L "https://github.com/regisb/tutor/releases/download/v3.3.8/tutor-$(uname -s)_$(uname -m)" -o /usr/local/bin/tutor
sudo chmod +x /usr/local/bin/tutor
See the install docs for more install options and instructions.
Features
- [Bugfix] Reduce the number of gunicorn workers to address RAM usage (#207)
v3.3.7
Tutor can be installed simply by downloading the compiled binaries:
sudo curl -L "https://github.com/regisb/tutor/releases/download/v3.3.7/tutor-$(uname -s)_$(uname -m)" -o /usr/local/bin/tutor
sudo chmod +x /usr/local/bin/tutor
See the install docs for more install options and instructions.
Features
- [Bugfix] Fix "Timeout after 20s" on running migrations
v3.3.6
Tutor can be installed simply by downloading the compiled binaries:
sudo curl -L "https://github.com/regisb/tutor/releases/download/v3.3.6/tutor-$(uname -s)_$(uname -m)" -o /usr/local/bin/tutor
sudo chmod +x /usr/local/bin/tutor
See the install docs for more install options and instructions.
Features
- [Bugfix] Fix KeyError on first quickstart
- [Improvement] De-duplication of prod/dev settings. Thanks @silviot! 😺
v3.3.5
Tutor can be installed simply by downloading the compiled binaries:
sudo curl -L "https://github.com/regisb/tutor/releases/download/v3.3.5/tutor-$(uname -s)_$(uname -m)" -o /usr/local/bin/tutor
sudo chmod +x /usr/local/bin/tutor
See the install docs for more install options and instructions.
Features
- [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
v3.3.4 (2019-04-09)
- [Improvement] Rename `--silent` option to `-y/--yes` - [Bugfix] Fix (again) login from studio when https is activated (#193)
v3.3.3
v3.3.2
Fix login from localhost Login from localhost/studio.localhost was broken on Ironwood because the session cookie was configured to be stored under the production domain name. We fix this by setting the SESSION_COOKIE_DOMAIN to None: in the edx-platform code, this corresponds to using the current request domain.