6
0
mirror of https://github.com/ChristianLight/tutor.git synced 2025-01-09 08:30:18 +00:00

feat: v18.1.4 (#1147)

This commit is contained in:
Syed Muhammad Dawoud Sheraz Ali 2024-10-24 16:11:21 +05:00 committed by GitHub
parent 0dbb12c820
commit 7d93cc3b3c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
9 changed files with 18 additions and 8 deletions

View File

@ -20,6 +20,23 @@ instructions, because git commits are used to generate release notes:
<!-- scriv-insert-here --> <!-- scriv-insert-here -->
<a id='changelog-18.1.4'></a>
## v18.1.4 (2024-10-24)
- [Improvement] Set `EDXAPP_TEST_MONGO_HOST` env var in the openedx-dev image so that it no longer needs to be set by hand when running edx-platform unit tests (by @kdmccormick).
- [Feature] Added `-c` or `--clean` option to tutor config save: For plugin developers and advanced users, this option cleans the `env/` folder before saving, ensuring a fresh environment for testing and development. (by @CodeWithEmad)
- [Feature] Add a `patches show my-patch-name`. This is a convenient command for the troubleshooting of plugins. (by @regisb)
- [Improvement] Fixes an issue which caused 502 errors by a premature closed connection by uwsgi, it also improves the handling of SIGTERM in docker and other uwsgi improvements (by @Ian2012).
- [Improvement] Do not run useless celery workers (lms-worker, cms-worker) in development. This should save us ~700MB memory. (by @arbrandes, @regisb).
- [Bugfix] Fixed an issue where the site name was not limited to 50 characters when creating a new site configuration. (by @CodeWithEmad)
- [Feature] Update Open edX version to redwood.3 (by @dawoudsheraz)
<a id='changelog-18.1.3'></a> <a id='changelog-18.1.3'></a>
## v18.1.3 (2024-08-13) ## v18.1.3 (2024-08-13)

View File

@ -1 +0,0 @@
[Improvement] Set `EDXAPP_TEST_MONGO_HOST` env var in the openedx-dev image so that it no longer needs to be set by hand when running edx-platform unit tests (by @kdmccormick).

View File

@ -1 +0,0 @@
- [Feature] Added `-c` or `--clean` option to tutor config save: For plugin developers and advanced users, this option cleans the `env/` folder before saving, ensuring a fresh environment for testing and development. (by @CodeWithEmad)

View File

@ -1 +0,0 @@
- [Feature] Add a `patches show my-patch-name`. This is a convenient command for the troubleshooting of plugins. (by @regisb)

View File

@ -1 +0,0 @@
[Improvement] Fixes an issue which caused 502 errors by a premature closed connection by uwsgi, it also improves the handling of SIGTERM in docker and other uwsgi improvements (by @Ian2012).

View File

@ -1 +0,0 @@
- [Improvement] Do not run useless celery workers (lms-worker, cms-worker) in development. This should save us ~700MB memory. (by @arbrandes, @regisb).

View File

@ -1 +0,0 @@
- [Bugfix] Fixed an issue where the site name was not limited to 50 characters when creating a new site configuration. (by @CodeWithEmad)

View File

@ -1 +0,0 @@
- [Feature] Update Open edX version to redwood.3 (by @dawoudsheraz)

View File

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