diff --git a/CHANGELOG.md b/CHANGELOG.md index 3307230fba..1863373499 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,15 @@ instructions, because git commits are used to generate release notes: + +## v17.0.5 (2024-05-22) + +- [Feature] Introduces the CONFIG_USER Filter. Used to declare unique key:value pairs in config.yml that will be overwritten when running tutor config save. Useful for injecting secrets from an external secrets manager into edx, or other values that may change over time that you need to programmatically fetch. (by @abonnell) + +- [Improvement] Add ability to patch proxy configuration for Caddy (by @ravikhetani) + +- [Security] Add Upstream "Privilege re-escalation in Studio after staff access removed" git security patch in Open edX Image(by @dawoudsheraz) + ## v17.0.4 (2024-04-09) diff --git a/changelog.d/20240319_140241_andrew.bonnell_add_config_user_filter.md b/changelog.d/20240319_140241_andrew.bonnell_add_config_user_filter.md deleted file mode 100644 index ae8a9d69ab..0000000000 --- a/changelog.d/20240319_140241_andrew.bonnell_add_config_user_filter.md +++ /dev/null @@ -1 +0,0 @@ -- [Feature] Introduces the CONFIG_USER Filter. Used to declare unique key:value pairs in config.yml that will be overwritten when running tutor config save. Useful for injecting secrets from an external secrets manager into edx, or other values that may change over time that you need to programmatically fetch. (by @abonnell) diff --git a/changelog.d/20240403_155328_r.khetani_improvement_patch_proxy_directive.md b/changelog.d/20240403_155328_r.khetani_improvement_patch_proxy_directive.md deleted file mode 100644 index b3c52c2e95..0000000000 --- a/changelog.d/20240403_155328_r.khetani_improvement_patch_proxy_directive.md +++ /dev/null @@ -1 +0,0 @@ -[Improvement] Add ability to patch proxy configuration for Caddy (by @ravikhetani) \ No newline at end of file diff --git a/changelog.d/20240521_115552_dawoud.sheraz_security_patch.md b/changelog.d/20240521_115552_dawoud.sheraz_security_patch.md deleted file mode 100644 index b0f6d8d8b1..0000000000 --- a/changelog.d/20240521_115552_dawoud.sheraz_security_patch.md +++ /dev/null @@ -1 +0,0 @@ -- [Security] Add Upstream "Privilege re-escalation in Studio after staff access removed" git security patch in Open edX Image(by @dawoudsheraz) \ No newline at end of file diff --git a/tutor/__about__.py b/tutor/__about__.py index 6b49e4e390..ffc877b59c 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__ = "17.0.4" +__version__ = "17.0.5" # 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