This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch dependabot/uv/pyasn1-0.6.3
in repository https://gitbox.apache.org/repos/asf/airflow.git


    omit 27ab6fffea4 chore(deps): bump pyasn1 from 0.6.2 to 0.6.3
     add ec8f59fbd4b Add missing deprecation warnings for workers section 
(#63659)
     add 2af60775f3e Added documentation explaining difference deferred vs 
async operators (#63500)
     add 7f9c310fa0a Fix SageMakerNotebookOperator 
domain_id/project_id/domain_region params (#62962)
     add af239855e76 Fix edge executor UI navigation when behind reverse proxy 
with subpath (#63777)
     add 208eab43bc8 Fix registry incremental build processing all providers 
(#63769)
     add 434c1cc9f2b K8s: use joinable manager queues (#63789)
     add cc4a0bc1873 chore(deps): bump pyasn1 from 0.6.2 to 0.6.3 in 
/dev/breeze (#63840)
     add 9bb4c2075cf Add .claude to IntelliJ IDEA excluded directories (#63843)
     add ffa2fb21e01 Fix airflowctl version command prompting for keyring 
credentials (#63772)
     add 1685c9f1e71 Fix misaligned `queued_tasks` types in hybrid executors 
(#63744)
     add e17ca631f8b airflowctl: fix flaky xcom add test by using unique keys 
per test run (#63832)
     add f0018f8b2dc Adding Russian translation for UI (#63450)
     add d273d99262f Update Helm Chart release notes for 1.20.0 (#63759)
     add f386dd99cee Fix missing permissions on docsbuild (#63858)
     add 32f3fcc28ad Do not backfill old DagRun.created_at (#63825)
     add 0f4c354e158 Support partitioned Dags in calendar view (#63631)
     add 8f73a7ec4de Fix workflow permissions for registry build in docs 
publishing (#63864)
     add 7659c4303fc Fix E2E  ConfigurationPage object file naming (#63861)
     add 7c77a6d2480 Stream grid task-instance summaries as NDJSON to eliminate 
N+1 requests (#62369)
     add 0e1832cd3cd Fix make_partial_model (#63716)
     add 914bdbfd4b3 Remove PyOpenSSL from dependencies (#63869)
     add 0ceb66fbab8 chore(deps): bump pyasn1 from 0.6.2 to 0.6.3

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   (27ab6fffea4)
            \
             N -- N -- N   refs/heads/dependabot/uv/pyasn1-0.6.3 (0ceb66fbab8)

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                                 |   1 +
 .github/boring-cyborg.yml                          |   3 +
 .github/workflows/publish-docs-to-s3.yml           |   4 +
 .github/workflows/registry-build.yml               | 111 ++++--
 .../docs/authoring-and-scheduling/deferring.rst    |  11 +
 airflow-core/newsfragments/62369.significant.rst   |  30 ++
 airflow-core/pyproject.toml                        |   2 +-
 .../src/airflow/api_fastapi/core_api/base.py       |   4 +-
 .../api_fastapi/core_api/openapi/_private_ui.yaml  |  86 +++--
 .../api_fastapi/core_api/routes/ui/calendar.py     |   2 +
 .../airflow/api_fastapi/core_api/routes/ui/grid.py | 187 ++++-----
 .../api_fastapi/core_api/services/ui/calendar.py   | 126 +++---
 ..._3_2_0_add_partition_key_to_backfill_dag_run.py |  17 +-
 airflow-core/src/airflow/models/dagrun.py          |   5 +-
 .../src/airflow/ui/openapi-gen/queries/common.ts   |  20 +-
 .../ui/openapi-gen/queries/ensureQueryData.ts      |  40 +-
 .../src/airflow/ui/openapi-gen/queries/prefetch.ts |  40 +-
 .../src/airflow/ui/openapi-gen/queries/queries.ts  |  40 +-
 .../src/airflow/ui/openapi-gen/queries/suspense.ts |  40 +-
 .../ui/openapi-gen/requests/services.gen.ts        |  44 ++-
 .../airflow/ui/openapi-gen/requests/types.gen.ts   |  18 +-
 .../airflow/ui/public/i18n/locales/ru/admin.json   | 189 +++++++++
 .../airflow/ui/public/i18n/locales/ru/assets.json  |  37 ++
 .../airflow/ui/public/i18n/locales/ru/browse.json  |  46 +++
 .../airflow/ui/public/i18n/locales/ru/common.json  | 362 ++++++++++++++++++
 .../ui/public/i18n/locales/ru/components.json      | 176 +++++++++
 .../src/airflow/ui/public/i18n/locales/ru/dag.json | 191 ++++++++++
 .../airflow/ui/public/i18n/locales/ru/dags.json    | 101 +++++
 .../ui/public/i18n/locales/ru/dashboard.json       |  47 +++
 .../airflow/ui/public/i18n/locales/ru/hitl.json    |  39 ++
 .../airflow/ui/public/i18n/locales/ru/tasks.json   |  10 +
 airflow-core/src/airflow/ui/src/i18n/config.ts     |   1 +
 .../airflow/ui/src/layouts/Details/Gantt/Gantt.tsx |  11 +-
 .../airflow/ui/src/layouts/Details/Graph/Graph.tsx |   5 +-
 .../airflow/ui/src/layouts/Details/Grid/Grid.tsx   |   8 +
 .../layouts/Details/Grid/TaskInstancesColumn.tsx   |  15 +-
 .../airflow/ui/src/pages/Dag/Calendar/Calendar.tsx |  29 +-
 .../pages/GroupTaskInstance/GroupTaskInstance.tsx  |   5 +-
 .../MappedTaskInstance/MappedTaskInstance.tsx      |   5 +-
 .../ui/src/pages/TaskInstance/TaskInstance.tsx     |   5 +-
 .../src/airflow/ui/src/queries/useClearRun.ts      |   2 -
 .../ui/src/queries/useClearTaskInstances.ts        |   9 -
 .../ui/src/queries/useDeleteTaskInstance.ts        |   2 -
 .../airflow/ui/src/queries/useGridTISummaries.ts   | 134 +++++--
 .../src/airflow/ui/src/queries/usePatchDagRun.ts   |   2 -
 .../airflow/ui/src/queries/usePatchTaskInstance.ts |  19 +-
 .../{configurationpage.ts => ConfigurationPage.ts} |   0
 .../ui/tests/e2e/specs/configuration.spec.ts       |   2 +-
 .../core_api/routes/ui/test_calendar.py            | 138 +++++++
 .../api_fastapi/core_api/routes/ui/test_grid.py    |  68 +++-
 .../tests/unit/api_fastapi/core_api/test_base.py   |  30 ++
 .../airflowctl_tests/test_airflowctl_commands.py   |  39 +-
 .../src/airflowctl/ctl/commands/version_command.py |  14 +-
 .../ctl/commands/test_version_command.py           |  16 +-
 chart/Chart.yaml                                   | 421 +++++----------------
 chart/RELEASE_NOTES.rst                            | 134 +++++++
 chart/newsfragments/60750.significant.rst          |  57 ---
 chart/newsfragments/61018.significant.rst          |   4 -
 chart/newsfragments/61414.significant.rst          |   1 -
 chart/newsfragments/61820.significant.rst          |   1 -
 chart/newsfragments/61890.significant.rst          |   1 -
 chart/newsfragments/62334.significant.rst          |   5 -
 chart/newsfragments/63019.feature.rst              |   1 -
 chart/newsfragments/63392.significant.rst          |   3 -
 chart/reproducible_build.yaml                      |   4 +-
 chart/templates/NOTES.txt                          | 196 ++++++++--
 chart/values.schema.json                           |  42 +-
 chart/values.yaml                                  |  81 +++-
 dev/README_RELEASE_HELM_CHART.md                   |   3 +-
 dev/breeze/doc/images/output_pr_auto-triage.svg    |  94 ++---
 dev/breeze/doc/images/output_pr_auto-triage.txt    |   2 +-
 .../airflow_breeze/commands/registry_commands.py   |   4 +-
 .../src/airflow_breeze/commands/ui_commands.py     |   1 +
 dev/breeze/uv.lock                                 |   6 +-
 dev/ide_setup/setup_idea.py                        |   2 +
 dev/registry/extract_connections.py                |  18 +-
 dev/registry/merge_registry_data.py                |   4 +-
 dev/registry/pyproject.toml                        |   2 +-
 dev/registry/tests/test_merge_registry_data.py     |  35 ++
 providers/amazon/README.rst                        |   4 +-
 providers/amazon/docs/index.rst                    |   9 +-
 .../docs/operators/sagemakerunifiedstudio.rst      |   8 +
 providers/amazon/pyproject.toml                    |   5 +-
 .../amazon/aws/hooks/sagemaker_unified_studio.py   |  11 +-
 .../aws/operators/sagemaker_unified_studio.py      |  10 +
 .../amazon/aws/example_sagemaker_unified_studio.py |  46 ++-
 .../celery/executors/celery_kubernetes_executor.py |   5 +-
 .../kubernetes/executors/kubernetes_executor.py    |   4 +-
 .../executors/local_kubernetes_executor.py         |   6 +-
 providers/edge3/docs/index.rst                     |   2 +-
 providers/edge3/pyproject.toml                     |   2 +-
 .../edge3/plugins/www/src/layouts/NavTabs.tsx      |   3 +-
 .../edge3/plugins/www/src/pages/JobsPage.tsx       |   2 +-
 .../edge3/plugins/www/src/pages/WorkerPage.tsx     |   4 +-
 providers/google/docs/index.rst                    |   1 -
 providers/google/pyproject.toml                    |   1 -
 registry/AGENTS.md                                 |   5 +-
 registry/README.md                                 |  20 +-
 registry/package.json                              |   2 +-
 registry/pnpm-lock.yaml                            |  41 +-
 registry/pnpm-workspace.yaml                       |   2 +
 shared/secrets_masker/pyproject.toml               |   2 +-
 task-sdk/docs/deferred-vs-async-operators.rst      | 287 ++++++++++++++
 task-sdk/docs/index.rst                            |   8 +
 task-sdk/pyproject.toml                            |   2 +-
 uv.lock                                            |  31 +-
 106 files changed, 3129 insertions(+), 1104 deletions(-)
 create mode 100644 airflow-core/newsfragments/62369.significant.rst
 create mode 100644 
airflow-core/src/airflow/ui/public/i18n/locales/ru/admin.json
 create mode 100644 
airflow-core/src/airflow/ui/public/i18n/locales/ru/assets.json
 create mode 100644 
airflow-core/src/airflow/ui/public/i18n/locales/ru/browse.json
 create mode 100644 
airflow-core/src/airflow/ui/public/i18n/locales/ru/common.json
 create mode 100644 
airflow-core/src/airflow/ui/public/i18n/locales/ru/components.json
 create mode 100644 airflow-core/src/airflow/ui/public/i18n/locales/ru/dag.json
 create mode 100644 airflow-core/src/airflow/ui/public/i18n/locales/ru/dags.json
 create mode 100644 
airflow-core/src/airflow/ui/public/i18n/locales/ru/dashboard.json
 create mode 100644 airflow-core/src/airflow/ui/public/i18n/locales/ru/hitl.json
 create mode 100644 
airflow-core/src/airflow/ui/public/i18n/locales/ru/tasks.json
 rename airflow-core/src/airflow/ui/tests/e2e/pages/{configurationpage.ts => 
ConfigurationPage.ts} (100%)
 delete mode 100644 chart/newsfragments/60750.significant.rst
 delete mode 100644 chart/newsfragments/61018.significant.rst
 delete mode 100644 chart/newsfragments/61414.significant.rst
 delete mode 100644 chart/newsfragments/61820.significant.rst
 delete mode 100644 chart/newsfragments/61890.significant.rst
 delete mode 100644 chart/newsfragments/62334.significant.rst
 delete mode 100644 chart/newsfragments/63019.feature.rst
 delete mode 100644 chart/newsfragments/63392.significant.rst
 create mode 100644 task-sdk/docs/deferred-vs-async-operators.rst

Reply via email to