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

potiuk pushed a change to branch build-common-io-from-sources
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard cea7ce2b8b Add feature to build "chicken-egg" packages from sources
     add 7b37a785d0 Run triggers inline with dag test (#34642)
     add 7f8ba9deed Move check provider yaml file to breeze shell (#35879)
     add 44d953154a Move breeze command line pre-commit check to breeze shell 
(#35881)
     add f790146a69 Convert mypy pre-commits to use breeze shell to run them 
(#35877)
     add 9a1dceb031 improved visibility of tasks in ActionModal for 
taskInstance (#35810)
     add 623f989329 Stop converting state to TaskInstanceState when it's None 
(#35891)
     add 07e40bd601 Move pre-commit for local-file-mounts to breeze shell 
(#35878)
     add ae61a790a4 Treat image verification as secondary purpose of the jobs 
(#35895)
     add 0f5db49ec4 Stop getting message from event after migrating 
`EmrContainerTrigger` to `AwsBaseWaiterTrigger` (#35892)
     add 99b4eb769d Use ExitStack to manage mutation of secrets_backend_list in 
dag.test (#34620)
     add 3b3ebafdce Implement `is_authorized_variable` in AWS auth manager 
(#35804)
     add 8a67e15f1f Finish refactoring of breeze-dependent pre-commits to use 
breeze shell (#35830)
     add 026b081946 Add  term to spelling wordlist (#35904)
     add 16585b178f Update redshift_sql.rst to reference Redshift connection 
(#35902)
     add 930f165db1 Relax mandatory requirement for start_date when 
schedule=None (#35356)
     add f5259376b8 Use fail instead of change_state(failed) in K8S executor 
(#35900)
     add 491f0134ac Add 2.8.0b1 to issue template (#35912)
     add 6649e7d972 Ignore failed chown during breeze env config (#35905)
     add 4327ec4382 Fix pre-commit for asset compilation missing rich as 
dependency (#35915)
     add 8ce35034ab Fix `breeze exec` to use the right project name (#35921)
     add ad04d2af9e Skip port forwarding also for base ports when running 
pre-commits (#35922)
     add 6bbe63bb37 Make rootless-docker documented first-class-citizen in 
Breeze (#35917)
     add 2375e0d26e Always bring breeze down before using `--use-version` 
(#35916)
     add 5da644db59 Add feature to build "chicken-egg" packages from sources

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   (cea7ce2b8b)
            \
             N -- N -- N   refs/heads/build-common-io-from-sources (5da644db59)

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:
 .dockerignore                                      |   3 +-
 .github/ISSUE_TEMPLATE/airflow_bug_report.yml      |   1 +
 .github/workflows/ci.yml                           |  15 +-
 .pre-commit-config.yaml                            |  20 +-
 BREEZE.rst                                         |  14 +-
 CI.rst                                             |   6 +-
 airflow/models/dag.py                              | 178 +++++++++---------
 airflow/models/dagrun.py                           |   2 +-
 airflow/models/taskinstance.py                     |   3 +
 .../amazon/aws/auth_manager/avp}/__init__.py       |   0
 .../amazon/aws/auth_manager/avp/entities.py}       |  55 +++---
 .../amazon/aws/auth_manager/avp/facade.py          | 126 +++++++++++++
 .../amazon/aws/auth_manager/aws_auth_manager.py    |  14 +-
 .../providers/amazon/aws/auth_manager/constants.py |   4 +-
 airflow/providers/amazon/aws/auth_manager/user.py  |   3 +
 .../aws/hooks/{sts.py => verified_permissions.py}  |  32 ++--
 airflow/providers/amazon/aws/sensors/emr.py        |   2 +-
 airflow/providers/amazon/provider.yaml             |  23 +++
 .../kubernetes/executors/kubernetes_executor.py    |   4 +-
 airflow/www/auth.py                                |  23 ++-
 .../taskInstance/taskActions/ActionModal.tsx       |   2 +-
 ...command.md => 0015-handling-rootless-docker.md} |  31 ++--
 .../airflow_breeze/commands/developer_commands.py  |  36 +++-
 .../commands/release_management_commands.py        |  24 ++-
 .../commands/release_management_commands_config.py |   1 +
 .../src/airflow_breeze/commands/setup_commands.py  |  49 +++++
 .../commands/setup_commands_config.py              |   2 +
 .../src/airflow_breeze/params/shell_params.py      |   4 +-
 dev/breeze/src/airflow_breeze/utils/path_utils.py  |   1 +
 dev/breeze/src/airflow_breeze/utils/run_utils.py   |  24 ---
 dev/breeze/tests/test_shell_params.py              |  16 ++
 .../operators/redshift/redshift_sql.rst            |   4 +-
 .../aws/Amazon-Verified-Permissions.png            | Bin 0 -> 13986 bytes
 docs/spelling_wordlist.txt                         |   1 +
 ...put_release-management_generate-constraints.svg |  58 +++---
 ...put_release-management_generate-constraints.txt |   2 +-
 images/breeze/output_setup.svg                     |  24 ++-
 images/breeze/output_setup.txt                     |   2 +-
 .../output_setup_check-all-params-in-groups.svg    |   6 +-
 .../output_setup_check-all-params-in-groups.txt    |   2 +-
 .../output_setup_regenerate-command-images.svg     |  32 ++--
 .../output_setup_regenerate-command-images.txt     |   2 +-
 .../output_setup_synchronize-local-mounts.svg      |  99 ++++++++++
 .../output_setup_synchronize-local-mounts.txt      |   1 +
 scripts/ci/pre_commit/common_precommit_utils.py    |  14 --
 .../ci/pre_commit/pre_commit_breeze_cmd_line.py    |  82 ++++-----
 .../pre_commit_check_provider_yaml_files.py        |  63 ++-----
 .../ci/pre_commit/pre_commit_compile_www_assets.py |  21 ++-
 .../pre_commit_compile_www_assets_dev.py           |   5 +
 .../ci/pre_commit/pre_commit_local_yml_mounts.py   |  46 +----
 .../pre_commit/pre_commit_migration_reference.py   |  53 ++----
 scripts/ci/pre_commit/pre_commit_mypy.py           | 101 ++++------
 scripts/in_container/_in_container_utils.sh        |   7 +
 scripts/in_container/configure_environment.sh      |   4 +-
 scripts/in_container/run_fix_ownership.py          |   2 +-
 scripts/in_container/run_migration_reference.py    |   8 +
 scripts/in_container/run_mypy.sh                   |   3 +
 scripts/in_container/run_prepare_er_diagram.py     |   3 +-
 tests/cli/commands/test_dag_command.py             |  81 ++++----
 tests/models/test_dag.py                           |  52 ++++--
 tests/models/test_mappedoperator.py                |   2 +-
 .../amazon/aws/auth_manager/avp}/__init__.py       |   0
 .../amazon/aws/auth_manager/avp/test_entities.py   |  12 +-
 .../amazon/aws/auth_manager/avp/test_facade.py     | 203 +++++++++++++++++++++
 .../aws/auth_manager/test_aws_auth_manager.py      |  38 +++-
 .../amazon/aws/auth_manager/test_constants.py      |  12 +-
 .../providers/amazon/aws/auth_manager/test_user.py |   3 +
 .../amazon/aws/hooks/test_verified_permissions.py  |  11 +-
 tests/providers/google/cloud/sensors/test_gcs.py   |   4 +-
 69 files changed, 1174 insertions(+), 607 deletions(-)
 copy airflow/{api_connexion => 
providers/amazon/aws/auth_manager/avp}/__init__.py (100%)
 copy airflow/{auth/managers/utils/fab.py => 
providers/amazon/aws/auth_manager/avp/entities.py} (53%)
 create mode 100644 airflow/providers/amazon/aws/auth_manager/avp/facade.py
 copy airflow/providers/amazon/aws/hooks/{sts.py => verified_permissions.py} 
(61%)
 copy 
dev/breeze/doc/adr/{0014-fix-root-ownership-after-exiting-docker-command.md => 
0015-handling-rootless-docker.md} (52%)
 create mode 100644 docs/integration-logos/aws/Amazon-Verified-Permissions.png
 create mode 100644 images/breeze/output_setup_synchronize-local-mounts.svg
 create mode 100644 images/breeze/output_setup_synchronize-local-mounts.txt
 copy {airflow/api_connexion => 
tests/providers/amazon/aws/auth_manager/avp}/__init__.py (100%)
 copy airflow/api_connexion/schemas/version_schema.py => 
tests/providers/amazon/aws/auth_manager/avp/test_entities.py (72%)
 create mode 100644 tests/providers/amazon/aws/auth_manager/avp/test_facade.py
 copy airflow/api_connexion/endpoints/request_dict.py => 
tests/providers/amazon/aws/hooks/test_verified_permissions.py (77%)

Reply via email to