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

potiuk pushed a change to branch python3.12
in repository https://gitbox.apache.org/repos/asf/airflow.git


    omit 539a733f13 fixup! python 3.12 support
    omit ef428341e5 python 3.12 support
     add 6daceb844c Move CI documentation to inside Breeze docs (#37039)
     add d1e5831cca Update providers metadata 2024-01-27 (#37046)
     add 3b3494c16d Upgrade yarn stack in pre-commits (#37048)
     add d576c72c20 Limit moto to version below 5.0.0 (#37054)
     add 0fce3b6047 Add "airflow users reset-password" command (#37044)
     add 42017f5bd8 Protect against manually updated generated dependencies 
(#37056)
     add 777dfefccc Add SIRCLO to the list of companies using Apache Airflow 
and update Tokopedia GitHub link (#37051)
     add 7bff7a5741 Upgrade base node version in pre-commit (#37050)
     add 4fa8e45c92 prevent celery command autoscale misconfig (#36576)
     add 07fd3646fa Allow committer builds to use scripts/ci, dev and actions 
from the PR (#37057)
     add 7386985c09 python 3.12 support

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   (539a733f13)
            \
             N -- N -- N   refs/heads/python3.12 (7386985c09)

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:
 .gitattributes                                     |   2 -
 .github/workflows/build-images.yml                 | 165 ++---
 .github/workflows/ci.yml                           |  28 -
 .pre-commit-config.yaml                            |   8 +-
 CI.rst                                             | 669 ---------------------
 Dockerfile.ci                                      |   2 +-
 IMAGES.rst                                         | 561 -----------------
 INTHEWILD.md                                       |   3 +-
 README.md                                          |   4 +-
 airflow/providers/amazon/provider.yaml             |   5 +-
 airflow/providers/celery/provider.yaml             |   7 +-
 .../fab/auth_manager/cli_commands/definition.py    |  21 +
 .../fab/auth_manager/cli_commands/user_command.py  |  37 +-
 .../fab/auth_manager/security_manager/override.py  |   7 +-
 airflow/www/static/js/types/api-generated.ts       |   1 +
 contributing-docs/06_development_environments.rst  |   2 +-
 contributing-docs/testing/integration_tests.rst    |   3 +-
 ...UALLY_GENERATING_IMAGE_CACHE_AND_CONSTRAINTS.md |  10 +-
 dev/airflow-github                                 |   3 -
 dev/breeze/doc/01_installation.rst                 |   2 +
 dev/breeze/doc/02_customizing.rst                  |   1 +
 dev/breeze/doc/03_developer_tasks.rst              |   2 +
 dev/breeze/doc/04_troubleshooting.rst              |   2 +
 dev/breeze/doc/05_test_commands.rst                |   2 +
 dev/breeze/doc/06_managing_docker_images.rst       |   4 +-
 dev/breeze/doc/07_breeze_maintenance_tasks.rst     |   2 +
 dev/breeze/doc/08_ci_tasks.rst                     |   5 +-
 dev/breeze/doc/09_release_management_tasks.rst     |   2 +
 dev/breeze/doc/10_advanced_breeze_topics.rst       |   2 +-
 dev/breeze/doc/README.rst                          |   2 +-
 ...-using-contributed-code-when-building-images.md |   2 +-
 dev/breeze/doc/ci/01_ci_environment.md             | 129 ++++
 dev/breeze/doc/ci/02_images.md                     | 585 ++++++++++++++++++
 dev/breeze/doc/ci/03_github_variables.md           |  74 +++
 .../ci/04_selective_checks.md}                     | 161 +++--
 dev/breeze/doc/ci/05_workflows.md                  | 321 ++++++++++
 CI_DIAGRAMS.md => dev/breeze/doc/ci/06_diagrams.md |  19 +-
 dev/breeze/doc/ci/07_debugging.md                  |  63 ++
 dev/breeze/doc/ci/08_running_ci_locally.md         | 141 +++++
 {airflow/operators => dev/breeze/doc/ci}/README.md |  13 +-
 .../breeze/doc}/images/AirflowBreeze_logo.png      | Bin
 .../src/airflow_breeze/commands/ci_commands.py     |   5 +-
 .../airflow_breeze/params/common_build_params.py   |   6 +-
 .../src/airflow_breeze/params/shell_params.py      |   6 +-
 .../src/airflow_breeze/utils/selective_checks.py   |  12 +-
 dev/breeze/tests/test_selective_checks.py          |  49 ++
 docs/docker-stack/build.rst                        |   2 +-
 generated/PYPI_README.md                           |   2 +-
 generated/provider_dependencies.json               |   2 +-
 generated/provider_metadata.json                   | 316 +++++++---
 pyproject.toml                                     | 178 +++---
 .../pre_commit_update_providers_dependencies.py    |  30 +-
 ..._commit_update_providers_dependencies.py.md5sum |   2 +-
 .../in_container/install_airflow_and_providers.py  |   3 +-
 scripts/in_container/run_generate_constraints.py   |  14 +-
 .../auth_manager/cli_commands/test_definition.py   |   2 +-
 .../auth_manager/cli_commands/test_user_command.py |  52 ++
 tests/providers/microsoft/azure/hooks/test_adx.py  |  63 +-
 tests/providers/microsoft/azure/hooks/test_wasb.py |   5 +-
 tests/www/test_security.py                         |   8 +-
 60 files changed, 2167 insertions(+), 1662 deletions(-)
 delete mode 100644 CI.rst
 delete mode 100644 IMAGES.rst
 create mode 100644 dev/breeze/doc/ci/01_ci_environment.md
 create mode 100644 dev/breeze/doc/ci/02_images.md
 create mode 100644 dev/breeze/doc/ci/03_github_variables.md
 rename dev/breeze/{SELECTIVE_CHECKS.md => doc/ci/04_selective_checks.md} (61%)
 create mode 100644 dev/breeze/doc/ci/05_workflows.md
 rename CI_DIAGRAMS.md => dev/breeze/doc/ci/06_diagrams.md (96%)
 create mode 100644 dev/breeze/doc/ci/07_debugging.md
 create mode 100644 dev/breeze/doc/ci/08_running_ci_locally.md
 copy {airflow/operators => dev/breeze/doc/ci}/README.md (50%)
 rename {contributing-docs => dev/breeze/doc}/images/AirflowBreeze_logo.png 
(100%)

Reply via email to