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

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


    omit e71373af69 Update RELEASE_NOTES.rst
     add 7d1211de0f Fix gantt chart queued duration when queued_dttm is greater 
than start_date for deferred tasks. (#35984)
     add d347d70dd6 Add read access to pools for viewer role (#35352)
     add 2ef568930a Replace architecture diagram of Airflow with 
diagrams-generated one (#36035)
     add 5d3aa8d0a9 Account for change in UTC offset when calculating next 
schedule (#35887)
     add 9a2fae3a57 Revert "Add a public interface for custom weight_rule 
implementation (#35210)" (#36066)
     add 37519bf6d2 Add support for tabs (and other UX components) to docs 
(#36041)
     add 9176c28a50 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   (e71373af69)
            \
             N -- N -- N   refs/heads/v2-8-test (9176c28a50)

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:
 .pre-commit-config.yaml                            |   7 +
 RELEASE_NOTES.rst                                  |   8 +-
 STATIC_CODE_CHECKS.rst                             |   2 +
 airflow/api_connexion/openapi/v1.yaml              |   7 -
 airflow/api_connexion/schemas/task_schema.py       |   1 -
 .../auth/managers/fab/security_manager/override.py |   2 +-
 airflow/config_templates/config.yml                |  11 -
 .../example_priority_weight_strategy.py            |  69 --
 ...hon_operator.py => example_python_decorator.py} |  45 +-
 airflow/example_dags/example_python_operator.py    |  76 +-
 .../example_dags/example_short_circuit_operator.py |   6 +-
 airflow/executors/base_executor.py                 |   2 +-
 airflow/executors/debug_executor.py                |   2 +-
 ..._2_8_0_add_priority_weight_strategy_to_task_.py |  48 --
 ...132_2_8_0_add_processor_subdir_import_error.py} |   4 +-
 airflow/models/abstractoperator.py                 |  20 +-
 airflow/models/baseoperator.py                     |  36 +-
 airflow/models/dag.py                              |  25 +-
 airflow/models/mappedoperator.py                   |  16 +-
 airflow/models/taskinstance.py                     |  22 +-
 airflow/serialization/pydantic/taskinstance.py     |   1 -
 airflow/task/priority_strategy.py                  |  91 ---
 airflow/timetables/_cron.py                        |  44 +-
 airflow/utils/weight_rule.py                       |   6 +-
 .../static/js/dag/details/gantt/GanttTooltip.tsx   |   8 +-
 airflow/www/static/js/dag/details/gantt/Row.tsx    |  25 +-
 airflow/www/static/js/types/api-generated.ts       |  10 +-
 dev/breeze/src/airflow_breeze/pre_commit_ids.py    |   1 +
 .../priority-weight.rst                            |  12 +-
 docs/apache-airflow/core-concepts/overview.rst     |  21 +-
 docs/apache-airflow/howto/operator/python.rst      | 341 +++++---
 docs/apache-airflow/img/airflow_erd.sha256         |   2 +-
 docs/apache-airflow/img/airflow_erd.svg            | 909 ++++++++++-----------
 docs/apache-airflow/img/arch-diag-basic.png        | Bin 16357 -> 0 bytes
 .../img/diagram_basic_airflow_architecture.png     | Bin 0 -> 87096 bytes
 .../diagram_dag_processor_airflow_architecture.png | Bin 0 -> 106642 bytes
 docs/apache-airflow/migrations-ref.rst             |   4 +-
 docs/apache-airflow/security/security_model.rst    |  22 +-
 docs/conf.py                                       |   6 +
 .../sphinx_design/static/custom.css                |  25 +-
 images/breeze/output_static-checks.svg             | 100 +--
 images/breeze/output_static-checks.txt             |   2 +-
 images/diagrams/python_multiprocess_logo.png       | Bin 0 -> 210513 bytes
 scripts/ci/pre_commit/.gitignore                   |   1 +
 scripts/ci/pre_commit/diagram_hash.txt             |   1 +
 .../pre_commit_generate_airflow_diagrams.py        | 139 ++++
 setup.py                                           |   1 +
 .../api_connexion/endpoints/test_task_endpoint.py  |  21 +-
 .../endpoints/test_task_instance_endpoint.py       |  30 +-
 tests/api_connexion/schemas/test_task_schema.py    |   6 +-
 tests/models/test_baseoperator.py                  |  12 +-
 tests/models/test_dag.py                           |  20 -
 tests/models/test_taskinstance.py                  |   1 -
 tests/serialization/test_dag_serialization.py      |   3 +-
 tests/timetables/test_interval_timetable.py        | 305 +++++++
 tests/www/test_security.py                         |   1 +
 tests/www/views/test_views_tasks.py                |   7 -
 57 files changed, 1428 insertions(+), 1159 deletions(-)
 delete mode 100644 airflow/example_dags/example_priority_weight_strategy.py
 copy airflow/example_dags/{example_python_operator.py => 
example_python_decorator.py} (77%)
 delete mode 100644 
airflow/migrations/versions/0132_2_8_0_add_priority_weight_strategy_to_task_.py
 rename 
airflow/migrations/versions/{0133_2_8_0_add_processor_subdir_import_error.py => 
0132_2_8_0_add_processor_subdir_import_error.py} (97%)
 delete mode 100644 airflow/task/priority_strategy.py
 delete mode 100755 docs/apache-airflow/img/arch-diag-basic.png
 create mode 100644 
docs/apache-airflow/img/diagram_basic_airflow_architecture.png
 create mode 100644 
docs/apache-airflow/img/diagram_dag_processor_airflow_architecture.png
 copy airflow/www/static/js/duration_chart.js => 
docs/sphinx_design/static/custom.css (65%)
 create mode 100644 images/diagrams/python_multiprocess_logo.png
 create mode 100644 scripts/ci/pre_commit/.gitignore
 create mode 100644 scripts/ci/pre_commit/diagram_hash.txt
 create mode 100755 
scripts/ci/pre_commit/pre_commit_generate_airflow_diagrams.py

Reply via email to