This is an automated email from the ASF dual-hosted git repository.
bugraoz pushed a change to branch
dependabot/pip/airflow-ctl/datamodel-code-generator-http--0.34.0
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard 1468155c819 Bump datamodel-code-generator[http] in /airflow-ctl
add e737b5164d4 Remove configuration embedded note from providers (#56209)
add d5ded852187 update AzureBaseHook to return credentials that supports
get_token method (#52182)
add 959e63eb1ee Revert "update AzureBaseHook to return credentials that
supports get_token me…" (#56223)
add a6506f2b468 Add optional pending dag runs check to auto refresh
(#56014)
add 9d4447d2784 Fix upgrade checks with prek (#56222)
add 1f976d00fcc Fix scheduler crash during 3.0 to 3.1 migration when
retry_delay is None (#56202)
add 180ec473e9c Fix XCom object storage backend path validation (#56244)
add 0931482db14 Temporarily limit fastapi to less than 0.118.0 to fix CI
(#56239)
add 1a3529a5754 chore: safeguard external call in OL sqlparser (#55692)
add 9c62e762dab Add more comprehensive tests on DagCards (#55904)
add 8615b55ae33 Bump version of providers (#56208)
add 406a1a8ea67 Disable Gantt view by default (#56242)
add c6531bb0637 Fix cron expression display for Day-of-Month and
Day-of-Week conflicts (#54644)
add d597ed99712 Add update_mask support for bulk PATCH APIs (#54597)
add cb84438473d Implement filters for Dag run (#55735)
add bfb7ecbb709 fix(api_fastapi): adjust model validator signature of
TriggerDAGRunPostBody (#56025) (#56026)
add 1dc22aacb37 Bump datamodel-code-generator[http] in /airflow-ctl
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 (1468155c819)
\
N -- N -- N
refs/heads/dependabot/pip/airflow-ctl/datamodel-code-generator-http--0.34.0
(1dc22aacb37)
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:
.pre-commit-config.yaml | 2 +-
airflow-core/pyproject.toml | 12 +-
.../src/airflow/api_fastapi/common/parameters.py | 8 +
.../api_fastapi/core_api/datamodels/common.py | 8 +
.../api_fastapi/core_api/datamodels/dag_run.py | 13 +-
.../core_api/openapi/v2-rest-api-generated.yaml | 103 ++++++++++
.../api_fastapi/core_api/routes/public/dag_run.py | 31 ++-
.../api_fastapi/core_api/routes/public/pools.py | 34 +---
.../core_api/routes/public/variables.py | 33 +---
.../api_fastapi/core_api/services/public/common.py | 48 +++++
.../api_fastapi/core_api/services/public/pools.py | 89 +++++++--
.../core_api/services/public/variables.py | 60 +++++-
airflow-core/src/airflow/models/dagrun.py | 8 +-
airflow-core/src/airflow/serialization/schema.json | 2 +-
.../airflow/serialization/serialized_objects.py | 15 +-
airflow-core/src/airflow/timetables/_cron.py | 47 ++++-
.../src/airflow/ui/openapi-gen/queries/common.ts | 9 +-
.../ui/openapi-gen/queries/ensureQueryData.ts | 14 +-
.../src/airflow/ui/openapi-gen/queries/prefetch.ts | 14 +-
.../src/airflow/ui/openapi-gen/queries/queries.ts | 14 +-
.../src/airflow/ui/openapi-gen/queries/suspense.ts | 14 +-
.../airflow/ui/openapi-gen/requests/schemas.gen.ts | 115 +++++++++++
.../ui/openapi-gen/requests/services.gen.ts | 10 +
.../airflow/ui/openapi-gen/requests/types.gen.ts | 26 +++
.../airflow/ui/public/i18n/locales/en/common.json | 4 +-
.../airflow/ui/public/i18n/locales/en/dags.json | 3 +-
.../src/airflow/ui/src/components/DagRunInfo.tsx | 4 +-
.../ui/src/components/NeedsReviewButton.tsx | 7 +-
.../src/airflow/ui/src/constants/filterConfigs.tsx | 84 +++++++-
.../src/airflow/ui/src/constants/searchParams.ts | 4 +
.../ui/src/layouts/Details/DetailsLayout.tsx | 2 +-
.../airflow/ui/src/layouts/Details/Grid/Grid.tsx | 15 +-
airflow-core/src/airflow/ui/src/pages/Dag/Dag.tsx | 2 +-
.../airflow/ui/src/pages/Dag/Overview/Overview.tsx | 8 +-
airflow-core/src/airflow/ui/src/pages/DagRuns.tsx | 215 +++------------------
.../{XCom/XComFilters.tsx => DagRunsFilters.tsx} | 38 ++--
.../airflow/ui/src/pages/DagsList/DagCard.test.tsx | 151 ++++++++++++++-
.../src/airflow/ui/src/pages/DagsList/DagCard.tsx | 16 +-
.../ui/src/pages/Dashboard/Health/Health.tsx | 2 +-
.../HistoricalMetrics/HistoricalMetrics.tsx | 2 +-
.../pages/Dashboard/PoolSummary/PoolSummary.tsx | 2 +-
.../airflow/ui/src/pages/Dashboard/Stats/Stats.tsx | 2 +-
.../ui/src/pages/Task/Overview/Overview.tsx | 11 +-
.../src/airflow/ui/src/queries/useGridRuns.ts | 4 +-
.../src/airflow/ui/src/queries/useGridStructure.ts | 3 +-
airflow-core/src/airflow/ui/src/utils/query.ts | 33 +++-
.../src/airflow/ui/src/utils/useFiltersHandler.ts | 8 +
.../core_api/routes/public/test_connections.py | 48 +++++
.../core_api/routes/public/test_dag_run.py | 57 +++++-
.../core_api/routes/public/test_pools.py | 177 +++++++++++++++--
.../core_api/routes/public/test_variables.py | 107 ++++++++++
.../unit/serialization/test_dag_serialization.py | 68 +++++--
.../test_cron_mixin.py} | 32 ++-
.../src/airflowctl/api/datamodels/generated.py | 33 ++++
.../includes/providers-configurations-ref.rst | 6 -
.../airflow/providers/common/io/xcom/backend.py | 3 +-
.../src/airflow/providers/openlineage/sqlparser.py | 34 ++--
.../tests/unit/openlineage/test_sqlparser.py | 50 +++++
scripts/in_container/run_schema_defaults_check.py | 3 +
59 files changed, 1504 insertions(+), 463 deletions(-)
copy airflow-core/src/airflow/ui/src/pages/{XCom/XComFilters.tsx =>
DagRunsFilters.tsx} (77%)
copy airflow-core/tests/unit/{listeners/lifecycle_listener.py =>
timetables/test_cron_mixin.py} (57%)