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

potiuk pushed a change to branch build-common-io-from-sources
in repository https://gitbox.apache.org/repos/asf/airflow.git


    omit c9a0cd4ad7 Add feature to build "chicken-egg" packages from sources
     add 3385113e27 Add a public interface for custom weight_rule 
implementation (#35210)
     add f6962a929b Support IAM authentication for Redshift serverless (#35897)
     add ce7f043e15 Consolidate the call of change_state to fail or success in 
the core executors (#35901)
     add 2919abe5b3 Add more ways to connect to weaviate (#35864)
     add 4f060a482c Remove workaround for pymssql failing compilation with new 
Cython (#35924)
     add d37b91c102 Change dag grid overscroll behaviour to auto (#35717)
     add 6393b3515f Create pre-commit script to prevent creating FAB related 
migrations in core Airflow (#35927)
     new d67086e6bb Add feature to build "chicken-egg" packages from sources

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   (c9a0cd4ad7)
            \
             N -- N -- N   refs/heads/build-common-io-from-sources (d67086e6bb)

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 1 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:
 .github/workflows/ci.yml                           |   3 +-
 .pre-commit-config.yaml                            |  32 +++++
 Dockerfile                                         |  42 ------
 Dockerfile.ci                                      |  36 -----
 STATIC_CODE_CHECKS.rst                             |   2 +
 airflow/api_connexion/openapi/v1.yaml              |   7 +
 airflow/api_connexion/schemas/task_schema.py       |   1 +
 airflow/config_templates/config.yml                |  11 ++
 .../example_priority_weight_strategy.py            |  69 ++++++++++
 airflow/executors/base_executor.py                 |   2 +-
 airflow/executors/debug_executor.py                |   8 +-
 airflow/executors/sequential_executor.py           |   5 +-
 ...2_8_0_add_priority_weight_strategy_to_task_.py} |  25 ++--
 airflow/models/abstractoperator.py                 |  20 ++-
 airflow/models/baseoperator.py                     |  36 +++--
 airflow/models/mappedoperator.py                   |  16 ++-
 airflow/models/taskinstance.py                     |  22 ++-
 airflow/providers/amazon/aws/hooks/redshift_sql.py |  53 +++++---
 airflow/providers/microsoft/mssql/provider.yaml    |   2 +-
 airflow/providers/weaviate/hooks/weaviate.py       |  50 ++++---
 airflow/serialization/pydantic/taskinstance.py     |   1 +
 airflow/task/priority_strategy.py                  |  91 +++++++++++++
 airflow/utils/db.py                                |   2 +-
 airflow/utils/weight_rule.py                       |   6 +-
 airflow/www/static/js/dag/grid/index.tsx           |   2 +-
 airflow/www/static/js/types/api-generated.ts       |  10 +-
 dev/breeze/src/airflow_breeze/pre_commit_ids.py    |   1 +
 .../connections/redshift.rst                       |  20 +++
 .../connections.rst                                |  19 +++
 .../priority-weight.rst                            |  12 +-
 docs/apache-airflow/img/airflow_erd.sha256         |   2 +-
 docs/apache-airflow/migrations-ref.rst             |   4 +-
 generated/provider_dependencies.json               |   2 +-
 images/breeze/output_static-checks.svg             |   2 +-
 images/breeze/output_static-checks.txt             |   2 +-
 scripts/docker/install_mssql.sh                    |  39 ------
 scripts/in_container/_in_container_utils.sh        |  12 +-
 .../api_connexion/endpoints/test_task_endpoint.py  |  21 ++-
 tests/api_connexion/schemas/test_task_schema.py    |   6 +-
 tests/executors/test_debug_executor.py             |   4 +-
 tests/models/test_baseoperator.py                  |  12 +-
 tests/models/test_dag.py                           |  20 +++
 tests/models/test_taskinstance.py                  |   1 +
 .../amazon/aws/hooks/test_redshift_sql.py          |  45 +++++++
 tests/providers/weaviate/hooks/test_weaviate.py    | 148 ++++++++++++++++++++-
 tests/serialization/test_dag_serialization.py      |   3 +-
 tests/www/views/test_views_tasks.py                |   7 +
 47 files changed, 709 insertions(+), 227 deletions(-)
 create mode 100644 airflow/example_dags/example_priority_weight_strategy.py
 copy airflow/migrations/versions/{0066_2_0_0_add_queued_by_job_id_to_ti.py => 
0132_2_8_0_add_priority_weight_strategy_to_task_.py} (68%)
 create mode 100644 airflow/task/priority_strategy.py

Reply via email to