You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ur...@apache.org on 2022/01/14 05:19:12 UTC

[airflow] branch main updated (3c59f11 -> d48a3a3)

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

uranusjr pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git.


    from 3c59f11  Docs: Wordings fix in CONTRIBUTING doc (#20861)
     add d48a3a3  Add TaskMap and TaskInstance.map_id (#20286)

No new revisions were added by this update.

Summary of changes:
 airflow/decorators/base.py                         |  16 +--
 airflow/exceptions.py                              |  11 ++
 ...53f75_add_taskmap_and_map_id_on_taskinstance.py | 120 +++++++++++++++++++++
 airflow/models/baseoperator.py                     |  70 ++++++++++++
 airflow/models/taskinstance.py                     |  20 +++-
 airflow/models/taskmap.py                          | 110 +++++++++++++++++++
 airflow/models/taskreschedule.py                   |  35 ++++--
 docs/apache-airflow/migrations-ref.rst             |   5 +-
 docs/spelling_wordlist.txt                         |   1 +
 tests/conftest.py                                  |  12 ++-
 tests/models/test_taskinstance.py                  |  87 ++++++++++++++-
 11 files changed, 461 insertions(+), 26 deletions(-)
 create mode 100644 airflow/migrations/versions/e655c0453f75_add_taskmap_and_map_id_on_taskinstance.py
 create mode 100644 airflow/models/taskmap.py