This is an automated email from the ASF dual-hosted git repository.
eladkal pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new cd6bf07cec3 Fixing changelog categorisation when min airflow bump is
used (#49930)
cd6bf07cec3 is described below
commit cd6bf07cec3f5c0fc6183c1ff0a0033b644e9665
Author: Amogh Desai <[email protected]>
AuthorDate: Tue Apr 29 20:09:52 2025 +0530
Fixing changelog categorisation when min airflow bump is used (#49930)
---
.../src/airflow_breeze/prepare_providers/provider_documentation.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/dev/breeze/src/airflow_breeze/prepare_providers/provider_documentation.py
b/dev/breeze/src/airflow_breeze/prepare_providers/provider_documentation.py
index 147c7b654af..2c96e2118bf 100644
--- a/dev/breeze/src/airflow_breeze/prepare_providers/provider_documentation.py
+++ b/dev/breeze/src/airflow_breeze/prepare_providers/provider_documentation.py
@@ -948,7 +948,7 @@ def _get_changes_classified(
if type_of_change == TypeOfChange.BUGFIX:
classified_changes.fixes.append(change)
- elif type_of_change == TypeOfChange.MISC:
+ elif type_of_change == TypeOfChange.MISC or type_of_change ==
TypeOfChange.MIN_AIRFLOW_VERSION_BUMP:
classified_changes.misc.append(change)
elif type_of_change == TypeOfChange.FEATURE and
maybe_with_new_features:
classified_changes.features.append(change)