From 669f8363283c5351ff39007e06df42dd1c48b2c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Mon, 30 May 2022 14:32:18 +0200 Subject: [PATCH] v13.2.3 (2022-05-30) - [Fix] Truncate site display name to 50 characters with a warning, fixing data too long error for long site names. (by @navinkarkera) - [Feature] Add patch to allow overriding final openedx docker image CMD. - [Fix] Ignore Python plugins that cannot be loaded. (by @regisb) - [Improvement] Faster and more reliable builds with `npm clean-install` instead of `npm install`. (by @regisb. Thanks @ghassanmas!) - [Fix] Fix 500 error during studio login. (by @regisb) - [Fix] Fix updates for the Caddy deployment in multi-node Kubernetes clusters (#660). Previously, Caddy configuration updates might fail if the Kubernetes cluster had more than one worker node. (by @fghaas) --- CHANGELOG.md | 4 +++- tutor/__about__.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d300630..a4b4dbd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,8 +18,10 @@ Every user-facing change should have an entry in this changelog. Please respect ## Unreleased +## v13.2.3 (2022-05-30) + - [Fix] Truncate site display name to 50 characters with a warning, fixing data too long error for long site names. (by @navinkarkera) -- [Feature] Add patch to allow overriding final openedx docker image CMD +- [Feature] Add patch to allow overriding final openedx docker image CMD. - [Fix] Ignore Python plugins that cannot be loaded. (by @regisb) - [Improvement] Faster and more reliable builds with `npm clean-install` instead of `npm install`. (by @regisb. Thanks @ghassanmas!) - [Fix] Fix 500 error during studio login. (by @regisb) diff --git a/tutor/__about__.py b/tutor/__about__.py index d4d8c5a..36f9d66 100644 --- a/tutor/__about__.py +++ b/tutor/__about__.py @@ -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.2.2" +__version__ = "13.2.3" # 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