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


    omit ff33d5c6b50 Bump the ui-plugin-template-package-updates group across 1 
directory with 15 updates
     add 86e30f0fcde Update the heading for BigtableCreateTableOperator in docs 
(#61194)
     add 4b34c4206e1 Add 404 handling for non-existent Dag (#61131)
     add 975cfe62cd2 Fix language selector state not updating on change (#61060)
     add 57ecf77a7c0 Bump the core-ui-package-updates group across 1 directory 
with 2 updates (#61221)
     add cac9c0ba514 dag_processing: initialize versioned bundles for callbacks 
(#52040) (#60734)
     add 3b006e6bd12 Bump axios from 1.13.2 to 1.13.3 in 
/providers/edge3/src/airflow/providers/edge3/plugins/www in the 
edge-ui-package-updates group across 1 directory (#61220)
     add 4e5bba54123 Update dagrun_queued_at any time a run is restarted. 
(#60848)
     add d51e0a4fc97 Fix `--skip-assets-compilation` option in Breeze (#61226)
     add 48d8453142c Update Helm Chart release notes for 1.19.0 (#61193)
     add 9d61f742746 Default logical_date to now in airflowctl dagrun trigger 
to match UI behavior (#61047)
     add 4e32b681b7a Add XCom CLI commands to airflowctl (#61021)
     add 0ff8764ec4c add unit tests (#60742)
     add cd3f7d31802 Split Deadline Alerts into core and task-sdk components 
(#61118)
     add 230293c2c91 Implement partition-driven scheduling on a dag (i.e. not 
asset-driven) (#59115)
     add f5e70fc34f1 Fix callback files losing priority during queue resort 
(#61232)
     add 2411babea80 Improve PMC RC verification automation for airflow 
distribution (#60993)
     add c5ed98eba37 Fix string quotes in deadline alerts documentation (#61239)
     add bb04b5d69ab Add Keycloak token documentation to Security/API (#61228)
     add 691fa9ed283 Change endpoint version and search criteria in gen_ai 
system test (#61252)
     add 7790482e7a4 update version for release command (#61260)
     add e9ad9104a02 Add copy button to logs (#61185)
     add 705107621ca fix(ui): use ISO dates in Gantt chart for cross-browser 
consistency (#61250)
     add 3338b488a6d Add filename display to DAG Code tab for easier file 
identification (#60759)
     add 3169b27487b 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   (ff33d5c6b50)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/dev/react-plugin-tools/react_plugin_template/ui-plugin-template-package-updates-a782a09749
 (3169b27487b)

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/workflows/basic-tests.yml                  |  40 +-
 .github/workflows/ci-amd-arm.yml                   |   2 +
 Dockerfile.ci                                      |   4 +-
 airflow-core/docs/howto/deadline-alerts.rst        |   4 +-
 airflow-core/docs/security/api.rst                 |   3 +-
 airflow-core/src/airflow/api/common/mark_tasks.py  |   7 +-
 .../auth/managers/simple/ui/package-lock.json      |  16 +-
 .../auth/managers/simple/ui/package.json           |   4 +-
 .../auth/managers/simple/ui/pnpm-lock.yaml         |  36 +-
 .../api_fastapi/core_api/services/ui/calendar.py   |   7 +
 .../api_fastapi/execution_api/routes/dag_runs.py   |   2 +
 .../src/airflow/cli/commands/dag_command.py        |   9 +-
 .../src/airflow/dag_processing/collection.py       |  60 ++-
 airflow-core/src/airflow/dag_processing/manager.py |  47 +-
 .../src/airflow/dag_processing/processor.py        |  17 +-
 .../src/airflow/jobs/scheduler_job_runner.py       | 118 +++--
 airflow-core/src/airflow/models/backfill.py        |  11 +-
 airflow-core/src/airflow/models/dag.py             |  52 +-
 airflow-core/src/airflow/models/dagrun.py          |   4 +-
 airflow-core/src/airflow/models/deadline_alert.py  |  10 +-
 airflow-core/src/airflow/models/taskinstance.py    |   6 +-
 airflow-core/src/airflow/serialization/decoders.py |  28 +
 .../src/airflow/serialization/definitions/dag.py   |  55 +-
 .../airflow/serialization/definitions/deadline.py  | 254 +++++++++
 airflow-core/src/airflow/serialization/encoders.py |  38 ++
 .../airflow/serialization/serialized_objects.py    |  19 +-
 airflow-core/src/airflow/timetables/base.py        |  75 ++-
 airflow-core/src/airflow/timetables/trigger.py     | 209 +++++++-
 .../src/airflow/ui/public/i18n/locales/en/dag.json |   6 +
 .../ui/src/components/renderStructuredLog.tsx      |   2 +-
 .../ParseDagButton.tsx => ui/LazyClipboard.tsx}    |  48 +-
 .../src/airflow/ui/src/components/ui/index.ts      |   1 +
 .../airflow/ui/src/layouts/Details/Gantt/Gantt.tsx |  16 +-
 .../ui/src/layouts/Nav/LanguageSelector.tsx        |  24 +-
 .../src/airflow/ui/src/pages/Dag/Code/Code.tsx     |   9 +
 .../airflow/ui/src/pages/Dag/Code/FileLocation.tsx |  55 ++
 airflow-core/src/airflow/ui/src/pages/Dag/Dag.tsx  |   7 +
 .../src/pages/{Error.tsx => Dag/DagNotFound.tsx}   |  49 +-
 .../ui/src/pages/TaskInstance/Logs/Logs.tsx        |  97 ++--
 .../src/pages/TaskInstance/Logs/TaskLogContent.tsx |   6 +-
 .../src/pages/TaskInstance/Logs/TaskLogHeader.tsx  |  17 +-
 .../tests/unit/cli/commands/test_dag_command.py    | 138 ++---
 .../tests/unit/dag_processing/test_manager.py      |  95 ++++
 .../tests/unit/dag_processing/test_processor.py    |  29 ++
 airflow-core/tests/unit/jobs/test_scheduler_job.py |  63 ++-
 airflow-core/tests/unit/models/test_cleartasks.py  |  10 +
 airflow-core/tests/unit/models/test_dag.py         |  96 +++-
 airflow-core/tests/unit/models/test_dagrun.py      |  12 +-
 .../tests/unit/models/test_deadline_alert.py       |   4 +-
 .../unit/serialization/test_serialized_objects.py  |  22 +-
 .../tests/unit/timetables/test_base_timetable.py   |  44 ++
 .../tests/unit/timetables/test_events_timetable.py |   4 +-
 .../unit/timetables/test_trigger_timetable.py      | 210 ++++++++
 .../unit/timetables/test_workday_timetable.py      |   7 +-
 .../airflowctl_tests/test_airflowctl_commands.py   |   8 +
 airflow-ctl/docs/images/command_hashes.txt         |   2 +-
 airflow-ctl/docs/images/output_main.svg            | 174 ++++---
 airflow-ctl/src/airflowctl/api/client.py           |   7 +
 airflow-ctl/src/airflowctl/api/operations.py       | 127 +++++
 airflow-ctl/src/airflowctl/ctl/cli_config.py       |  12 +-
 .../tests/airflow_ctl/api/test_operations.py       | 337 ++++++++++++
 .../tests/airflow_ctl/ctl/test_cli_config.py       |  48 ++
 chart/Chart.yaml                                   | 400 ++++++++++++--
 chart/RELEASE_NOTES.rst                            | 167 ++++++
 chart/newsfragments/50394.significant.rst          |   1 -
 chart/newsfragments/51792.significant.rst          |  11 -
 chart/newsfragments/54085.significant.rst          |   3 -
 chart/newsfragments/57615.misc.rst                 |   1 -
 chart/newsfragments/58547.significant.rst          |  22 -
 chart/newsfragments/59156.significant.rst          |   7 -
 chart/newsfragments/59730.significant.rst          |   3 -
 chart/newsfragments/60163.significant.rst          |   3 -
 chart/newsfragments/60186.significant.rst          |   3 -
 chart/newsfragments/60238.significant.rst          |   3 -
 chart/newsfragments/60242.improvement.rst          |   1 -
 chart/newsfragments/60354.significant.rst          |   3 -
 chart/newsfragments/60453.significant.rst          |   3 -
 chart/reproducible_build.yaml                      |   4 +-
 dev/README_RELEASE_AIRFLOW.md                      |  53 +-
 dev/breeze/doc/09_release_management_tasks.rst     |  60 ++-
 .../doc/images/output_release-management.svg       |   2 +-
 .../doc/images/output_release-management.txt       |   2 +-
 ...utput_release-management_validate-rc-by-pmc.svg | 142 -----
 ...utput_release-management_validate-rc-by-pmc.txt |   1 -
 .../output_release-management_verify-rc-by-pmc.svg | 186 +++++++
 .../output_release-management_verify-rc-by-pmc.txt |   1 +
 .../output_setup_check-all-params-in-groups.svg    |   4 +-
 .../output_setup_check-all-params-in-groups.txt    |   2 +-
 .../output_setup_regenerate-command-images.svg     |   4 +-
 .../output_setup_regenerate-command-images.txt     |   2 +-
 dev/breeze/doc/images/output_start-airflow.txt     |   2 +-
 .../airflow_breeze/commands/developer_commands.py  |   2 +
 .../commands/release_management_commands_config.py |   8 +-
 .../commands/release_management_validation.py      | 153 +++++-
 .../src/airflow_breeze/commands/setup_commands.py  |   6 +
 .../src/airflow_breeze/params/shell_params.py      |   2 +
 .../utils/airflow_release_validator.py             | 456 ++++++++++------
 dev/breeze/src/airflow_breeze/utils/console.py     |   4 +-
 .../src/airflow_breeze/utils/release_validator.py  | 486 ++++++++++++++++-
 .../src/airflow_breeze/utils/selective_checks.py   |  17 +-
 dev/breeze/tests/conftest.py                       |  26 +
 dev/breeze/tests/test_airflow_release_validator.py | 323 ++++++++++++
 .../test_airflow_release_validator_integration.py  | 332 ++++++++++++
 dev/breeze/tests/test_release_validator.py         | 578 +++++++++++++++++++++
 devel-common/src/tests_common/pytest_plugin.py     |  47 +-
 .../providers/edge3/plugins/www/package.json       |   2 +-
 .../providers/edge3/plugins/www/pnpm-lock.yaml     |  10 +-
 providers/edge3/www-hash.txt                       |   2 +-
 providers/google/docs/operators/cloud/bigtable.rst |   2 +-
 .../gen_ai/example_gen_ai_generative_model.py      |   4 +-
 scripts/docker/entrypoint_ci.sh                    |   4 +-
 task-sdk/src/airflow/sdk/bases/timetable.py        |   2 +
 task-sdk/src/airflow/sdk/definitions/deadline.py   |  33 +-
 .../airflow/sdk/definitions/timetables/trigger.py  |  12 +-
 114 files changed, 5517 insertions(+), 1013 deletions(-)
 copy airflow-core/src/airflow/ui/src/components/{DagActions/ParseDagButton.tsx 
=> ui/LazyClipboard.tsx} (51%)
 create mode 100644 
airflow-core/src/airflow/ui/src/pages/Dag/Code/FileLocation.tsx
 copy airflow-core/src/airflow/ui/src/pages/{Error.tsx => Dag/DagNotFound.tsx} 
(54%)
 create mode 100644 airflow-core/tests/unit/timetables/test_base_timetable.py
 delete mode 100644 chart/newsfragments/50394.significant.rst
 delete mode 100644 chart/newsfragments/51792.significant.rst
 delete mode 100644 chart/newsfragments/54085.significant.rst
 delete mode 100644 chart/newsfragments/57615.misc.rst
 delete mode 100644 chart/newsfragments/58547.significant.rst
 delete mode 100644 chart/newsfragments/59156.significant.rst
 delete mode 100644 chart/newsfragments/59730.significant.rst
 delete mode 100644 chart/newsfragments/60163.significant.rst
 delete mode 100644 chart/newsfragments/60186.significant.rst
 delete mode 100644 chart/newsfragments/60238.significant.rst
 delete mode 100644 chart/newsfragments/60242.improvement.rst
 delete mode 100644 chart/newsfragments/60354.significant.rst
 delete mode 100644 chart/newsfragments/60453.significant.rst
 delete mode 100644 
dev/breeze/doc/images/output_release-management_validate-rc-by-pmc.svg
 delete mode 100644 
dev/breeze/doc/images/output_release-management_validate-rc-by-pmc.txt
 create mode 100644 
dev/breeze/doc/images/output_release-management_verify-rc-by-pmc.svg
 create mode 100644 
dev/breeze/doc/images/output_release-management_verify-rc-by-pmc.txt
 create mode 100644 dev/breeze/tests/test_airflow_release_validator.py
 create mode 100644 
dev/breeze/tests/test_airflow_release_validator_integration.py
 create mode 100644 dev/breeze/tests/test_release_validator.py

Reply via email to