This is an automated email from the ASF dual-hosted git repository.
jhtimmins pushed a change to branch v2-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git.
discard 3833fb7 Better diagnostics and self-healing of docker-compose (#17484)
discard 0948366 Install providers from sources in prod image only on main
(#17458)
discard 8bd1a7d Attempt to reduce flakiness of PythonVirtualeEnv
test_airflow_context (#17486)
discard 562be8c Disable Helm tests when branch is not main
discard 2ba71c9 Fixes some static check errors (#17432)
discard 8fc7697 Switches to "/" convention in ghcr.io images (#17356)
discard f196690 Fix failing static checks in main (#17424)
discard 2df7e6e Improve diagnostics message when users have secret_key
misconfigured (#17410)
discard 7371f98 Add timeout when asking whether to rebuild image (#17412)
discard 106d9f0 Optimizes structure of the Dockerfiles and use latest tools
(#17418)
discard 8609c82 Improve image building documentation for new users (#17409)
discard 38c7115 Increases timeout for helm chart builds (#17417)
discard 70794b0 Do not pull CI image for ownership fixing on first, fresh
breeze run (#17419)
discard 7a43960 Enhancement to bash scripts (#17098)
discard 3c0f4d9 Updates to FlaskAppBuilder 3.3.2+ (#17208)
discard 37c935d Update alias for field_mask in Google Memmcache (#16975)
discard 42334b0 AIRFLOW-5529 Add Apache Drill provider. (#16884)
discard 867adda bump dnspython (#16698)
discard dfeb73d Add type annotations to setup.py (#16658)
discard fe5920e Bump Jinja2 upper-bound from 2.12.0 to 4.0.0 (#16595)
discard 68977b9 Remove SQLAlchemy <1.4 constraint (#16630)
discard ab3634a Switch back http provider after requests removes LGPL
dependency (#16974)
new 3d2a5cf Switches to "/" convention in ghcr.io images with
optimisations
new 88e6305 Switch back http provider after requests removes LGPL
dependency (#16974)
new e8058eb Remove SQLAlchemy <1.4 constraint (#16630)
new c967d29 Bump Jinja2 upper-bound from 2.12.0 to 4.0.0 (#16595)
new f3b74d8 Add type annotations to setup.py (#16658)
new ab46af9 bump dnspython (#16698)
new 4aef457 AIRFLOW-5529 Add Apache Drill provider. (#16884)
new f14860d Update alias for field_mask in Google Memmcache (#16975)
new ac832a2 Updates to FlaskAppBuilder 3.3.2+ (#17208)
new 673d78a fix(smart_sensor): Unbound variable errors (#14774)
new 012321b Fail tasks in scheduler when executor reports they failed
(#15929)
new 8e8b58a Fix CLI 'kubernetes cleanup-pods' which fails on invalid
label key (#17298)
new b558205 Fix calculating duration in tree view (#16695)
new 4678cf54 Validate type of `priority_weight` during parsing (#16765)
new cf64187 Add back missing permissions to UserModelView controls.
(#17431)
new eaa21db Add missing permissions to varimport (#17468)
new 40f4388 Improve diagnostics message when users have secret_key
misconfigured (#17410)
new 798237a Handle and log exceptions raised during task callback (#17347)
new ed76d11 Show serialization exceptions in DAG parsing log (#17277)
new 4a4959f Fix running tasks with default_impersonation config (#17229)
new 24e75e7 Do not seek error file when it is closed (#17187)
new 1b4af0b Fix: ``TaskInstance`` does not show ``queued_by_job_id`` &
``external_executor_id`` (#17179)
new aaa9a4b Adds more explanatory message when SecretsMasker is not
configured (#17101)
new 66897eb #16976 Add json.dumps() for templated fields objects: 'dict'
and 'list' (#17082)
new 120cbb9 Core: Enable the use of __init_subclass__ in subclasses of
BaseOperator (#17027)
new 3beb37e Fix UPDATING.md (#16933)
new 36f0ecb Fixed task instance retrieval in XCom view (#16923)
new 77ce4a2 Fix minor typo in configuration.py (#16832)
new 3750e5e Don't check execution_date in refresh_from_db (#16809)
new 60938f0 fix: instance name env var (#16749)
new 479a34d Fix unchecked indexing in _build_metrics (#16744)
new 12c46c9 BugFix: Correctly handle custom `deps` and `task_group`
during DAG Serialization (#16734)
new 55a4645 Fix slow (cleared) tasks being be adopted by Celery worker.
(#16718)
new 7288621 Set Process title for Worker when using ``LocalExecutor``
(#16623)
new 88fd2db Fix ``AttributeError``: ``datetime.timezone`` object has no
attribute ``name`` (#16599)
new 4d2db2e Redact conn secrets in webserver logs (#16579)
new f479eff fix: change graph focus to top of view instead of center
(#16484)
new 67b4ff0 commiting dagPickle session when the airflow tasks run
--ship-dag --interactive command is executed FIXES: 15748 (#15890)
new 0bd9558 Proper warning message when recorded PID is different from
current PID (#17411)
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 (3833fb7)
\
N -- N -- N refs/heads/v2-1-test (0bd9558)
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.
The 39 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.dockerignore | 4 +-
.github/workflows/build-images.yml | 7 +-
.github/workflows/ci.yml | 16 +-
BREEZE.rst | 6 +
Dockerfile.ci | 4 +-
README.md | 123 ++++++-------
UPDATING.md | 4 +-
airflow/cli/commands/kubernetes_command.py | 12 +-
airflow/cli/commands/task_command.py | 6 +-
airflow/configuration.py | 2 +-
airflow/executors/local_executor.py | 4 +
airflow/hooks/base.py | 5 +-
airflow/jobs/local_task_job.py | 16 +-
airflow/jobs/scheduler_job.py | 6 +-
airflow/models/baseoperator.py | 11 +-
airflow/models/dag.py | 4 +-
airflow/models/dagbag.py | 1 +
airflow/models/dagrun.py | 29 +--
airflow/models/taskinstance.py | 21 ++-
airflow/sensors/smart_sensor.py | 1 +
airflow/serialization/serialized_objects.py | 16 +-
airflow/utils/cli.py | 3 +-
airflow/utils/log/file_task_handler.py | 13 +-
airflow/utils/log/secrets_masker.py | 7 +-
airflow/www/static/js/graph.js | 4 +-
airflow/www/static/js/tree.js | 6 +-
airflow/www/views.py | 151 +++++++++-------
breeze | 3 +
confirm | 6 +-
docs/apache-airflow-providers/index.rst | 5 -
.../howto/customize-dag-ui-page-instance-name.rst | 2 +-
docs/apache-airflow/start/docker-compose.yaml | 63 +------
docs/apache-airflow/start/docker.rst | 31 +---
docs/docker-stack/build.rst | 13 --
.../extending/add-apt-packages/Dockerfile | 2 +-
.../add-build-essential-extend/Dockerfile | 2 +-
.../extending/add-providers/Dockerfile | 20 ---
.../extending/add-pypi-packages/Dockerfile | 2 +-
.../extending/embedding-dags/Dockerfile | 2 +-
.../extending/writable-directory/Dockerfile | 2 +-
scripts/ci/images/ci_prepare_ci_image_on_ci.sh | 2 +-
scripts/ci/images/ci_prepare_prod_image_on_ci.sh | 2 +-
.../ci/images/ci_wait_for_and_verify_ci_image.sh | 6 +-
.../ci/images/ci_wait_for_and_verify_prod_image.sh | 6 +-
scripts/ci/libraries/_build_images.sh | 19 +-
scripts/ci/libraries/_push_pull_remove_images.sh | 2 +-
scripts/in_container/entrypoint_ci.sh | 2 -
.../prod/airflow_scheduler_autorestart.sh | 8 +-
tests/cli/commands/test_kubernetes_command.py | 8 +-
tests/executors/test_celery_executor.py | 2 +
tests/jobs/test_local_task_job.py | 42 +++++
tests/jobs/test_scheduler_job.py | 16 +-
tests/models/test_baseoperator.py | 31 ++++
tests/models/test_cleartasks.py | 24 +++
tests/models/test_dag.py | 40 +++++
tests/models/test_dagbag.py | 4 +-
tests/models/test_taskinstance.py | 106 +++++++++++
tests/operators/test_python.py | 3 -
tests/serialization/test_dag_serialization.py | 101 +++++++++++
tests/www/views/test_views_custom_user_views.py | 199 +++++++++++++++++++++
tests/www/views/test_views_variable.py | 13 ++
61 files changed, 860 insertions(+), 411 deletions(-)
delete mode 100644
docs/docker-stack/docker-examples/extending/add-providers/Dockerfile
create mode 100644 tests/www/views/test_views_custom_user_views.py