You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2022/04/22 16:16:25 UTC

[airflow] branch move-package-preparation-to-new-breeze updated (698f5ff84b -> 33cd5dc83e)

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

potiuk pushed a change to branch move-package-preparation-to-new-breeze
in repository https://gitbox.apache.org/repos/asf/airflow.git


    omit 698f5ff84b Use new Breese for building, pulling and verifying the images.
     add 1e8ac47589 Task actions UI for individual mapped instances (#23127)
     add 91b82763c5 Fix TI failure handling when task cannot be unmapped. (#23119)
     add e57c7aeda8 Fix timezone display for logs on UI (#23075)
     add c7399c7190 KubernetesHook should try incluster first when not otherwise configured (#23126)
     add a7bccaacb9 Change `[api] auth_backends` to be comma separated (#23138)
     add c6b27e309c Fix error handling in Grid view (#23152)
     add 27ded333a9 Add isLoading to ConfirmDialog (#23155)
     add 9efcd64041 Fix false warnings re non-JSON extra params (#23157)
     add e076e1c02f Add support for multiple codespace configuration (#23158)
     add 28dc17c766 recipes documentation: update airflow version (#23148)
     add 3b2ef88f87 Initialize finished counter at zero (#23080)
     add 33cd5dc83e Use new Breese for building, pulling and verifying the images.

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   (698f5ff84b)
            \
             N -- N -- N   refs/heads/move-package-preparation-to-new-breeze (33cd5dc83e)

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:
 .devcontainer/devcontainer.json                    |   5 +-
 .devcontainer/{ => mysql}/devcontainer.json        |   6 +-
 .devcontainer/{ => postgres}/devcontainer.json     |   2 +-
 .github/workflows/build-images.yml                 |   4 +-
 .github/workflows/ci.yml                           |  28 ++--
 airflow/api/__init__.py                            |   4 +-
 airflow/config_templates/config.yml                |   4 +-
 airflow/config_templates/default_airflow.cfg       |   4 +-
 airflow/configuration.py                           |   2 +-
 airflow/dag_processing/processor.py                |   2 +-
 airflow/models/connection.py                       |   2 +-
 airflow/models/taskfail.py                         |  14 +-
 airflow/models/taskinstance.py                     | 168 +++++++--------------
 .../cncf/kubernetes/.latest-doc-only-change.txt    |   2 +-
 .../providers/cncf/kubernetes/hooks/kubernetes.py  |  22 ++-
 airflow/www/extensions/init_security.py            |   2 +-
 airflow/www/static/js/dag.js                       |  18 +--
 airflow/www/static/js/datetime_utils.js            |   2 +-
 airflow/www/static/js/ti_log.js                    |   5 +-
 airflow/www/static/js/tree/Table.jsx               |  44 +++++-
 airflow/www/static/js/tree/api/useClearRun.js      |  23 +--
 airflow/www/static/js/tree/api/useClearTask.js     |  32 ++--
 .../www/static/js/tree/api/useConfirmMarkTask.js   |  21 ++-
 airflow/www/static/js/tree/api/useMarkFailedRun.js |   3 +
 .../www/static/js/tree/api/useMarkFailedTask.js    |  14 +-
 .../www/static/js/tree/api/useMarkSuccessRun.js    |   3 +
 .../www/static/js/tree/api/useMarkSuccessTask.js   |  15 +-
 airflow/www/static/js/tree/api/useQueueRun.js      |   3 +
 airflow/www/static/js/tree/api/useRunTask.js       |  62 ++++----
 airflow/www/static/js/tree/api/useTreeData.js      |  15 +-
 .../js/tree/details/content/ConfirmDialog.jsx      |   4 +-
 .../js/tree/details/content/dagRun/ClearRun.jsx    |  21 +--
 .../tree/details/content/dagRun/MarkFailedRun.jsx  |  11 +-
 .../tree/details/content/dagRun/MarkSuccessRun.jsx |  21 +--
 .../js/tree/details/content/dagRun/QueueRun.jsx    |  21 +--
 .../content/taskInstance/MappedInstances.jsx       |   3 +-
 .../js/tree/details/content/taskInstance/index.jsx |  22 ++-
 .../content/taskInstance/taskActions/Clear.jsx     |  56 ++++---
 .../taskInstance/taskActions/MarkFailed.jsx        |  48 +++---
 .../taskInstance/taskActions/MarkSuccess.jsx       |  53 +++----
 .../content/taskInstance/taskActions/Run.jsx       |   2 +
 .../static/js/tree/useErrorToast.js}               |  48 +++---
 airflow/www/templates/airflow/dag.html             |   3 +
 airflow/www/utils.py                               |   1 +
 airflow/www/views.py                               |  24 +--
 breeze-legacy                                      |   1 -
 dev/breeze/src/airflow_breeze/breeze.py            |   4 +-
 dev/breeze/src/airflow_breeze/global_constants.py  |   1 -
 .../src/airflow_breeze/shell/shell_params.py       |   2 +-
 .../airflow_breeze/utils/docker_command_utils.py   |   1 -
 dev/provider_packages/prepare_provider_packages.py |   6 +-
 docker-context-files/README.md                     |  32 ----
 docs/apache-airflow/security/api.rst               |   6 +-
 docs/docker-stack/recipes.rst                      |   2 +-
 scripts/ci/docker-compose/_docker.env              |   2 +-
 scripts/ci/docker-compose/base.yml                 |   2 +-
 scripts/ci/docker-compose/devcontainer.env         |   1 -
 scripts/ci/libraries/_initialization.sh            |   6 -
 .../ci_install_and_test_provider_packages.sh       |   3 +
 scripts/in_container/_in_container_utils.sh        |   2 +-
 .../run_install_and_test_provider_packages.sh      |  18 ++-
 tests/api/common/test_delete_dag.py                |  10 +-
 tests/api_connexion/test_auth.py                   |   2 +-
 tests/callbacks/test_callback_requests.py          |   2 +-
 tests/core/test_configuration.py                   |   2 +-
 tests/jobs/test_scheduler_job.py                   |   5 +-
 tests/models/test_taskinstance.py                  |   4 +-
 .../cncf/kubernetes/hooks/test_kubernetes.py       |  33 +++-
 68 files changed, 496 insertions(+), 520 deletions(-)
 copy .devcontainer/{ => mysql}/devcontainer.json (78%)
 copy .devcontainer/{ => postgres}/devcontainer.json (94%)
 copy airflow/{ui/src/components/SectionNavBtn.tsx => www/static/js/tree/useErrorToast.js} (52%)
 delete mode 100644 docker-context-files/README.md