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

potiuk pushed a change to branch python-3-11
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard f7ad57cfdc Attempt to add Python 3.11 support
     add 17e5e7b3b0 One of the EKS Operator unit tests was over-indented 
(#31367)
     add 30e93ffebb Making webserver config customisable (#29926)
     add ae3a61775a Add D400 pydocstyle check - core Airflow only (#31297)
     add cb59b31975 Attempt to add Python 3.11 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   (f7ad57cfdc)
            \
             N -- N -- N   refs/heads/python-3-11 (cb59b31975)

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:
 airflow/api/auth/backend/kerberos_auth.py          |  5 +-
 airflow/api/client/api_client.py                   |  1 +
 airflow/cli/commands/dag_command.py                |  4 +-
 airflow/cli/commands/internal_api_command.py       |  4 +-
 airflow/cli/commands/task_command.py               |  1 +
 airflow/cli/commands/triggerer_command.py          |  2 +-
 airflow/config_templates/config.yml                |  7 ++
 airflow/config_templates/default_airflow.cfg       |  3 +
 airflow/configuration.py                           |  9 +-
 airflow/dag_processing/manager.py                  | 10 +--
 airflow/exceptions.py                              |  2 +-
 airflow/executors/base_executor.py                 |  2 +-
 airflow/executors/celery_kubernetes_executor.py    |  2 +-
 airflow/executors/kubernetes_executor.py           |  4 +-
 airflow/executors/local_executor.py                |  5 +-
 airflow/executors/local_kubernetes_executor.py     |  2 +-
 airflow/jobs/job.py                                |  6 +-
 airflow/jobs/local_task_job_runner.py              |  2 +-
 airflow/jobs/scheduler_job_runner.py               |  8 +-
 airflow/jobs/triggerer_job_runner.py               |  4 +-
 airflow/kubernetes/pod_generator.py                |  4 +-
 airflow/metrics/validators.py                      |  2 +-
 airflow/models/__init__.py                         |  2 +-
 airflow/models/abstractoperator.py                 | 13 +--
 airflow/models/base.py                             |  2 +-
 airflow/models/baseoperator.py                     | 36 +++++---
 airflow/models/connection.py                       |  6 +-
 airflow/models/crypto.py                           |  6 +-
 airflow/models/dag.py                              | 55 ++++++------
 airflow/models/dagbag.py                           | 12 +--
 airflow/models/dagrun.py                           | 22 ++---
 airflow/models/log.py                              |  2 +-
 airflow/models/mappedoperator.py                   |  2 +-
 airflow/models/param.py                            |  8 +-
 airflow/models/pool.py                             |  6 +-
 airflow/models/renderedtifields.py                 |  6 +-
 airflow/models/serialized_dag.py                   | 10 +--
 airflow/models/skipmixin.py                        |  2 +-
 airflow/models/taskfail.py                         |  2 +-
 airflow/models/taskinstance.py                     | 58 +++++++------
 airflow/models/taskinstancekey.py                  |  6 +-
 airflow/models/taskmixin.py                        | 17 ++--
 airflow/models/trigger.py                          |  4 +-
 airflow/models/variable.py                         | 12 +--
 airflow/models/xcom.py                             | 46 +++++++---
 airflow/models/xcom_arg.py                         |  8 +-
 airflow/notifications/basenotifier.py              |  8 +-
 airflow/operators/datetime.py                      |  2 +-
 airflow/operators/python.py                        |  2 +-
 airflow/operators/subdag.py                        |  1 +
 airflow/operators/weekday.py                       |  3 +-
 airflow/policies.py                                |  5 +-
 airflow/secrets/environment_variables.py           |  2 +
 airflow/security/utils.py                          |  2 +-
 airflow/serialization/helpers.py                   |  2 +-
 airflow/serialization/pydantic/dag_run.py          |  2 +-
 airflow/serialization/pydantic/dataset.py          |  8 +-
 airflow/serialization/pydantic/job.py              |  4 +-
 airflow/serialization/pydantic/taskinstance.py     |  4 +-
 airflow/serialization/serde.py                     |  4 +-
 airflow/serialization/serializers/kubernetes.py    |  2 +-
 airflow/timetables/simple.py                       |  2 +-
 airflow/utils/airflow_flask_app.py                 |  2 +-
 airflow/utils/cli.py                               | 26 +++---
 airflow/utils/cli_action_loggers.py                |  6 +-
 airflow/utils/cli_app_builder.py                   |  2 +-
 airflow/utils/code_utils.py                        |  2 +-
 airflow/utils/compression.py                       |  2 +-
 airflow/utils/dag_cycle_tester.py                  |  2 +-
 airflow/utils/dag_parsing_context.py               |  2 +-
 airflow/utils/dates.py                             |  6 +-
 airflow/utils/db.py                                | 13 +--
 airflow/utils/db_cleanup.py                        |  2 +-
 airflow/utils/decorators.py                        |  2 +-
 airflow/utils/dot_renderer.py                      |  4 +-
 airflow/utils/event_scheduler.py                   |  4 +-
 airflow/utils/file.py                              | 19 +++--
 airflow/utils/hashlib_wrapper.py                   |  1 +
 airflow/utils/helpers.py                           | 21 ++---
 airflow/utils/json.py                              |  2 +-
 airflow/utils/jwt_signer.py                        |  1 +
 airflow/utils/log/file_task_handler.py             |  2 +-
 airflow/utils/log/json_formatter.py                |  2 +-
 airflow/utils/log/log_reader.py                    |  6 +-
 airflow/utils/log/logging_mixin.py                 | 17 ++--
 airflow/utils/log/secrets_masker.py                |  6 +-
 .../log/task_handler_with_custom_formatter.py      |  4 +-
 airflow/utils/log/timezone_aware.py                |  5 +-
 airflow/utils/operator_resources.py                |  2 +-
 airflow/utils/process_utils.py                     |  3 +-
 airflow/utils/python_virtualenv.py                 |  2 +-
 airflow/utils/retries.py                           |  2 +-
 airflow/utils/scheduler_health.py                  |  2 +-
 airflow/utils/serve_logs.py                        |  4 +-
 airflow/utils/sqlalchemy.py                        | 12 ++-
 airflow/utils/strings.py                           |  4 +-
 airflow/utils/task_group.py                        | 12 +--
 airflow/utils/timezone.py                          | 10 +--
 airflow/utils/types.py                             |  2 +-
 airflow/utils/weekday.py                           | 10 +--
 airflow/utils/weight_rule.py                       |  2 +-
 airflow/utils/yaml.py                              |  4 +-
 airflow/www/api/experimental/endpoints.py          | 18 ++--
 airflow/www/app.py                                 |  6 +-
 airflow/www/blueprints.py                          |  2 +-
 airflow/www/decorators.py                          |  6 +-
 airflow/www/extensions/init_appbuilder.py          | 39 ++++++---
 airflow/www/extensions/init_appbuilder_links.py    |  2 +-
 airflow/www/extensions/init_jinja_globals.py       |  2 +-
 airflow/www/extensions/init_security.py            |  2 +-
 airflow/www/extensions/init_session.py             |  2 +-
 airflow/www/extensions/init_views.py               | 16 ++--
 airflow/www/extensions/init_wsgi_middlewares.py    |  2 +-
 airflow/www/fab_security/manager.py                | 99 +++++++++++-----------
 airflow/www/fab_security/sqla/manager.py           | 24 +++---
 airflow/www/forms.py                               |  8 +-
 airflow/www/security.py                            | 21 ++---
 airflow/www/session.py                             |  6 +-
 airflow/www/utils.py                               | 32 +++----
 airflow/www/validators.py                          |  2 +-
 airflow/www/views.py                               | 98 ++++++++++-----------
 airflow/www/widgets.py                             | 12 +--
 pyproject.toml                                     |  1 +
 setup.py                                           | 10 +--
 tests/providers/amazon/aws/operators/test_eks.py   | 52 ++++++------
 tests/www/views/test_views.py                      | 12 +++
 126 files changed, 647 insertions(+), 544 deletions(-)

Reply via email to