You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ta...@apache.org on 2024/04/14 16:13:39 UTC

(airflow) branch improve-warning-system updated (f81e7493ff -> 07fd91785e)

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

taragolis pushed a change to branch improve-warning-system
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard f81e7493ff Change capture warnings output format to the JSON
     add 28bd256829 Resolve internal warnings for TestLocalTaskJob and TestSigTermOnRunner (#38893)
     add d946d7b013 Fix bug in GlueJobOperator where consecutive runs fail when a local script file is used (#38960)
     add 7dee832963 Resolve test pool unit test warnings (#38981)
     add 6de420a0ee Fix 'polling_interval' parameter docs in LivyOperator (#38979)
     add 67ad95ffcf refactor: Added 2 unit test with rows as iterator instead of a list to assure it still works (#38986)
     add 34daebc073 Update providers metadata 2024-04-13 (#38994)
     add f9dcc82fb6 Prepare docs 1st wave (RC2) April 2024 (#38995)
     add 629545bea2 Adds job_id as path param in update permission (#38962)
     add 08f4b923ab Add `sqlalchemy_url` property to `DbApiHook` class (#38871)
     add 2f39cdec3c Fix wrong path in `providers/aws/utils/__init__.py` (#38987)
     add 3eac9778f6 AWS auth manager documentation: manage environment section (#38932)
     add 7b60825046 check whether AUTH_ROLE_PUBLIC is set in check_authentication (#38924)
     add c2f96ff38d Add in Trove classifiers Python 3.12 support (#39004)
     add bf5ab8fc46 Fix bug in LivyOperator when its trigger times out (#38916)
     add 70e17f6e00 Mark `extending/add-build-essential-extend/Dockerfile` docker example test as XFAIL (#38978)
     add 710d28f341 Update testing_packages.rst (#38996)
     add 30f56020f7 Use `model_validate` instead of `parse_obj` for de-serialize Pydantic V2 model (#38999)
     add bdb8f749ee Add `inherit_cache` attribute for `CreateTableAs` custom SA Clause (#38985)
     add aa73bca2b5 Partially enable `B028` rule: no-explicit-stacklevel (#39000)
     add 7fc2169a41 Revert "check whether AUTH_ROLE_PUBLIC is set in check_authentication (#38924)" (#39009)
     add 07fd91785e Change capture warnings output format to the JSON

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   (f81e7493ff)
            \
             N -- N -- N   refs/heads/improve-warning-system (07fd91785e)

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:
 .github/workflows/additional-prod-image-tests.yml  |   2 +-
 airflow/providers/amazon/aws/operators/glue.py     |   8 +-
 airflow/providers/apache/livy/operators/livy.py    |  11 +-
 airflow/providers/apache/livy/triggers/livy.py     |  27 ++-
 airflow/providers/common/sql/hooks/sql.py          |  17 ++
 airflow/providers/common/sql/hooks/sql.pyi         |   3 +
 airflow/providers/databricks/CHANGELOG.rst         |   2 +
 airflow/providers/databricks/hooks/databricks.py   |   6 +-
 .../providers/databricks/operators/databricks.py   |   2 +-
 airflow/providers/yandex/CHANGELOG.rst             |  11 +-
 airflow/providers/yandex/__init__.py               |   2 +-
 airflow/providers/yandex/provider.yaml             |   2 +-
 airflow/serialization/serialized_objects.py        |  12 +-
 airflow/utils/db_cleanup.py                        |   2 +
 clients/python/pyproject.toml                      |   1 +
 contributing-docs/testing/testing_packages.rst     |  41 +++--
 .../test_examples_of_prod_image_building.py        |  28 ++-
 .../auth-manager/manage/index.rst                  | 202 +++++++++++++++++++++
 .../setup/amazon-verified-permissions.rst          |   2 +-
 .../auth-manager/setup/identity-center.rst         |   2 +-
 .../commits.rst                                    |   4 +-
 docs/apache-airflow-providers-yandex/commits.rst   |   7 +-
 docs/apache-airflow-providers-yandex/index.rst     |   2 +-
 generated/provider_metadata.json                   |  26 +++
 pyproject.toml                                     |  34 +++-
 tests/deprecations_ignore.yml                      |  17 --
 tests/jobs/test_local_task_job.py                  | 103 +++++++----
 tests/models/test_pool.py                          |  34 ++--
 tests/providers/amazon/aws/operators/test_glue.py  |  23 +++
 tests/providers/apache/livy/operators/test_livy.py |  37 ++++
 tests/providers/apache/livy/triggers/test_livy.py  |  30 +++
 tests/providers/common/sql/hooks/test_dbapi.py     |  39 +++-
 .../databricks/operators/test_databricks.py        |   2 +-
 tests/serialization/test_serialized_objects.py     |  40 ++--
 .../system/providers/amazon/aws/utils/__init__.py  |   6 +-
 35 files changed, 642 insertions(+), 145 deletions(-)