diff --git a/CHANGELOG.md b/CHANGELOG.md index 73840d4..fc52fec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,19 @@ instructions, because git commits are used to generate release notes: + +## v14.2.2 (2022-11-29) + +- [Bugfix] Fix `jinja2.exceptions.TemplateSyntaxError: expected token 'end of statement block', got '|'` error by bumping the minimum required version of the Jinja2 package. + +- [Feature] Add support for MongoDB SSL, authentication source, mechanism and replica set via the `MONGODB_USE_SSL`, `MONGODB_AUTH_MECHANISM`, `MONGODB_AUTH_SOURCE`, `MONGODB_REPLICA_SET` settings. (by @zakum1 and @regisb) + +- [Bugfix] Fix tag of "openedx" development Docker image. Previously, this Docker tag did not include the Tutor version. As a consequence, a different cached image could be used in some cases. For instance: when running `tutor dev run` commands. Now, the image tag is "openedx-dev:TUTOR_VERSION". + +- [Bugfix] Fix name of Swahili locale: it is "sw-ke" and not "sw" (by @regisb). + +- [Security] Apply drag-n-drop v2 xblock [security patch](https://discuss.openedx.org/t/upcoming-security-release-xblock-drag-and-drop-v2/8768/7). (by @regisb) + ## v14.2.1 (2022-11-24) diff --git a/changelog.d/20221128_091915_regis_fix_jinja_min_version.md b/changelog.d/20221128_091915_regis_fix_jinja_min_version.md deleted file mode 100644 index 28da15a..0000000 --- a/changelog.d/20221128_091915_regis_fix_jinja_min_version.md +++ /dev/null @@ -1 +0,0 @@ -- [Bugfix] Fix `jinja2.exceptions.TemplateSyntaxError: expected token 'end of statement block', got '|'` error by bumping the minimum required version of the Jinja2 package. diff --git a/changelog.d/20221128_100809_regis_mongodb_ssl.md b/changelog.d/20221128_100809_regis_mongodb_ssl.md deleted file mode 100644 index 07d4ffb..0000000 --- a/changelog.d/20221128_100809_regis_mongodb_ssl.md +++ /dev/null @@ -1 +0,0 @@ -- [Feature] Add support for MongoDB SSL, authentication source, mechanism and replica set via the `MONGODB_USE_SSL`, `MONGODB_AUTH_MECHANISM`, `MONGODB_AUTH_SOURCE`, `MONGODB_REPLICA_SET` settings. (by @zakum1 and @regisb) diff --git a/changelog.d/20221128_111113_regis_fix_docker_openedx_dev_version.md b/changelog.d/20221128_111113_regis_fix_docker_openedx_dev_version.md deleted file mode 100644 index 24fe5f1..0000000 --- a/changelog.d/20221128_111113_regis_fix_docker_openedx_dev_version.md +++ /dev/null @@ -1 +0,0 @@ -- [Bugfix] Fix tag of "openedx" development Docker image. Previously, this Docker tag did not include the Tutor version. As a consequence, a different cached image could be used in some cases. For instance: when running `tutor dev run` commands. Now, the image tag is "openedx-dev:TUTOR_VERSION". diff --git a/changelog.d/20221128_122211_regis.md b/changelog.d/20221128_122211_regis.md deleted file mode 100644 index e1f6a81..0000000 --- a/changelog.d/20221128_122211_regis.md +++ /dev/null @@ -1 +0,0 @@ -- [Bugfix] Fix name of Swahili locale: it is "sw-ke" and not "sw" (by @regisb). diff --git a/changelog.d/20221129_083631_regis_sec_drag_n_drop.md b/changelog.d/20221129_083631_regis_sec_drag_n_drop.md deleted file mode 100644 index 66459a1..0000000 --- a/changelog.d/20221129_083631_regis_sec_drag_n_drop.md +++ /dev/null @@ -1 +0,0 @@ -- [Security] Apply drag-n-drop v2 xblock [security patch](https://discuss.openedx.org/t/upcoming-security-release-xblock-drag-and-drop-v2/8768/7). (by @regisb) diff --git a/tutor/__about__.py b/tutor/__about__.py index 6a6c4e3..a4db0d5 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__ = "14.2.1" +__version__ = "14.2.2" # 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