This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/npm_and_yarn/airflow-core/src/airflow/ui/core-ui-package-updates-2067516e94
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard 55f777d17e6 Bump the core-ui-package-updates group across 1 directory
with 46 updates
add e311c6bf990 DagBag in file parsing used to collect dags in dag
processing uses default value for safe_mode, which resolves to value in
configuration (#52694)
add 4eb776ae19e Ensure Edge Plugin for API endpoint is only loaded on
API-Server and AF2 Webserver (#52952)
add 52e760c48ce Align main branch after standard provider 1.4.1 release
(#53511)
add 00194da372d Remove warning for `BaseOperator.executor` because its
false (#53496)
add 4231a87ff2d Deprecate `airflow.utils.warnings` properly (#53339)
add e9e6ac27a4b Handle invalid execution API urls gracefully in supervisor
(#53082)
add 11a636146dd Add changelog for regenerated image for Airflow 3.0.3
(#53516)
add 5e944e49001 Add queue and remove queue cli commands for EdgeExecutor
(#53505)
add fdabc9fa637 Fix unreachable code mypy warnings in standard provider
(#53431)
add fa602298f4b Feat: Improve check translations script with Coverage and
Completion metrics (#53524)
add 0510f75bcda add unit tests for google/common (#52965)
add 00867ec8665 fix: Change DataprocAsyncHook parent class to
GoogleBaseAsyncHook (#52981)
add b58f5d30dcd Deprecate and move `airflow.utils.task_group` to SDK
(#53450)
add 4a3cde26d33 Bump mypy to 1.17.0 (#53523)
add 08bfe650cfc Bump the core-ui-package-updates group across 1 directory
with 46 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 (55f777d17e6)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/airflow-core/src/airflow/ui/core-ui-package-updates-2067516e94
(08bfe650cfc)
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:
.../airflow/api_fastapi/core_api/routes/ui/grid.py | 2 +-
.../api_fastapi/core_api/routes/ui/structure.py | 2 +-
.../api_fastapi/core_api/services/ui/grid.py | 3 +-
.../src/airflow/dag_processing/processor.py | 1 -
.../airflow/example_dags/example_setup_teardown.py | 2 +-
.../src/airflow/example_dags/example_task_group.py | 2 +-
airflow-core/src/airflow/models/taskinstance.py | 3 +-
.../src/airflow/ti_deps/deps/trigger_rule_dep.py | 2 +-
airflow-core/src/airflow/ui/package.json | 6 +-
airflow-core/src/airflow/ui/pnpm-lock.yaml | 350 +++++++++++----------
airflow-core/src/airflow/utils/__init__.py | 25 +-
airflow-core/src/airflow/utils/dot_renderer.py | 2 +-
airflow-core/src/airflow/utils/task_group.py | 128 --------
airflow-core/src/airflow/utils/warnings.py | 22 --
.../api_fastapi/core_api/routes/ui/test_grid.py | 2 +-
airflow-core/tests/unit/models/test_dagrun.py | 2 +-
.../tests/unit/models/test_mappedoperator.py | 2 +-
.../tests/unit/models/test_taskinstance.py | 2 +-
.../unit/serialization/test_dag_serialization.py | 2 +-
.../unit/serialization/test_serialized_objects.py | 2 +-
airflow-core/tests/unit/utils/test_dag_cycle.py | 2 +-
airflow-core/tests/unit/utils/test_dot_renderer.py | 2 +-
airflow-core/tests/unit/utils/test_edgemodifier.py | 2 +-
airflow-core/tests/unit/utils/test_task_group.py | 2 +-
dev/i18n/check_translations_completeness.py | 80 ++---
devel-common/pyproject.toml | 4 +-
docker-stack-docs/changelog.rst | 3 +
.../apache/hive/transfers/mysql_to_hive.py | 6 +-
providers/edge3/docs/deployment.rst | 2 +
.../airflow/providers/edge3/cli/edge_command.py | 65 ++++
.../airflow/providers/edge3/models/edge_worker.py | 34 ++
.../edge3/plugins/edge_executor_plugin.py | 13 +-
.../edge3/plugins/test_edge_executor_plugin.py | 29 +-
.../providers/google/cloud/hooks/dataproc.py | 138 ++++----
.../tests/unit/google/cloud/hooks/test_dataproc.py | 106 +++++--
.../unit/google/cloud/triggers/test_dataproc.py | 252 ++++++++-------
.../tests/unit/google/common/links}/__init__.py | 0
.../tests/unit/google/common/links/test_storage.py | 51 +++
.../unit/google/common/test_consts.py} | 13 +-
.../azure/transfers/oracle_to_azure_data_lake.py | 5 +-
providers/standard/README.rst | 2 +-
providers/standard/docs/changelog.rst | 8 +
providers/standard/provider.yaml | 1 +
providers/standard/pyproject.toml | 6 +-
.../src/airflow/providers/standard/__init__.py | 2 +-
.../airflow/providers/standard/operators/branch.py | 4 +-
.../providers/standard/sensors/date_time.py | 7 +-
.../providers/standard/utils/python_virtualenv.py | 7 +-
.../tests/unit/standard/decorators/test_python.py | 3 +-
.../standard/operators/test_branch_operator.py | 7 +-
.../tests/unit/standard/operators/test_python.py | 18 ++
.../standard/sensors/test_external_task_sensor.py | 8 +-
.../unit/standard/utils/test_sensor_helper.py | 8 +-
task-sdk/src/airflow/sdk/bases/operator.py | 7 -
task-sdk/src/airflow/sdk/definitions/taskgroup.py | 85 +++--
.../src/airflow/sdk/execution_time/supervisor.py | 35 ++-
task-sdk/tests/conftest.py | 10 +
.../task_sdk/execution_time/test_supervisor.py | 53 ++++
58 files changed, 963 insertions(+), 679 deletions(-)
delete mode 100644 airflow-core/src/airflow/utils/task_group.py
delete mode 100644 airflow-core/src/airflow/utils/warnings.py
copy {airflow-core/src/airflow/api =>
providers/google/tests/unit/google/common/links}/__init__.py (100%)
create mode 100644
providers/google/tests/unit/google/common/links/test_storage.py
copy providers/google/{src/airflow/providers/google/common/consts.py =>
tests/unit/google/common/test_consts.py} (69%)