This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a change to branch remove-fab-from-chicken-egg-providers
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard c8d247f050 Remove FAB provider from "chicken-egg" providers.
add c65b08399d Use `methodtools.lru_cache` instead of
`functools.lru_cache` in class methods (#37757)
add 201e1aabe7 Upgrade Airflow in main to be 2.10.0dev0 (#38699)
add 649d643d19 Resolve `PT012` in `amazon` provider tests (#38603)
add 7d794943d7 Remove FAB provider from "chicken-egg" providers.
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 (c8d247f050)
\
N -- N -- N refs/heads/remove-fab-from-chicken-egg-providers
(7d794943d7)
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 +++
airflow/__init__.py | 2 +-
airflow/compat/functools.pyi | 27 ---------
airflow/models/abstractoperator.py | 4 +-
airflow/models/mappedoperator.py | 8 +--
airflow/utils/task_group.py | 4 +-
airflow/utils/weight_rule.py | 4 +-
contributing-docs/08_static_code_checks.rst | 2 +
dev/breeze/doc/images/output_static-checks.svg | 26 ++++----
dev/breeze/doc/images/output_static-checks.txt | 2 +-
dev/breeze/src/airflow_breeze/pre_commit_ids.py | 1 +
docs/docker-stack/README.md | 10 ++--
.../extending/add-airflow-configuration/Dockerfile | 2 +-
.../extending/add-apt-packages/Dockerfile | 2 +-
.../add-build-essential-extend/Dockerfile | 2 +-
.../extending/add-providers/Dockerfile | 2 +-
.../add-pypi-packages-constraints/Dockerfile | 2 +-
.../extending/add-pypi-packages-uv/Dockerfile | 2 +-
.../extending/add-pypi-packages/Dockerfile | 2 +-
.../extending/add-requirement-packages/Dockerfile | 2 +-
.../extending/custom-providers/Dockerfile | 2 +-
.../extending/embedding-dags/Dockerfile | 2 +-
.../extending/writable-directory/Dockerfile | 2 +-
docs/docker-stack/entrypoint.rst | 14 ++---
hatch_build.py | 1 +
pyproject.toml | 17 +-----
scripts/ci/pre_commit/compat_cache_on_methods.py | 69 ++++++++++++++++++++++
tests/providers/amazon/aws/hooks/test_base_aws.py | 8 +--
tests/providers/amazon/aws/hooks/test_datasync.py | 7 ++-
tests/providers/amazon/aws/hooks/test_eks.py | 10 ++--
.../amazon/aws/hooks/test_redshift_data.py | 3 +-
tests/providers/amazon/aws/hooks/test_s3.py | 6 +-
.../amazon/aws/operators/test_emr_serverless.py | 4 +-
.../amazon/aws/operators/test_redshift_data.py | 2 +-
tests/providers/amazon/aws/sensors/test_glacier.py | 2 +-
tests/providers/amazon/aws/sensors/test_glue.py | 12 ++--
.../amazon/aws/sensors/test_lambda_function.py | 7 +--
.../amazon/aws/system/utils/test_helpers.py | 4 +-
.../amazon/aws/transfers/test_redshift_to_s3.py | 16 ++---
tests/providers/amazon/aws/triggers/test_ecs.py | 7 +--
tests/providers/amazon/aws/waiters/test_neptune.py | 8 +--
41 files changed, 173 insertions(+), 143 deletions(-)
delete mode 100644 airflow/compat/functools.pyi
create mode 100755 scripts/ci/pre_commit/compat_cache_on_methods.py