This is an automated email from the ASF dual-hosted git repository.
kaxil pushed a change to branch anthropic-interrupt-before-archive
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard 8eebd5bf6cf Interrupt a running Anthropic session before archiving it
discard 08156f513d7 Document Anthropic advisor rosters and pinned inference
regions
omit 56f58fac680 Record Anthropic agent session token usage and cost in XCom
add eaeb967b245 chore: rebase onto main to retrigger CI (#70535)
add 9334537621f Make KeycloakAuthManager _CACHE_TTL_SECONDS configurable
(#70839)
add 5f03059ee9b fix: coerce explicit None _request_timeout in async/sync
k8s API clients (#69611)
add 9338ab9d63f Rename dag serialization metrics. (#70838)
add 9d17a46b40c Keep airflowctl operation defaults when an optional flag
is omitted (#65062)
add 0361344c873 Add Cloud Run job links during execution (#70179)
add 5dd285cb50a Add type annotations to sql hooks (#70815)
add 39ad57024de Correct supervisor comments on kill escalation and
finish() states (#70572)
add e0c19c74239 Replace the ACL calls with IAM roles for the system tests
+ add new (#70978)
add b0789d224d3 readme add uv (#71013)
add 23d63c2e1d7 Fix Slack failure alerts going silent when several jobs
fail (#70988)
add 85a4da7eb4e Fix login loop when the login callback carries an expired
Airflow JWT (#71506)
add cc279cd4e78 Check GCSToAzureBlobStorageOperator match_glob support
after template… (#70574)
add 688c25b7a26 Skip Tableau refresh/task run on 409093 resource conflict
(#69382)
add ff1bfe30b7d Record Anthropic agent session token usage and cost in
XCom (#71463)
add 51a2fda0d19 Document Anthropic advisor rosters and pinned inference
regions
new 56057b65198 Interrupt a running Anthropic session before archiving it
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 (8eebd5bf6cf)
\
N -- N -- N refs/heads/anthropic-interrupt-before-archive
(56057b65198)
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 1 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/workflows/ci-amd.yml | 11 +-
.github/workflows/ci-arm.yml | 11 +-
README.md | 2 +-
airflow-core/newsfragments/70838.feature.rst | 1 +
airflow-core/src/airflow/models/serialized_dag.py | 10 +-
.../tests/unit/models/test_serialized_dag.py | 16 +--
airflow-ctl/src/airflowctl/ctl/cli_config.py | 17 ++-
.../tests/airflow_ctl/ctl/test_cli_config.py | 51 ++++++-
generated/PYPI_README.md | 2 +-
generated/known_airflow_exceptions.txt | 1 -
.../providers/amazon/aws/hooks/redshift_sql.py | 2 +-
.../providers/cncf/kubernetes/kube_client.py | 19 ++-
.../unit/cncf/kubernetes/hooks/test_kubernetes.py | 10 ++
.../src/airflow/providers/common/sql/hooks/sql.py | 2 +-
.../docs/operators/cloud/cloud_memorystore.rst | 12 +-
.../google/docs/operators/cloud/cloud_sql.rst | 15 +--
providers/google/docs/operators/cloud/gcs.rst | 35 +++++
providers/google/provider.yaml | 1 +
.../airflow/providers/google/cloud/hooks/gcs.py | 30 +++++
.../providers/google/cloud/hooks/spanner.py | 2 +-
.../providers/google/cloud/links/cloud_run.py | 34 ++++-
.../providers/google/cloud/operators/cloud_run.py | 17 ++-
.../providers/google/cloud/operators/gcs.py | 87 +++++++++++-
.../airflow/providers/google/get_provider_info.py | 1 +
.../example_cloud_memorystore_redis.py | 31 +++--
.../google/cloud/cloud_sql/example_cloud_sql.py | 33 ++---
.../tests/unit/google/cloud/hooks/test_gcs.py | 61 +++++++++
.../unit/google/cloud/links/test_cloud_run.py | 36 ++++-
.../unit/google/cloud/operators/test_cloud_run.py | 28 ++++
.../tests/unit/google/cloud/operators/test_gcs.py | 57 ++++++++
.../jdbc/src/airflow/providers/jdbc/hooks/jdbc.py | 5 +-
providers/jdbc/tests/unit/jdbc/hooks/test_jdbc.py | 5 +-
providers/keycloak/provider.yaml | 14 ++
.../providers/keycloak/auth_manager/cache.py | 33 ++++-
.../providers/keycloak/auth_manager/constants.py | 2 +
.../providers/keycloak/auth_manager/middleware.py | 3 +
.../keycloak/auth_manager/routes/login.py | 1 +
.../providers/keycloak/get_provider_info.py | 14 ++
.../tests/unit/keycloak/auth_manager/test_cache.py | 30 +++++
.../unit/keycloak/auth_manager/test_constants.py | 8 ++
.../unit/keycloak/auth_manager/test_middleware.py | 34 +++++
.../microsoft/azure/transfers/gcs_to_wasb.py | 4 +-
.../microsoft/azure/transfers/test_gcs_to_wasb.py | 5 +-
.../providers/microsoft/mssql/hooks/mssql.py | 3 +-
.../src/airflow/providers/mysql/hooks/mysql.py | 3 +-
.../src/airflow/providers/oracle/hooks/oracle.py | 2 +-
.../airflow/providers/postgres/hooks/postgres.py | 2 +-
providers/tableau/docs/operators.rst | 1 +
.../airflow/providers/tableau/operators/tableau.py | 58 ++++++--
.../tests/unit/tableau/operators/test_tableau.py | 148 ++++++++++++++++++++-
.../ci/prek/validate_operators_init_exemptions.txt | 1 -
.../observability/metrics/metrics_template.yaml | 16 ++-
.../src/airflow/sdk/execution_time/supervisor.py | 14 +-
53 files changed, 908 insertions(+), 133 deletions(-)
create mode 100644 airflow-core/newsfragments/70838.feature.rst