Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v18.1.4 release #1147

Merged
merged 1 commit into from
Oct 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,23 @@ instructions, because git commits are used to generate release notes:

<!-- 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>
## v18.1.3 (2024-08-13)

Expand Down
1 change: 0 additions & 1 deletion changelog.d/20240624_105125_kyle_test_mongo_host.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/20240629_120748_codewithemad_cleanup_flag.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/20240816_141531_regis_patches_show.md

This file was deleted.

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/20241001_123236_regis_celery.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/20241023_155157_codewithemad_long_domain.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/20241024_111339_dawoud.sheraz_redwood_3.md

This file was deleted.

2 changes: 1 addition & 1 deletion tutor/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Increment this version number to trigger a new release. See
# 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
# dash. Use this suffix to differentiate between the actual released version and
Expand Down
Loading