From 3bffdd5ab80d85c238c8f33cf83eee3e1a713863 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Fri, 10 Jan 2025 12:46:59 +0100 Subject: [PATCH] v19.0.1 --- CHANGELOG.md | 9 ++++++++- ...0102_143119_danyal.faheem_fix_meilisearch_init_job.md | 1 - changelog.d/20250108_094231_regis_sumac_warnings.md | 1 - changelog.d/20250109_184104_regis_plugin_unload.md | 1 - tutor/__about__.py | 2 +- 5 files changed, 9 insertions(+), 5 deletions(-) delete mode 100644 changelog.d/20250102_143119_danyal.faheem_fix_meilisearch_init_job.md delete mode 100644 changelog.d/20250108_094231_regis_sumac_warnings.md delete mode 100644 changelog.d/20250109_184104_regis_plugin_unload.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 3bd4b06c15..0cb0908a10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,10 +20,17 @@ instructions, because git commits are used to generate release notes: + +## v19.0.1 (2025-01-10) + +- [Bugfix] Add meilisearch as a dependency on lms-job to avoid meilisearch init job crashing when the platform is stopped. (by @Danyal-Faheem) +- [Improvement] Silence "imghdr" warning in edx-platform. (by @regisb) +- [Bugfix] Properly reload a plugin module on enable/disable/enable. This is an edge case that should not have affected anyone. (by @regisb) + ## v19.0.0 (2024-12-11) -- 💥[Feature] Upgrade default charset and collation of mysql to utf8mb4 and utf8mb4_unicode_ci respectively (by @Danyal-Faheem) +- 💥[Feature] Upgrade default charset and collation of mysql to utf8mb4 and `utf8mb4_unicode_ci` respectively (by @Danyal-Faheem) - Add do command to upgrade the charset and collation of tables in mysql. - The command will perform the following upgrades: - Upgrade all `utf8mb3` charset to `utf8mb4` diff --git a/changelog.d/20250102_143119_danyal.faheem_fix_meilisearch_init_job.md b/changelog.d/20250102_143119_danyal.faheem_fix_meilisearch_init_job.md deleted file mode 100644 index 7d7f827dca..0000000000 --- a/changelog.d/20250102_143119_danyal.faheem_fix_meilisearch_init_job.md +++ /dev/null @@ -1 +0,0 @@ -- [Bugfix] Add meilisearch as a dependency on lms-job to avoid meilisearch init job crashing when the platform is stopped. (by @Danyal-Faheem) \ No newline at end of file diff --git a/changelog.d/20250108_094231_regis_sumac_warnings.md b/changelog.d/20250108_094231_regis_sumac_warnings.md deleted file mode 100644 index 8c34418d88..0000000000 --- a/changelog.d/20250108_094231_regis_sumac_warnings.md +++ /dev/null @@ -1 +0,0 @@ -- [Improvement] Silence "imghdr" warning in edx-platform. (by @regisb) diff --git a/changelog.d/20250109_184104_regis_plugin_unload.md b/changelog.d/20250109_184104_regis_plugin_unload.md deleted file mode 100644 index 390bf434bb..0000000000 --- a/changelog.d/20250109_184104_regis_plugin_unload.md +++ /dev/null @@ -1 +0,0 @@ -- [Bugfix] Properly reload a plugin module on enable/disable/enable. This is an edge case that should not have affected anyone. (by @regisb) diff --git a/tutor/__about__.py b/tutor/__about__.py index a56ced9cb8..1b2a58ac71 100644 --- a/tutor/__about__.py +++ b/tutor/__about__.py @@ -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__ = "19.0.0" +__version__ = "19.0.1" # 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