diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d0a4c3..c06895e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,17 @@ instructions, because git commits are used to generate release notes: + +## v15.1.0 (2022-12-13) + +- [Improvement] Upgrade ipdb and ipython packages in the openedx development image. (by @regisb) +- [Improvement] Skip unnecessary image building in development. This should make `tutor dev launch` slightly faster. (by @regisb) +- [Bugfix] Fix Authn MFE login in development by disabling enterprise integration. (by @regisb) +- [Bugfix] Fix "Invalid value for ‘--from’" when running `tutor local upgrade --from=nutmeg`. If you are facing this error, just run `tutor local launch` and your platform should be automatically upgraded. +- [Bugfix] Fix "TypeError: Parameters to Generic[...] must all be type variables" error. This error may occur when upgrading from a very old installation of Tutor. It is due to an old version of the typing-extensions package. +- 💥[Deprecation] Get rid of the `quickstart` command. v15.0.0 introduced a deprecation warning, but we actually want users to stop using this command. Instead, use `launch` (by @regisb). +- [Improvement] Backfill persistent grades during upgrade from Nutmeg. If you observe missing grades after the upgrade from Nutmeg, run `tutor local upgrade --from=nutmeg`. (by @regisb) + ## v15.0.0 (2022-12-06) diff --git a/changelog.d/20221212_232925_regis_upgrade_from_nutmeg.md b/changelog.d/20221212_232925_regis_upgrade_from_nutmeg.md deleted file mode 100644 index a5e7884..0000000 --- a/changelog.d/20221212_232925_regis_upgrade_from_nutmeg.md +++ /dev/null @@ -1 +0,0 @@ -- [Bugfix] Fix "Invalid value for ‘--from’" when running `tutor local upgrade --from=nutmeg`. If you are facing this error, just run `tutor local launch` and your platform should be automatically upgraded. diff --git a/changelog.d/20221212_235220_regis_fix_parameters_to_generic.md b/changelog.d/20221212_235220_regis_fix_parameters_to_generic.md deleted file mode 100644 index 6a031af..0000000 --- a/changelog.d/20221212_235220_regis_fix_parameters_to_generic.md +++ /dev/null @@ -1 +0,0 @@ -- [Bugfix] Fix "TypeError: Parameters to Generic[...] must all be type variables" error. This error may occur when upgrading from a very old installation of Tutor. It is due to an old version of the typing-extensions package. diff --git a/changelog.d/20221213_083234_regis_dev.md b/changelog.d/20221213_083234_regis_dev.md deleted file mode 100644 index f50661c..0000000 --- a/changelog.d/20221213_083234_regis_dev.md +++ /dev/null @@ -1 +0,0 @@ -- [Improvement] Upgrade ipdb and ipython packages in the openedx development image. (by @regisb) diff --git a/changelog.d/20221213_090356_regis_dev.md b/changelog.d/20221213_090356_regis_dev.md deleted file mode 100644 index 405611d..0000000 --- a/changelog.d/20221213_090356_regis_dev.md +++ /dev/null @@ -1 +0,0 @@ -- [Improvement] Skip unnecessary image building in development. This should make `tutor dev launch` slightly faster. (by @regisb) diff --git a/changelog.d/20221213_102202_regis_dev.md b/changelog.d/20221213_102202_regis_dev.md deleted file mode 100644 index 885880e..0000000 --- a/changelog.d/20221213_102202_regis_dev.md +++ /dev/null @@ -1 +0,0 @@ -- [Bugfix] Fix Authn MFE login in development by disabling enterprise integration. (by @regisb) diff --git a/changelog.d/20221213_131305_regis_no_quickstart.md b/changelog.d/20221213_131305_regis_no_quickstart.md deleted file mode 100644 index 4996dc6..0000000 --- a/changelog.d/20221213_131305_regis_no_quickstart.md +++ /dev/null @@ -1 +0,0 @@ -- 💥[Deprecation] Get rid of the `quickstart` command. v15.0.0 introduced a deprecation warning, but we actually want users to stop using this command. Instead, use `launch` (by @regisb). diff --git a/changelog.d/20221213_163837_regis_backfill_persistent_grades.md b/changelog.d/20221213_163837_regis_backfill_persistent_grades.md deleted file mode 100644 index b15dcdd..0000000 --- a/changelog.d/20221213_163837_regis_backfill_persistent_grades.md +++ /dev/null @@ -1 +0,0 @@ -- [Improvement] Backfill persistent grades during upgrade from Nutmeg. If you observe missing grades after the upgrade from Nutmeg, run `tutor local upgrade --from=nutmeg`. (by @regisb) diff --git a/tutor/__about__.py b/tutor/__about__.py index e7c1701..14c03be 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.0.0" +__version__ = "15.1.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