This is an automated email from the ASF dual-hosted git repository.
vincbeck pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
from e36a809ebda Fix local executor task execution (#54523)
add 4904fbbc5eb Create multi-team related tables. Create team association
with `Variable`, `Connection` and `Pool` (#53946)
No new revisions were added by this update.
Summary of changes:
airflow-core/docs/img/airflow_erd.sha256 | 2 +-
airflow-core/docs/img/airflow_erd.svg | 4269 ++++++++++----------
airflow-core/docs/migrations-ref.rst | 4 +-
.../migrations/versions/0083_3_1_0_add_teams.py | 105 +
airflow-core/src/airflow/models/__init__.py | 2 +
airflow-core/src/airflow/models/connection.py | 4 +-
airflow-core/src/airflow/models/dagbundle.py | 3 +
airflow-core/src/airflow/models/pool.py | 4 +-
airflow-core/src/airflow/models/team.py | 52 +
airflow-core/src/airflow/models/variable.py | 4 +-
airflow-core/src/airflow/utils/db.py | 2 +-
.../unit/api_fastapi/common/test_exceptions.py | 12 +-
12 files changed, 2356 insertions(+), 2107 deletions(-)
create mode 100644
airflow-core/src/airflow/migrations/versions/0083_3_1_0_add_teams.py
create mode 100644 airflow-core/src/airflow/models/team.py