7
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-06-14 11:32:20 +00:00

Merge remote-tracking branch 'origin/master' into nightly

This commit is contained in:
Overhang.IO 2022-03-15 13:22:24 +00:00
commit e991e841dc
4 changed files with 6 additions and 3 deletions

View File

@ -4,6 +4,9 @@ Note: Breaking changes between versions are indicated by "💥".
## Unreleased
## v13.1.6 (2022-03-15)
- [Bugfix] Fix `local/k8s quickstart` commands when upgrading from an older release (#595).
- [Bugfix] Fix running the default exim-relay SMTP server on arm64 (#600).
- [Feature] Add `tutor k8s apply` comand, which is a direct interface with `kubectl apply`.
- [Feature] Add `openedx-dockerfile-minimal` patch, which you can use to install custom packages and run commands as root in the Docker image.

View File

@ -2,7 +2,7 @@ import os
# Increment this version number to trigger a new release. See
# docs/tutor.html#versioning for information on the versioning scheme.
__version__ = "13.1.5"
__version__ = "13.1.6"
# The version suffix will be appended to the actual version, separated by a
# dash. Use this suffix to differentiate between the actual released version and

View File

@ -160,7 +160,7 @@ def quickstart(context: click.Context, non_interactive: bool) -> None:
click.echo(fmt.title("Upgrading from an older release"))
context.invoke(
upgrade,
from_version=tutor_env.get_env_release(context.obj.root),
from_release=tutor_env.get_env_release(context.obj.root),
)
click.echo(fmt.title("Interactive platform configuration"))

View File

@ -79,7 +79,7 @@ Are you sure you want to continue?"""
)
context.invoke(
upgrade,
from_version=run_upgrade_from_release,
from_release=run_upgrade_from_release,
non_interactive=non_interactive,
)