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

github-bot pushed a change to branch 
dependabot/npm_and_yarn/airflow-core/src/airflow/api_fastapi/auth/managers/simple/ui/core-ui-package-updates-29aa906ac8
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard 08b80da7261 Bump the core-ui-package-updates group across 2 
directories with 36 updates
     add fcb9dae0397 Remove 1.10 to 2 upgrade docs (#49289)
     add 9f5e20db337 Update screenshots in the repo readme to Airflow 3  
(#49293)
     add e4177217f46 Feature/aip 38 add dag warning (#49236)
     add 1b920d96936 add sorting to Pools (#48442)
     add 65c4900bd7b fix(serialized_objects): fix how dataset/asset 
dag_dependency is converted from v1 to v2 (#49281)
     add 4c65dc6bc28 Remove FAB entry from `NOTICE` (#49063)
     add 67c9bd6f4ee Fix failing tests after subdir path bundle URL merged 
(#49294)
     add c576d4217ed Updating docs to reflect latest state of project for AF3 
(#49280)
     add def0508dc93 update _run_inline_trigger to make its logic clearer 
(#49198)
     add 05b32dbe9b3 Return explicit 404 errors for `/helath` and `/api/v1/*` 
(#49284)
     add 00de8b7b8a2 Update next run assets and asset expression types (#49137)
     add bd6b429b8b0 Update FAB changelog (#49069)
     add 75e5c60925e Force query cache to always refetch on opening mark/clear 
modals (#49298)
     add d0d0e3c5db1 Exclude 9.3.0 release of mysql-connector-python (#49300)
     add 95b2715a19b Change default page_size from 100 to 50 (#49243)
     add f7f84fda3cd Fix Pool table modelName (#49303)
     add 2c7b56ee742 Make git connection optional for git dag bundle (#49270)
     add 9d6cca74b4c Quickly bumpv FAB version to 2.0.1 (#49308)
     add f64acc9d079 Bump the core-ui-package-updates group across 2 
directories with 36 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   (08b80da7261)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/airflow-core/src/airflow/api_fastapi/auth/managers/simple/ui/core-ui-package-updates-29aa906ac8
 (f64acc9d079)

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:
 README.md                                          |    8 +-
 airflow-core/NOTICE                                |    7 -
 airflow-core/docs/core-concepts/xcoms.rst          |    2 +-
 airflow-core/docs/howto/index.rst                  |    1 -
 .../docs/howto/upgrading-from-1-10/index.rst       | 1182 --------------------
 .../howto/upgrading-from-1-10/upgrade-check.rst    |  221 ----
 airflow-core/docs/img/backfill.png                 |  Bin 0 -> 481589 bytes
 airflow-core/docs/img/code.png                     |  Bin 504063 -> 829390 
bytes
 airflow-core/docs/img/dags.png                     |  Bin 614240 -> 418739 
bytes
 airflow-core/docs/img/graph.png                    |  Bin 417210 -> 567178 
bytes
 airflow-core/docs/img/grid.png                     |  Bin 334128 -> 628939 
bytes
 airflow-core/docs/img/home.png                     |  Bin 0 -> 465823 bytes
 airflow-core/docs/installation/index.rst           |    6 -
 .../security/secrets/secrets-backend/index.rst     |   29 +
 .../src/airflow/api_fastapi/common/parameters.py   |    2 +-
 .../src/airflow/api_fastapi/core_api/app.py        |   28 +-
 .../core_api/openapi/v1-rest-api-generated.yaml    |   72 +-
 .../api_fastapi/core_api/routes/public/__init__.py |    9 +-
 .../api_fastapi/core_api/routes/ui/assets.py       |    4 +-
 .../src/airflow/config_templates/config.yml        |    4 +-
 airflow-core/src/airflow/models/dag.py             |    8 +-
 .../airflow/serialization/serialized_objects.py    |   18 +-
 .../src/airflow/ui/openapi-gen/queries/common.ts   |   17 -
 .../ui/openapi-gen/queries/ensureQueryData.ts      |   21 -
 .../src/airflow/ui/openapi-gen/queries/prefetch.ts |   21 -
 .../src/airflow/ui/openapi-gen/queries/queries.ts  |   27 -
 .../src/airflow/ui/openapi-gen/queries/suspense.ts |   27 -
 .../ui/openapi-gen/requests/services.gen.ts        |   25 -
 .../airflow/ui/openapi-gen/requests/types.gen.ts   |   21 -
 .../components/AssetExpression/AssetExpression.tsx |    8 +-
 .../ui/src/components/AssetExpression/types.ts     |   13 +-
 .../ui/src/components/Clear/Run/ClearRunDialog.tsx |    1 +
 .../Clear/TaskInstance/ClearTaskInstanceDialog.tsx |    1 +
 .../TaskInstance/MarkTaskInstanceAsDialog.tsx      |    1 +
 .../Context.ts => components/WarningAlert.tsx}     |   23 +-
 .../ui/src/components/ui/DagWarningsModal.tsx      |   70 ++
 .../ui/src/layouts/Details/DetailsLayout.tsx       |   36 +-
 .../ui/src/pages/DagsList/AssetSchedule.tsx        |   47 +-
 .../src/airflow/ui/src/pages/Pools/Pools.tsx       |   81 +-
 .../core_api/routes/public/test_assets.py          |   17 +-
 .../core_api/routes/public/test_dag_versions.py    |   22 +-
 .../core_api/routes/public/test_task_instances.py  |    8 +-
 .../api_fastapi/core_api/routes/test_routes.py     |    7 +-
 .../api_fastapi/core_api/routes/ui/test_assets.py  |    4 +-
 .../unit/serialization/test_dag_serialization.py   |  122 +-
 {airflow-core => providers/fab}/NOTICE             |   15 -
 providers/fab/README.rst                           |    6 +-
 providers/fab/docs/changelog.rst                   |  233 ++--
 providers/fab/provider.yaml                        |    1 +
 providers/fab/pyproject.toml                       |    6 +-
 .../fab/src/airflow/providers/fab/__init__.py      |    2 +-
 .../api_endpoints/test_user_endpoint.py            |    2 +-
 .../git/src/airflow/providers/git/bundles/git.py   |   34 +-
 providers/git/tests/unit/git/bundles/test_git.py   |   60 +-
 providers/mysql/README.rst                         |    2 +-
 providers/mysql/pyproject.toml                     |    3 +-
 .../in_container/run_update_fastapi_api_spec.py    |    6 +-
 57 files changed, 687 insertions(+), 1904 deletions(-)
 delete mode 100644 airflow-core/docs/howto/upgrading-from-1-10/index.rst
 delete mode 100644 
airflow-core/docs/howto/upgrading-from-1-10/upgrade-check.rst
 create mode 100644 airflow-core/docs/img/backfill.png
 create mode 100644 airflow-core/docs/img/home.png
 copy airflow-core/src/airflow/ui/src/{context/timezone/Context.ts => 
components/WarningAlert.tsx} (71%)
 create mode 100644 
airflow-core/src/airflow/ui/src/components/ui/DagWarningsModal.tsx
 copy {airflow-core => providers/fab}/NOTICE (56%)

Reply via email to