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-5e415639ae
in repository https://gitbox.apache.org/repos/asf/airflow.git
omit 3c6d016b537 Bump the ui-plugin-template-package-updates group across 1
directory with 22 updates
add a32f94e7a00 Fix test_remote_logging_s3 test when contents written to
s3 is zero (#58492)
add 829bc6e2fda i18n(Ko): add missing translations(Nov 19) (#58475)
add 97fa483fa29 Add ability to disable apiserver from the helm chart using
apiServer.enabled (#56493)
add 291ef943e39 feat: Display active DAG runs count in header with
auto-refresh (#58332)
add b40ecc9c9ba Fix nit in release docs fpr python client (#58500)
add 302bb4f7b9d Fix operator extra links not appearing on failed tasks
(#58227)
add 1cf1b843217 Update release python client docs (#58507)
add bb732ebcf4a Move Airflow Config Parser to shared library (#57744)
add e9d41dc60d3 Bump min version of pyyaml to 6.0.3 (#58518)
add 1f6f8688c3e Fix db cleanup logging behavior and docstrings (#58459)
add 468a41aac51 Also remove old -source artifacts from SVN release folder
(#58481)
add bd05901c815 feat: add async discord notifier (#56911)
add 38c47576624 More update to the python client release command (#58513)
add a35c737bef1 Adding CODEOWNERS for shared libraries (#58517)
add 46e2bdca6d2 AIP-67 multi-team: Introduce multi-team task scheduling
(#57837)
add 2d0e2ebfa31 Bump the ui-plugin-template-package-updates group across 1
directory with 22 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 (3c6d016b537)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/dev/react-plugin-tools/react_plugin_template/ui-plugin-template-package-updates-5e415639ae
(2d0e2ebfa31)
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 | 3 +
airflow-core/pyproject.toml | 5 +
airflow-core/src/airflow/_shared/configuration | 1 +
.../api_fastapi/core_api/datamodels/dags.py | 1 +
.../core_api/openapi/v2-rest-api-generated.yaml | 4 +
.../api_fastapi/core_api/routes/public/dags.py | 16 +-
airflow-core/src/airflow/configuration.py | 1680 +---------
airflow-core/src/airflow/exceptions.py | 7 +-
.../src/airflow/jobs/scheduler_job_runner.py | 169 +-
.../airflow/ui/openapi-gen/requests/schemas.gen.ts | 5 +
.../airflow/ui/openapi-gen/requests/types.gen.ts | 1 +
.../src/airflow/ui/public/i18n/locales/ko/dag.json | 12 +
airflow-core/src/airflow/ui/src/pages/Dag/Dag.tsx | 23 +-
.../src/airflow/ui/src/pages/Dag/Header.tsx | 7 +
airflow-core/src/airflow/utils/db_cleanup.py | 23 +-
.../core_api/routes/public/test_dags.py | 59 +
airflow-core/tests/unit/core/test_configuration.py | 1 +
airflow-core/tests/unit/jobs/test_scheduler_job.py | 519 +++
airflow-core/tests/unit/models/test_xcom.py | 3 +
.../src/airflowctl/api/datamodels/generated.py | 1 +
.../remote_log_tests/test_remote_logging.py | 5 +-
.../api-server/api-server-deployment.yaml | 2 +-
chart/templates/api-server/api-server-ingress.yaml | 2 +-
.../api-server/api-server-networkpolicy.yaml | 2 +-
.../api-server/api-server-poddisruptionbudget.yaml | 2 +-
chart/templates/api-server/api-server-service.yaml | 2 +-
.../api-server/api-server-serviceaccount.yaml | 2 +-
chart/templates/secrets/api-secret-key-secret.yaml | 2 +-
chart/templates/secrets/jwt-secret.yaml | 2 +-
chart/values.schema.json | 5 +
chart/values.yaml | 2 +-
clients/python/version.txt | 2 +-
dev/README_RELEASE_PYTHON_CLIENT.md | 77 +-
.../commands/release_management_commands.py | 46 +-
dev/breeze/uv.lock | 1872 +++++------
.../react_plugin_template/pnpm-lock.yaml | 16 +-
devel-common/src/tests_common/test_utils/config.py | 59 +-
.../helm_tests/airflow_core/test_api_server.py | 44 +
.../beam/tests/unit/apache/beam/hooks/test_beam.py | 8 +-
providers/discord/pyproject.toml | 2 +-
.../providers/discord/hooks/discord_webhook.py | 196 +-
.../providers/discord/notifications/discord.py | 37 +-
.../providers/discord/operators/discord_webhook.py | 7 +-
.../airflow/providers/discord}/version_compat.py | 1 +
.../unit/discord/hooks/test_discord_webhook.py | 167 +-
.../unit/discord/notifications/test_discord.py | 19 +-
pyproject.toml | 3 +
shared/{timezones => configuration}/pyproject.toml | 6 +-
.../src/airflow_shared/configuration}/__init__.py | 13 +-
.../src/airflow_shared/configuration/exceptions.py | 7 +-
.../src/airflow_shared/configuration/parser.py | 3476 ++++++++------------
.../configuration/tests/configuration}/__init__.py | 0
.../tests/configuration/test_parser.py | 776 +++++
.../tests/conftest.py | 1 +
task-sdk/pyproject.toml | 6 +
task-sdk/src/airflow/sdk/_shared/configuration | 1 +
task-sdk/src/airflow/sdk/api/client.py | 2 +-
task-sdk/src/airflow/sdk/bases/operator.py | 2 +-
task-sdk/src/airflow/sdk/bases/sensor.py | 2 +-
task-sdk/src/airflow/sdk/configuration.py | 257 ++
.../sdk/definitions/_internal/abstractoperator.py | 2 +-
.../src/airflow/sdk/definitions/asset/__init__.py | 2 +-
task-sdk/src/airflow/sdk/definitions/dag.py | 28 +-
.../airflow/sdk/definitions/operator_resources.py | 2 +-
task-sdk/src/airflow/sdk/definitions/param.py | 2 +-
task-sdk/src/airflow/sdk/execution_time/cache.py | 2 +-
.../airflow/sdk/execution_time/execute_workload.py | 2 +-
.../airflow/sdk/execution_time/sentry/__init__.py | 2 +-
.../sdk/execution_time/sentry/configured.py | 2 +-
.../src/airflow/sdk/execution_time/supervisor.py | 7 +-
.../src/airflow/sdk/execution_time/task_runner.py | 16 +-
task-sdk/src/airflow/sdk/execution_time/xcom.py | 2 +-
task-sdk/src/airflow/sdk/log.py | 10 +-
.../tests/task_sdk/definitions/test_connection.py | 2 +-
.../tests/task_sdk/definitions/test_variables.py | 2 +-
task-sdk/tests/task_sdk/docs/test_public_api.py | 1 +
.../task_sdk/execution_time/test_supervisor.py | 79 +-
.../task_sdk/execution_time/test_task_runner.py | 92 +-
78 files changed, 5029 insertions(+), 4899 deletions(-)
create mode 120000 airflow-core/src/airflow/_shared/configuration
copy providers/{apache/druid/src/airflow/providers/apache/druid =>
discord/src/airflow/providers/discord}/version_compat.py (99%)
copy shared/{timezones => configuration}/pyproject.toml (89%)
copy shared/{logging/src/airflow_shared/logging =>
configuration/src/airflow_shared/configuration}/__init__.py (79%)
copy airflow-core/src/airflow/version.py =>
shared/configuration/src/airflow_shared/configuration/exceptions.py (85%)
copy airflow-core/src/airflow/configuration.py =>
shared/configuration/src/airflow_shared/configuration/parser.py (62%)
copy {airflow-core/src/airflow/api/common =>
shared/configuration/tests/configuration}/__init__.py (100%)
create mode 100644 shared/configuration/tests/configuration/test_parser.py
copy shared/{secrets_masker => configuration}/tests/conftest.py (99%)
create mode 120000 task-sdk/src/airflow/sdk/_shared/configuration
create mode 100644 task-sdk/src/airflow/sdk/configuration.py