This is an automated email from the ASF dual-hosted git repository.

ephraimanierobi pushed a change to branch v2-7-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


    omit 2c43ca3ede Update RELEASE_NOTES.rst
     new a57cc8b0c0 Fix missing related PRs when cherry-picking (#33261)
     new 494edad3e9 Enable pools to consider deferred tasks (#32709)
     new e9c82d9319 wOrkaround failing dedlock when running backfill (#32991)
     new 4e817c46b4 Fix flaky sqlite tests with `test_xcom_map_nest` hopefully 
(#33145)
     new 4e00fe8ec0 Refactor: Simplify code in dag_processing (#33161)
     new 14ee535270 Gantt chart: Use earliest/oldest ti dates if different than 
dag run start/end (#33215)
     new b099803893 Remove add_task from TaskGroup (#33262)
     new 2ff8d4d613 Change type of defualts for include_deferred (#33271)
     new 803d0134ac Update RELEASE_NOTES.rst

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   (2c43ca3ede)
            \
             N -- N -- N   refs/heads/v2-7-test (803d0134ac)

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 9 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:
 RELEASE_NOTES.rst                                  |   3 +
 airflow/api/client/api_client.py                   |   3 +-
 airflow/api/client/json_client.py                  |   9 +-
 airflow/api/client/local_client.py                 |  10 +-
 airflow/api/common/experimental/pool.py            |   2 +-
 airflow/api_connexion/endpoints/pool_endpoint.py   |   4 +-
 airflow/api_connexion/openapi/v1.yaml              |  15 ++-
 airflow/api_connexion/schemas/pool_schema.py       |   8 ++
 airflow/cli/cli_config.py                          |  16 ++-
 airflow/cli/commands/pool_command.py               |  18 +++-
 airflow/dag_processing/manager.py                  |   8 +-
 airflow/dag_processing/processor.py                |  12 +--
 airflow/jobs/backfill_job_runner.py                | 117 ++++++++++++--------
 airflow/jobs/scheduler_job_runner.py               |   2 +
 ...8_2_7_0_add_include_deferred_column_to_pool.py} |  30 +++---
 airflow/models/abstractoperator.py                 |   8 --
 airflow/models/pool.py                             |  58 ++++++++--
 airflow/models/taskmixin.py                        |   5 -
 airflow/models/xcom_arg.py                         |  10 --
 airflow/ti_deps/deps/pool_slots_available_dep.py   |  11 +-
 airflow/utils/db.py                                |   1 +
 airflow/utils/edgemodifier.py                      |   9 --
 airflow/utils/task_group.py                        |  20 ----
 .../static/js/dag/details/gantt/GanttTooltip.tsx   |   3 +
 airflow/www/static/js/dag/details/gantt/Row.tsx    |  20 ++--
 airflow/www/static/js/dag/details/gantt/index.tsx  |  32 +++++-
 airflow/www/static/js/types/api-generated.ts       |  14 ++-
 airflow/www/views.py                               |  29 ++++-
 dev/airflow-github                                 |   2 +-
 .../logging-monitoring/metrics.rst                 |   1 +
 .../administration-and-deployment/pools.rst        |   2 +-
 .../authoring-and-scheduling/deferring.rst         |   2 +-
 docs/apache-airflow/img/airflow_erd.sha256         |   2 +-
 docs/apache-airflow/img/airflow_erd.svg            |  86 ++++++++-------
 docs/apache-airflow/migrations-ref.rst             |   4 +-
 .../api_connexion/endpoints/test_pool_endpoint.py  | 120 ++++++++++++++++-----
 tests/api_connexion/schemas/test_pool_schemas.py   |  14 ++-
 tests/api_connexion/test_auth.py                   |   4 +
 tests/api_experimental/client/test_local_client.py |  20 ++--
 .../common/experimental/test_pool.py               |   7 +-
 tests/cli/commands/test_pool_command.py            |  67 ++++++++----
 tests/cli/commands/test_task_command.py            |   2 +-
 tests/jobs/test_backfill_job.py                    |   3 +-
 tests/jobs/test_scheduler_job.py                   |  31 +++---
 tests/models/test_pool.py                          |  70 +++++++++++-
 tests/models/test_taskinstance.py                  |   2 +-
 tests/models/test_xcom_arg_map.py                  |   4 +-
 tests/operators/test_subdag_operator.py            |   8 +-
 tests/providers/daskexecutor/test_dask_executor.py |   1 -
 .../ti_deps/deps/test_pool_slots_available_dep.py  |  13 ++-
 tests/www/api/experimental/test_endpoints.py       |   2 +
 tests/www/views/test_views_pool.py                 |   5 +
 52 files changed, 646 insertions(+), 303 deletions(-)
 copy 
airflow/migrations/versions/{0126_2_7_0_add_index_to_task_instance_table.py => 
0128_2_7_0_add_include_deferred_column_to_pool.py} (63%)

Reply via email to