diff --git a/CHANGELOG.md b/CHANGELOG.md index c06895e..0fab387 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,15 @@ instructions, because git commits are used to generate release notes: + +## v15.2.0 (2023-01-19) + +- 💥[Bugfix] Fix "example.com" links in registration emails. This is a breaking change for platforms that have modified the "id" field of the LMS site object in the database. These platforms should set `SITE_ID=1` in the common settings via a plugin. (by @regisb) +- [Bugfix] Running `tutor k8s upgrade --from=maple` won't apply and won't wait for the MySQL deployment to be ready if `RUN_MYSQL: false` (When you host your MySQL somewhere else like RDS) (by @CodeWithEmad) +- [Bugfix] Fix HTML component editing in studio by cherry-picking [upstream fix](https://github.com/openedx/edx-platform/pull/31500). (by @regisb) +- [Improvement] Changes annotations from `typing` to use built-in generic types from `__future__.annotations` (by @Carlos-Muniz) +- [Improvement] Resolve `CORS_ORIGIN_WHITELIST` warnings that pollute the LMS and CMS logs. As far as we know they were not causing any issue, apart from being a nuisance. (by @regisb) + ## v15.1.0 (2022-12-13) diff --git a/changelog.d/20230106_163518_regis_fix_example_com_links.md b/changelog.d/20230106_163518_regis_fix_example_com_links.md deleted file mode 100644 index 3af3848..0000000 --- a/changelog.d/20230106_163518_regis_fix_example_com_links.md +++ /dev/null @@ -1 +0,0 @@ -- 💥[Bugfix] Fix "example.com" links in registration emails. This is a breaking change for platforms that have modified the "id" field of the LMS site object in the database. These platforms should set `SITE_ID=1` in the common settings via a plugin. (by @regisb) diff --git a/changelog.d/20230109_100009_codewithemad_upgrade_mysql_issue.md b/changelog.d/20230109_100009_codewithemad_upgrade_mysql_issue.md deleted file mode 100644 index 279deb9..0000000 --- a/changelog.d/20230109_100009_codewithemad_upgrade_mysql_issue.md +++ /dev/null @@ -1 +0,0 @@ -[Bugfix] Running `tutor k8s upgrade --from=maple` won't apply and won't wait for the MySQL deployment to be ready if `RUN_MYSQL: false` (When you host your MySQL somewhere else like RDS) (by @CodeWithEmad) \ No newline at end of file diff --git a/changelog.d/20230109_134927_regis_fix_tinymce_formatting.md b/changelog.d/20230109_134927_regis_fix_tinymce_formatting.md deleted file mode 100644 index 36854c8..0000000 --- a/changelog.d/20230109_134927_regis_fix_tinymce_formatting.md +++ /dev/null @@ -1 +0,0 @@ -- [Bugfix] Fix HTML component editing in studio by cherry-picking [upstream fix](https://github.com/openedx/edx-platform/pull/31500). (by @regisb) diff --git a/changelog.d/20230110_130740_cmuniz_built_in_generic_types.md b/changelog.d/20230110_130740_cmuniz_built_in_generic_types.md deleted file mode 100644 index 25b31a8..0000000 --- a/changelog.d/20230110_130740_cmuniz_built_in_generic_types.md +++ /dev/null @@ -1 +0,0 @@ -- [Improvement] Changes annotations from `typing` to use built-in generic types from `__future__.annotations` (by @Carlos-Muniz) diff --git a/changelog.d/20230117_165024_regis_cors_whitelist.md b/changelog.d/20230117_165024_regis_cors_whitelist.md deleted file mode 100644 index caea8ad..0000000 --- a/changelog.d/20230117_165024_regis_cors_whitelist.md +++ /dev/null @@ -1 +0,0 @@ -- [Improvement] Resolve `CORS_ORIGIN_WHITELIST` warnings that pollute the LMS and CMS logs. As far as we know they were not causing any issue, apart from being a nuisance. (by @regisb) diff --git a/tutor/__about__.py b/tutor/__about__.py index 14c03be..a88423a 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__ = "15.1.0" +__version__ = "15.2.0" # 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