Skip to content

v16.1.0

Compare
Choose a tag to compare
@github-actions github-actions released this 16 Aug 17:32
· 325 commits to master since this release

Install this version from pip with:

pip install "tutor[full]==16.1.0"

Or download the compiled binaries:

sudo curl -L "https://github.com/overhangio/tutor/releases/download/v16.1.0/tutor-$(uname -s)_$(uname -m)" -o /usr/local/bin/tutor
sudo chmod 0755 /usr/local/bin/tutor

See the installation docs for more installation options and instructions.

Changes

  • [Improvement] Improve support of legacy non-BuildKit mode: (by @regisb)
    • [Bugfix] Fix building of openedx Docker image.
    • [Improvement] Remove --cache-from build option.
    • [Improvement] Add a warning concerning the lack of support of the --build-context option.
  • 💥[Bugfix] Fix mysql crash after upgrade to Palm. After an upgrade to Palm, the mysql client run by Django defaults to a utf8mb4 character set and collation, but the mysql server still runs with utf8mb3. This causes broken data during migration from Olive to Palm, and more generally when data is written to the database. To resolve this issue, we explicitely set the utf8mb3 charset and collation in the client. Users who were running Palm might have to fix their data manually. In the future we will upgrade the mysql server to utf8mb4. (by @regisb)
  • [Improvement] We upgrade to MySQL 8.1.0 to avoid having to restart the server after the upgrade.
  • [Bugfix] Ask whether user wants to run locally during tutor local launch. (by @regisb)
  • [Bugfix] Fix a race condition that could prevent a newly provisioned Studio container from starting due to a FileExistsError when creating logs directory.