This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a change to branch
dependabot/github_actions/github-actions-updates-493fc6dc58
in repository https://gitbox.apache.org/repos/asf/airflow.git
omit d7613366d42 Bump the github-actions-updates group with 3 updates
add 9fac83138ad Bump litellm from 1.82.6 to 1.83.0 (#64701)
add a1c45b950c9 Fix bulk task instance rbac bypass (#64288)
add 4ef04989839 chore(deps): bump aiohttp from 3.13.3 to 3.13.4 (#64608)
add 97dd71e12ae Bump google-cloud-aiplatform from 1.99.0 to 1.133.0
(#64712)
add 12fd5fbdc94 Replace `sshtunnel` with native paramiko/asyncssh
tunneling (#64299)
add 668ce5d5154 Remove the lxml workaround (#64554)
add 9733ac8c91a Bump the min aibotocore version to 3.0.0 (#64631)
add 04b3dd02a53 Temporarily upgrade allowlist-check to latest version
(#64713)
new f829eb119f9 Bump the github-actions-updates group with 3 updates
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 (d7613366d42)
\
N -- N -- N
refs/heads/dependabot/github_actions/github-actions-updates-493fc6dc58
(f829eb119f9)
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/asf-allowlist-check.yml | 2 +-
.../core_api/services/public/task_instances.py | 28 +-
.../core_api/routes/public/test_task_instances.py | 181 ++++++++-
.../services/public/test_task_instances.py | 32 +-
devel-common/src/docs/utils/conf_constants.py | 1 -
docker-tests/tests/docker_tests/test_prod_image.py | 2 +-
docs/spelling_wordlist.txt | 4 +-
providers/amazon/docs/index.rst | 1 +
providers/amazon/pyproject.toml | 7 +-
providers/ssh/docs/index.rst | 1 -
providers/ssh/pyproject.toml | 2 +-
.../ssh/src/airflow/providers/ssh/hooks/ssh.py | 89 +++--
providers/ssh/src/airflow/providers/ssh/tunnel.py | 427 +++++++++++++++++++++
providers/ssh/tests/unit/ssh/hooks/test_ssh.py | 233 ++++++++---
.../ssh/tests/unit/ssh/hooks/test_ssh_async.py | 62 +++
providers/ssh/tests/unit/ssh/test_tunnel.py | 171 +++++++++
providers/yandex/docs/index.rst | 4 +-
providers/yandex/pyproject.toml | 5 +-
pyproject.toml | 1 -
uv.lock | 75 ++--
20 files changed, 1181 insertions(+), 147 deletions(-)
create mode 100644 providers/ssh/src/airflow/providers/ssh/tunnel.py
create mode 100644 providers/ssh/tests/unit/ssh/test_tunnel.py