This is an automated email from the ASF dual-hosted git repository.
rahulvats pushed a change to branch backport-530f6d0-v3-2-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
from 059808a289e Merge branch 'v3-2-test' into backport-530f6d0-v3-2-test
add c42c74df92f [v3-2-test] UI: Block polling requests to endpoints that
returned 403 Forbidden (#64333) (#64492)
add 9c459e81cd5 [v3-2-test] Fix conf.has_option not respects default
provider metadata (#64209) (#64469)
add 25fe8181b07 [v3-2-test] Fix e2e tests failing on release branches due
to docker compose pull (#64500) (#64502)
add bba81b7941b Merge branch 'v3-2-test' into backport-530f6d0-v3-2-test
No new revisions were added by this update.
Summary of changes:
.../provider_config_fallback_defaults.cfg | 2 +-
airflow-core/src/airflow/configuration.py | 40 +--
airflow-core/src/airflow/providers_manager.py | 16 +-
airflow-core/src/airflow/ui/src/main.tsx | 27 ++
.../tests/unit/always/test_providers_manager.py | 6 +
airflow-core/tests/unit/core/test_configuration.py | 204 ++++++++++++---
.../tests/airflow_e2e_tests/conftest.py | 4 +-
devel-common/src/tests_common/test_utils/config.py | 73 ++++++
.../run_check_default_configuration.py | 33 ++-
.../src/airflow_shared/configuration/parser.py | 281 +++++++++++++--------
.../tests/configuration/test_parser.py | 163 ++++++++----
.../providers_discovery/providers_discovery.py | 4 +-
task-sdk/src/airflow/sdk/configuration.py | 8 +-
.../src/airflow/sdk/providers_manager_runtime.py | 16 +-
task-sdk/tests/task_sdk/test_configuration.py | 158 ++++++++++++
.../task_sdk/test_providers_manager_runtime.py | 10 +-
16 files changed, 803 insertions(+), 242 deletions(-)
create mode 100644 task-sdk/tests/task_sdk/test_configuration.py