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

mobuchowski pushed a change to branch load-plugins-from-providers
in repository https://gitbox.apache.org/repos/asf/airflow.git


    omit a126e8f10d plugins: load plugins from providers
     add 34edb6508d Add protection against accidental Providers Manager 
initialization (#32694)
     add b9c84eb663 add deferrable mode to rds start & stop DB (#32437)
     add a2eaca8977 Allow setup without teardown (#32679)
     add 9d7c224681 D205 Support - Models (#32575)
     add 94122d1a6f Fix chart named template comments (#32681)
     add bbd290266c Fix bug in prune_dict where empty dict and list would be 
removed even in strict mode (#32573)
     add 7092cfdbbf Fix bad delete logic for dagruns (#32684)
     add 7123dc162b Remove click upper bound (#32634)
     add faa8f543d5 Store config description in Airflow configuration object 
(#32669)
     add dff360e561 build(pre-commit): add list of supported deferrable 
operators to doc (#32514)
     add eea53a22c9 Add Eventbridge PutEvents operator and hook (#32498)
     add 8b5da2134d Update Dag trigger API and command docs (#32696)
     add 27b5f696a4 Add Deferrable mode for EMR Serverless Start Job Operator 
(#32534)
     add 848c69a194 Refresh GKE OAuth2 tokens (#32673)
     new b78c4ceca8 plugins: load plugins from providers

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   (a126e8f10d)
            \
             N -- N -- N   refs/heads/load-plugins-from-providers (b78c4ceca8)

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.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/mergeable.yml                              |    5 -
 .gitignore                                         |    2 -
 .pre-commit-config.yaml                            |    8 -
 .rat-excludes                                      |    1 -
 Dockerfile.ci                                      |    1 -
 STATIC_CODE_CHECKS.rst                             |    2 -
 TESTING.rst                                        |   33 +-
 airflow/api_connexion/openapi/v1.yaml              |    5 +-
 airflow/cli/cli_config.py                          |   49 +-
 airflow/cli/commands/celery_command.py             |    7 +-
 airflow/cli/commands/config_command.py             |   11 +-
 airflow/cli/commands/provider_command.py           |   27 +
 airflow/config_templates/config.yml                |   34 +-
 airflow/config_templates/config.yml.schema.json    |    5 +
 airflow/config_templates/default_airflow.cfg       | 1513 +-------------------
 airflow/config_templates/default_test.cfg          |   68 -
 airflow/config_templates/unit_tests.cfg            |  102 ++
 airflow/configuration.py                           |  703 +++++----
 airflow/models/abstractoperator.py                 |    7 +-
 airflow/models/baseoperator.py                     |   73 +-
 airflow/models/connection.py                       |   23 +-
 airflow/models/crypto.py                           |    3 +-
 airflow/models/dag.py                              |  128 +-
 airflow/models/dagbag.py                           |   22 +-
 airflow/models/dagpickle.py                        |   11 +-
 airflow/models/dagrun.py                           |    8 +-
 airflow/models/errors.py                           |    5 +-
 airflow/models/param.py                            |   28 +-
 airflow/models/renderedtifields.py                 |    6 +-
 airflow/models/serialized_dag.py                   |   23 +-
 airflow/models/skipmixin.py                        |    5 +-
 airflow/models/slamiss.py                          |    4 +-
 airflow/models/taskinstance.py                     |   99 +-
 airflow/models/taskmixin.py                        |   16 +-
 airflow/models/taskreschedule.py                   |    3 +-
 airflow/models/trigger.py                          |   29 +-
 airflow/models/variable.py                         |   10 +-
 airflow/models/xcom.py                             |    3 +-
 .../amazon/aws/hooks/eventbridge.py}               |   14 +-
 airflow/providers/amazon/aws/operators/emr.py      |   52 +-
 .../providers/amazon/aws/operators/eventbridge.py  |   87 ++
 airflow/providers/amazon/aws/operators/rds.py      |  168 ++-
 airflow/providers/amazon/aws/triggers/emr.py       |   74 +-
 airflow/providers/amazon/aws/triggers/rds.py       |  166 ++-
 airflow/providers/amazon/aws/utils/__init__.py     |   17 +-
 airflow/providers/amazon/aws/utils/rds.py          |    4 +-
 airflow/providers/amazon/provider.yaml             |   12 +
 .../google/cloud/hooks/kubernetes_engine.py        |    4 +
 airflow/providers_manager.py                       |   14 +
 airflow/utils/db.py                                |    4 +-
 airflow/utils/helpers.py                           |    4 +-
 airflow/www/static/js/types/api-generated.ts       |    2 +
 airflow/www/utils.py                               |   12 +-
 chart/templates/_helpers.yaml                      |   22 +-
 dev/breeze/src/airflow_breeze/pre_commit_ids.py    |    1 -
 .../operators/emr/emr_serverless.rst               |    2 +
 .../operators/{sns.rst => eventbridge.rst}         |   32 +-
 .../core-extensions/deferrable-operator-ref.rst}   |   14 +-
 docs/apache-airflow/howto/index.rst                |    1 -
 docs/apache-airflow/howto/set-config.rst           |   27 +-
 docs/apache-airflow/howto/use-test-config.rst      |   36 -
 docs/apache-airflow/redirects.txt                  |    3 +
 docs/conf.py                                       |    4 +-
 ....jinja2 => deferrable_operatos_list.rst.jinja2} |   16 +-
 docs/exts/operators_and_hooks_ref.py               |   64 +-
 .../aws/Amazon-EventBridge_64.png                  |  Bin 0 -> 3221 bytes
 docs/spelling_wordlist.txt                         |    1 +
 images/breeze/output-commands-hash.txt             |    2 +-
 images/breeze/output-commands.svg                  |  108 +-
 images/breeze/output_release-management.svg        |  171 ---
 images/breeze/output_static-checks.svg             |  154 +-
 scripts/ci/pre_commit/pre_commit_yaml_to_cfg.py    |  179 ---
 scripts/docker/entrypoint_ci.sh                    |    1 -
 scripts/in_container/airflow_ci.cfg                |   59 -
 setup.py                                           |   12 +-
 tests/cli/commands/test_celery_command.py          |   12 +-
 tests/cli/commands/test_config_command.py          |  138 +-
 tests/cli/test_cli_parser.py                       |   27 +-
 tests/config_templates/deprecated.cfg              |    9 -
 tests/config_templates/deprecated_cmd.cfg          |   10 -
 tests/config_templates/deprecated_secret.cfg       |   10 -
 tests/config_templates/empty.cfg                   |    9 -
 tests/conftest.py                                  |   15 +-
 tests/core/test_config_templates.py                |   98 --
 tests/core/test_configuration.py                   |  151 +-
 .../cli/commands/test_celery_command.py            |   14 +-
 tests/models/test_dag.py                           |   86 +-
 .../aws/hooks/{test_sts.py => test_eventbridge.py} |   12 +-
 .../amazon/aws/operators/test_emr_serverless.py    |   41 +-
 .../amazon/aws/operators/test_eventbridge.py       |   73 +
 tests/providers/amazon/aws/operators/test_rds.py   |   29 +
 .../{test_batch.py => test_emr_serverless.py}      |   43 +-
 tests/providers/amazon/aws/triggers/test_rds.py    |  201 +--
 tests/providers/amazon/aws/utils/test_utils.py     |   12 -
 .../google/cloud/hooks/test_kubernetes_engine.py   |   46 +
 .../aws/example_eventbridge.py}                    |   35 +-
 tests/utils/test_helpers.py                        |    4 +-
 tests/www/test_utils.py                            |   47 +-
 98 files changed, 2476 insertions(+), 3271 deletions(-)
 delete mode 100644 airflow/config_templates/default_test.cfg
 create mode 100644 airflow/config_templates/unit_tests.cfg
 copy airflow/{api_connexion/types.py => 
providers/amazon/aws/hooks/eventbridge.py} (74%)
 create mode 100644 airflow/providers/amazon/aws/operators/eventbridge.py
 copy docs/apache-airflow-providers-amazon/operators/{sns.rst => 
eventbridge.rst} (51%)
 copy docs/{apache-airflow-providers-amazon/notifications/index.rst => 
apache-airflow-providers/core-extensions/deferrable-operator-ref.rst} (80%)
 delete mode 100644 docs/apache-airflow/howto/use-test-config.rst
 copy docs/exts/{auth_backend.rst.jinja2 => 
deferrable_operatos_list.rst.jinja2} (75%)
 create mode 100644 docs/integration-logos/aws/Amazon-EventBridge_64.png
 delete mode 100644 images/breeze/output_release-management.svg
 delete mode 100755 scripts/ci/pre_commit/pre_commit_yaml_to_cfg.py
 delete mode 100644 scripts/in_container/airflow_ci.cfg
 delete mode 100644 tests/core/test_config_templates.py
 copy tests/providers/amazon/aws/hooks/{test_sts.py => test_eventbridge.py} 
(77%)
 create mode 100644 tests/providers/amazon/aws/operators/test_eventbridge.py
 copy tests/providers/amazon/aws/triggers/{test_batch.py => 
test_emr_serverless.py} (59%)
 copy tests/system/providers/{neo4j/example_neo4j.py => 
amazon/aws/example_eventbridge.py} (67%)

Reply via email to