Skip to content

v14.2.0 (2022-11-21)

Compare
Choose a tag to compare
@github-actions github-actions released this 21 Nov 10:24
· 767 commits to release since this release

Install this version from pip with:

pip install "tutor[full]==v14.2.0"

Or download the compiled binaries:

sudo curl -L "https://github.com/overhangio/tutor/releases/download/v14.2.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] Auto-complete implicit local/dev --mount /path/to/... options. (by @regisb)
  • 💥[Feature] Strong typing of action and filter hooks: this allows us to detect incorrect calls to actions.add or filters.add early. Strong typing forces us to break the do and apply API by removing the context named argument. Developers should replace do(context=...) by do_from_context(..., ) (and similar for apply).