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 60a105cb25 Update RELEASE_NOTES.rst for 2.7.0
    omit 8295f59cce Update version to 2.7.0
     new 20c2aff5e3 Update audit_logs.rst (#33073)
     new 35b22bf5a7 Add better diagnostics when tests fail (#33023)
     new 48caedf8b0 Move security manager override to its own module (#32987)
     new 74aeccd236 Avoid upgrade-to-newer-dependencies when provider.yaml 
changes (#33082)
     new 7ecc84125d Fix BaseOperator get_task_instances query (#33054)
     new 8351ae5fac openlineage: remove eager test for auth headers, fix 
example dag (#33087)
     new be31ac2752 Get rid of Python2 numeric relics (#33050)
     new faf9de4342 Ensure DAG-level references are filled on unmap (#33083)
     new 7d6aca4792 Fix test failing after open-lineage 1.0 API change (#33095)
     new 7aa705d58b Temporarily exclude openlineage from "PyPI" constraints 
generation (#33101)
     new ab036e9a30 Use arrow with no circle for setup / teardown (#33098)
     new 12a801e9a2 Don't auto-add to context just by virtue of arrowing 
(#33102)
     new 8fac347569 Update version to 2.7.0
     new 1cba304c40 Update RELEASE_NOTES.rst for 2.7.0

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   (60a105cb25)
            \
             N -- N -- N   refs/heads/v2-7-test (1cba304c40)

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 14 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/actions/migration_tests/action.yml         |  19 ++++
 .../{post_tests => post_tests_failure}/action.yml  |  26 +----
 .../{post_tests => post_tests_success}/action.yml  |  19 +---
 .github/workflows/ci.yml                           | 115 +++++++++++++--------
 RELEASE_NOTES.rst                                  |   3 +
 airflow/auth/managers/base_auth_manager.py         |   2 +-
 airflow/auth/managers/fab/fab_auth_manager.py      |   2 +-
 .../managers/fab/{models.py => models/__init__.py} |   2 +-
 .../fab/{auth => models}/anonymous_user.py         |   2 +-
 .../fab/{auth => security_manager}/__init__.py     |   0
 .../override.py}                                   |   2 +-
 .../auth/managers/{model => models}/__init__.py    |   0
 .../auth/managers/{model => models}/base_user.py   |   0
 airflow/example_dags/example_python_operator.py    |   2 +-
 airflow/example_dags/plugins/event_listener.py     |   6 +-
 airflow/models/baseoperator.py                     |  13 +--
 airflow/models/mappedoperator.py                   |   2 +
 airflow/models/taskinstance.py                     |   2 +-
 airflow/models/taskmixin.py                        |  21 ----
 .../providers/celery/executors/celery_executor.py  |   2 +-
 .../celery/executors/celery_executor_utils.py      |   2 +-
 airflow/providers/common/sql/operators/sql.py      |   4 +-
 airflow/providers/docker/operators/docker.py       |   2 +-
 airflow/providers/google/cloud/hooks/bigquery.py   |   4 +-
 airflow/providers/google/cloud/hooks/gcs.py        |   4 +-
 airflow/serialization/serialized_objects.py        |  59 +++++++----
 airflow/www/static/js/dag/details/graph/Node.tsx   |   9 +-
 airflow/www/views.py                               |   4 +-
 .../airflow_breeze/commands/testing_commands.py    |  28 +++--
 dev/breeze/src/airflow_breeze/utils/parallel.py    |   2 +-
 .../src/airflow_breeze/utils/selective_checks.py   |   1 -
 dev/breeze/tests/test_selective_checks.py          |   2 +-
 dev/stats/get_important_pr_candidates.py           |   5 +-
 docs/apache-airflow/security/audit_logs.rst        |   2 +-
 scripts/ci/docker-compose/_docker.env              |   2 +
 scripts/in_container/_in_container_utils.sh        |   7 ++
 .../managers/fab/security_manager}/__init__.py     |   0
 .../test_override.py}                              |   8 +-
 tests/auth/managers/fab/test_fab_auth_manager.py   |   2 +-
 tests/decorators/test_setup_teardown.py            |  53 ----------
 tests/models/test_baseoperator.py                  |  38 ++++++-
 tests/models/test_taskmixin.py                     |  97 -----------------
 .../plugins/test_openlineage_adapter.py            |   4 -
 tests/serialization/test_serialized_objects.py     |  21 ++++
 tests/test_utils/perf/perf_kit/repeat_and_time.py  |   4 +-
 tests/utils/test_task_group.py                     |  71 +------------
 tests/www/test_security.py                         |   2 +-
 47 files changed, 278 insertions(+), 399 deletions(-)
 copy .github/actions/{post_tests => post_tests_failure}/action.yml (61%)
 rename .github/actions/{post_tests => post_tests_success}/action.yml (77%)
 rename airflow/auth/managers/fab/{models.py => models/__init__.py} (99%)
 rename airflow/auth/managers/fab/{auth => models}/anonymous_user.py (96%)
 rename airflow/auth/managers/fab/{auth => security_manager}/__init__.py (100%)
 rename airflow/auth/managers/fab/{security_manager_override.py => 
security_manager/override.py} (99%)
 rename airflow/auth/managers/{model => models}/__init__.py (100%)
 rename airflow/auth/managers/{model => models}/base_user.py (100%)
 copy {airflow/api_connexion => 
tests/auth/managers/fab/security_manager}/__init__.py (100%)
 rename tests/auth/managers/fab/{test_security_manager_override.py => 
security_manager/test_override.py} (94%)

Reply via email to