This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
from 57146f09588 more explicit secrets path error messages (#55015) (#59224)
add e7efeedccb6 add static checker for preventing to increase dag version
(#59430)
No new revisions were added by this update.
Summary of changes:
.../core_api/openapi/v2-rest-api-generated.yaml | 1 +
.../src/airflow/config_templates/config.yml | 16 +
.../src/airflow/dag_processing/collection.py | 10 +-
airflow-core/src/airflow/dag_processing/manager.py | 5 +-
.../src/airflow/dag_processing/processor.py | 18 +-
airflow-core/src/airflow/models/dagwarning.py | 1 +
.../airflow/ui/openapi-gen/requests/schemas.gen.ts | 2 +-
.../airflow/ui/openapi-gen/requests/types.gen.ts | 2 +-
.../airflow/utils/dag_version_inflation_checker.py | 529 +++++++++++++++
.../core_api/routes/public/test_dag_warning.py | 5 +-
.../tests/unit/dag_processing/test_processor.py | 35 +
.../unit/dags/test_dag_version_inflation_check.py | 97 +++
.../utils/test_dag_version_inflation_checker.py | 735 +++++++++++++++++++++
.../src/airflowctl/api/datamodels/generated.py | 1 +
14 files changed, 1448 insertions(+), 9 deletions(-)
create mode 100644
airflow-core/src/airflow/utils/dag_version_inflation_checker.py
create mode 100644
airflow-core/tests/unit/dags/test_dag_version_inflation_check.py
create mode 100644
airflow-core/tests/unit/utils/test_dag_version_inflation_checker.py