This is an automated email from the ASF dual-hosted git repository.
Lee-W pushed a change to branch ci-upgrade-main
in repository https://gitbox.apache.org/repos/asf/airflow.git
omit 5da745fbbc8 Keep CI environment upgrade scoped to tooling, not
provider libraries
omit 569b02e65ba [main] CI: Upgrade important CI environment
add 4772f9373e7 Make PostgreSQL SQLAlchemy driver explicit
(postgresql+psycopg2://) (#68314)
add 52cd4e52df5 Add bundle_name to serialized dag (#68583)
add d224b0446fb Rename assets list-by-alias to list-aliases in airflowctl
(#68522)
add 1bb880df42f Add team_name tags to Amazon executor metrics (#69072)
add 926a8c62c55 Fix Celery worker JSON logging config for teams (#69139)
add 29270789031 Fix the prerequisites release 3.2 (#69119)
add 83c93f13440 Fix missed rename of BaseStateBackend to BaseStoreBackend
(#69160)
add 81101f3e60f Add durable execution to DatabricksSubmitRunOperator
(#68974)
add 3ead1c8039f Parallelize per-dag auth checks in KeycloakAuthManager
(#69107)
add 4ee7bd9fcb4 Add team_name tag to Edge executor sync metric (#69005)
add 9fcb064c832 Change Clickhouse lifecycle to incubation (#69166)
add 1b6ff208d30 Test fix in main Celery worker tests leaking logging
handler onto captured stdout (#69163)
add c6a0b5da2b5 [main] CI: Upgrade important CI environment
add bf17d5d6432 Keep CI environment upgrade scoped to tooling, not
provider libraries
add 39c7f448f6a fix mypy error
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (5da745fbbc8)
\
N -- N -- N refs/heads/ci-upgrade-main (39c7f448f6a)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
airflow-core/docs/core-concepts/multi-team.rst | 8 +-
airflow-core/docs/howto/set-up-database.rst | 6 +-
airflow-core/docs/installation/prerequisites.rst | 4 +-
airflow-core/newsfragments/68314.improvement.rst | 1 +
.../src/airflow/config_templates/config.yml | 4 +-
airflow-core/src/airflow/configuration.py | 7 +-
airflow-core/src/airflow/dag_processing/dagbag.py | 4 +
airflow-core/src/airflow/models/serialized_dag.py | 1 +
.../src/airflow/serialization/definitions/dag.py | 2 +
airflow-core/src/airflow/serialization/schema.json | 1 +
airflow-core/tests/unit/core/test_configuration.py | 39 +++-
.../tests/unit/dag_processing/test_dagbag.py | 23 ++
airflow-core/tests/unit/models/test_base.py | 4 +-
.../tests/unit/models/test_serialized_dag.py | 24 +++
.../unit/serialization/test_dag_serialization.py | 16 ++
airflow-core/tests/unit/state/test_metastore.py | 2 +-
airflow-core/tests/unit/utils/test_db.py | 2 +-
airflow-ctl/docs/images/command_hashes.txt | 2 +-
airflow-ctl/docs/images/output_assets.svg | 128 +++++------
airflow-ctl/src/airflowctl/api/operations.py | 4 +-
airflow-ctl/src/airflowctl/ctl/help_texts.yaml | 2 +-
.../tests/airflow_ctl/api/test_operations.py | 4 +-
.../src/airflow_breeze/utils/custom_param_types.py | 4 +-
.../operators/postgres_local_executor.cfg | 2 +-
.../aws/executors/aws_lambda/lambda_executor.py | 10 +-
.../amazon/aws/executors/batch/batch_executor.py | 11 +-
.../amazon/aws/executors/ecs/ecs_executor.py | 10 +-
.../executors/aws_lambda/test_lambda_executor.py | 27 +++
.../aws/executors/batch/test_batch_executor.py | 25 +++
.../amazon/aws/executors/ecs/test_ecs_executor.py | 27 ++-
providers/celery/provider.yaml | 2 +-
.../airflow/providers/celery/cli/celery_command.py | 6 +-
.../airflow/providers/celery/get_provider_info.py | 2 +-
.../tests/unit/celery/cli/test_celery_command.py | 11 +
providers/clickhousedb/provider.yaml | 2 +-
providers/databricks/docs/operators/submit_run.rst | 39 ++++
.../providers/databricks/operators/databricks.py | 103 ++++++++-
.../unit/databricks/operators/test_databricks.py | 238 ++++++++++++++++++++-
.../providers/edge3/executors/edge_executor.py | 3 +-
.../unit/edge3/executors/test_edge_executor.py | 24 +++
.../keycloak/auth_manager/keycloak_auth_manager.py | 30 ++-
.../auth_manager/test_keycloak_auth_manager.py | 32 +++
.../ci/prek/check_airflowctl_command_coverage.py | 2 +-
task-sdk/src/airflow/sdk/definitions/dag.py | 2 +
task-sdk/tests/task_sdk/definitions/test_asset.py | 21 +-
task-sdk/tests/task_sdk/definitions/test_dag.py | 9 +
46 files changed, 788 insertions(+), 142 deletions(-)
create mode 100644 airflow-core/newsfragments/68314.improvement.rst