This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/npm_and_yarn/dev/react-plugin-tools/react_plugin_template/ui-plugin-template-package-updates-a782a09749
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard 20695b6aa36 Bump the ui-plugin-template-package-updates group across 1
directory with 15 updates
add 8ce49df223f Finish commiter status onboarding - Dheeraj Turaga (#60228)
add d37dbae05e6 Bump the edge-ui-package-updates group across 1 directory
with 8 updates (#60170)
add cf0f13c6769 Add David to Committers List (#60230)
add d2fdea77c57 Bump the core-ui-package-updates group across 1 directory
with 3 updates (#60232)
add 23a9aa23aef Add Dheeraj as codeowner for egde and celery (#60234)
add 57d3fd7cf32 Fix job_name normalization in KubernetesJobOperator
(#60231)
add e309b5bc42c Close catalan gap (main) (#60156)
add 9b364ca50ae Protect against hanging thread in aiosqlite 0.22+ (#60217)
add 6e93a46c396 Remove unused containerLifecycleHooks field (#60239)
add 32bc0119b40 Separate "next dag run" from "max active runs" (#60006)
add b8effe95b48 Fix docstring for RuntimeTaskInstance.xcom_pull (#60220)
add b99e64faadc Add depth level filter to dag partial subset (#58582)
add acae180797b Clean custom theme defaults (#60226)
add 5089a376b8b Add choo121600 for API and UI components (#60251)
add e36e6caa344 Fix breeze k8s dev doesn't include configure-cluster test
resource (#60259)
add 9cab6fb7ef4 Add support for async callables in PythonOperator (#59087)
add 0b341e6b920 Move listeners module to shared library for client server
separation (#59883)
add 84d924709aa Refactor airflow-core/tests cli commands to use SQLA2
(#60263)
add 1204920d2b0 Revert "Add support for async callables in PythonOperator
(#59087)" (#60266)
add 336b8161608 Automatically add pydantic extra when installing airflow 2
in breeze (#60264)
add 2c5487c924e Fix OAuth token refresh for long-running SnowflakeHook
tasks and add tests. (#60027)
add f0671cdd9fb Bump the ui-plugin-template-package-updates group across 1
directory with 15 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 (20695b6aa36)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/dev/react-plugin-tools/react_plugin_template/ui-plugin-template-package-updates-a782a09749
(f0671cdd9fb)
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:
.github/CODEOWNERS | 12 +-
.pre-commit-config.yaml | 5 +
airflow-core/docs/howto/customize-ui.rst | 2 +-
airflow-core/docs/img/airflow_erd.sha256 | 2 +-
airflow-core/docs/img/airflow_erd.svg | 4343 ++++++++++----------
airflow-core/docs/migrations-ref.rst | 4 +-
airflow-core/docs/project.rst | 3 +
airflow-core/pyproject.toml | 11 +-
airflow-core/src/airflow/_shared/listeners | 1 +
.../auth/managers/simple/ui/package-lock.json | 830 +++-
.../auth/managers/simple/ui/package.json | 6 +-
.../auth/managers/simple/ui/pnpm-lock.yaml | 106 +-
.../api_fastapi/core_api/datamodels/ui/config.py | 2 +-
.../api_fastapi/core_api/openapi/_private_ui.yaml | 4 +-
.../api_fastapi/core_api/routes/ui/config.py | 23 +-
.../src/airflow/config_templates/config.yml | 21 +-
.../src/airflow/dag_processing/collection.py | 7 +-
.../src/airflow/jobs/scheduler_job_runner.py | 99 +-
airflow-core/src/airflow/listeners/__init__.py | 4 +-
airflow-core/src/airflow/listeners/listener.py | 82 +-
airflow-core/src/airflow/listeners/spec/asset.py | 1 +
.../src/airflow/listeners/spec/importerrors.py | 1 +
..._2_0_add_exceeds_max_runs_flag_to_dag_model.py} | 28 +-
airflow-core/src/airflow/models/dag.py | 11 +-
.../airflow/ui/openapi-gen/requests/schemas.gen.ts | 9 +-
.../airflow/ui/openapi-gen/requests/types.gen.ts | 2 +-
.../airflow/ui/public/i18n/locales/ca/admin.json | 6 +
.../airflow/ui/public/i18n/locales/ca/assets.json | 2 +
.../airflow/ui/public/i18n/locales/ca/browse.json | 26 +-
.../airflow/ui/public/i18n/locales/ca/common.json | 11 +-
.../ui/public/i18n/locales/ca/components.json | 7 +
.../ui/public/i18n/locales/ca/dashboard.json | 3 +-
airflow-core/src/airflow/utils/db.py | 2 +-
.../core_api/routes/public/test_dag_run.py | 11 +-
.../core_api/routes/public/test_task_instances.py | 13 +-
.../api_fastapi/core_api/routes/ui/test_config.py | 11 +-
airflow-core/tests/unit/assets/test_manager.py | 9 +-
.../unit/cli/commands/test_connection_command.py | 13 +-
.../tests/unit/cli/commands/test_dag_command.py | 16 +-
.../tests/unit/cli/commands/test_pool_command.py | 15 +-
.../cli/commands/test_rotate_fernet_key_command.py | 5 +-
.../tests/unit/cli/commands/test_team_command.py | 29 +-
.../tests/unit/dag_processing/test_collection.py | 6 +-
airflow-core/tests/unit/jobs/test_base_job.py | 5 +-
airflow-core/tests/unit/jobs/test_scheduler_job.py | 159 +-
.../tests/unit/listeners/test_asset_listener.py | 14 +-
.../tests/unit/listeners/test_listeners.py | 60 +-
airflow-core/tests/unit/models/test_dag.py | 18 +-
chart/values.schema.json | 29 -
chart/values.yaml | 3 -
.../airflow_breeze/commands/kubernetes_commands.py | 36 +-
dev/breeze/src/airflow_breeze/global_constants.py | 3 +
devel-common/src/tests_common/pytest_plugin.py | 40 +
.../providers/cncf/kubernetes/operators/job.py | 1 +
.../unit/cncf/kubernetes/operators/test_job.py | 36 +
.../src/airflow/providers/common/compat/sdk.py | 6 +
.../providers/edge3/plugins/www/dist/main.umd.cjs | 14 +-
.../providers/edge3/plugins/www/package.json | 16 +-
.../providers/edge3/plugins/www/pnpm-lock.yaml | 223 +-
providers/edge3/www-hash.txt | 2 +-
.../providers/openlineage/plugins/listener.py | 3 +-
.../tests/system/openlineage/conftest.py | 9 +-
.../unit/openlineage/plugins/test_execution.py | 42 +-
.../airflow/providers/snowflake/hooks/snowflake.py | 193 +-
.../providers/snowflake/hooks/snowflake_sql_api.py | 4 +-
.../tests/unit/snowflake/hooks/test_snowflake.py | 120 +-
.../unit/snowflake/hooks/test_snowflake_sql_api.py | 21 +-
pyproject.toml | 3 +
.../in_container/install_airflow_and_providers.py | 17 +
shared/dagnode/src/airflow_shared/dagnode/node.py | 39 +-
.../{secrets_backend => listeners}/pyproject.toml | 9 +-
.../src/airflow_shared}/listeners/__init__.py | 0
.../src/airflow_shared}/listeners/listener.py | 44 +-
.../src/airflow_shared/listeners/spec}/__init__.py | 0
.../airflow_shared}/listeners/spec/lifecycle.py | 0
.../airflow_shared}/listeners/spec/taskinstance.py | 10 +-
.../{configuration => listeners}/tests/conftest.py | 0
.../listeners/tests/listeners}/__init__.py | 0
.../tests/listeners/test_listener_manager.py | 164 +
task-sdk/pyproject.toml | 7 +-
task-sdk/src/airflow/sdk/_shared/listeners | 1 +
task-sdk/src/airflow/sdk/definitions/dag.py | 7 +-
.../src/airflow/sdk/execution_time/task_runner.py | 6 +-
.../src/airflow/sdk/listener.py | 39 +-
task-sdk/tests/conftest.py | 8 +-
task-sdk/tests/task_sdk/definitions/test_dag.py | 84 +
task-sdk/tests/task_sdk/docs/test_public_api.py | 1 +
.../task_sdk/execution_time/test_task_runner.py | 45 +-
88 files changed, 4030 insertions(+), 3315 deletions(-)
create mode 120000 airflow-core/src/airflow/_shared/listeners
copy
airflow-core/src/airflow/migrations/versions/{0062_3_0_0_remove_dag_default_view.py
=> 0097_3_2_0_add_exceeds_max_runs_flag_to_dag_model.py} (64%)
copy shared/{secrets_backend => listeners}/pyproject.toml (88%)
copy {airflow-core/src/airflow =>
shared/listeners/src/airflow_shared}/listeners/__init__.py (100%)
copy {airflow-core/src/airflow =>
shared/listeners/src/airflow_shared}/listeners/listener.py (70%)
copy {airflow-core/src/airflow/_shared =>
shared/listeners/src/airflow_shared/listeners/spec}/__init__.py (100%)
rename {airflow-core/src/airflow =>
shared/listeners/src/airflow_shared}/listeners/spec/lifecycle.py (100%)
rename {airflow-core/src/airflow =>
shared/listeners/src/airflow_shared}/listeners/spec/taskinstance.py (90%)
copy shared/{configuration => listeners}/tests/conftest.py (100%)
copy {providers/fab/src/airflow/providers/fab/cli =>
shared/listeners/tests/listeners}/__init__.py (100%)
create mode 100644 shared/listeners/tests/listeners/test_listener_manager.py
create mode 120000 task-sdk/src/airflow/sdk/_shared/listeners
copy shared/logging/src/airflow_shared/logging/_noncaching.py =>
task-sdk/src/airflow/sdk/listener.py (54%)