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/12 10:38:47 UTC

(airflow) branch improve-warning-system updated (0c26326f04 -> 9087be005d)

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 0c26326f04 Add group based on where warnings raised
 discard 61a9e81f46 Change capture warnings output format to the JSON
     add f87772f52a Fix dag run selection (#38941)
     add 725c568e73 fix(airbyte/hooks): add schema and port to prevent InvalidURL error (#38860)
     add 4a3caa2e35 Amazon Bedrock - System Test Fixes (#38945)
     add 53dcbce745 Give `on_task_instance_failed` access to the error that caused the failure (#38155)
     add 7ab24c7723 Always use the executemany method when inserting rows in DbApiHook as it's way much faster (#38715)
     add 41869d3840 Suppress jaydebeapi.Error when setAutoCommit or getAutoCommit is unsupported by JDBC driver (#38707)
     add b3b90794cb Activate RUF006 rule to detect dangling asyncio tasks (#38947)
     add 3b3ae96753 Quarantine `test_mapped_task_upstream_dep.py::test_step_by_step` (#38956)
     add c4a106e69b Create GKESuspendJobOperator and GKEResumeJobOperator operators (#38677)
     add bb5e9184ba Change capture warnings output format to the JSON
     add 6efde2c056 Add group based on where warnings raised
     add 9087be005d Make plugin works withing xdists workers

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   (0c26326f04)
            \
             N -- N -- N   refs/heads/improve-warning-system (9087be005d)

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:
 .pre-commit-config.yaml                            |   4 +-
 airflow/cli/commands/db_command.py                 |   2 +-
 airflow/cli/commands/kubernetes_command.py         |   2 +-
 airflow/example_dags/plugins/event_listener.py     |   7 +-
 airflow/listeners/spec/taskinstance.py             |   5 +-
 airflow/models/taskinstance.py                     |   3 +-
 airflow/providers/airbyte/hooks/airbyte.py         |   7 +-
 airflow/providers/common/sql/hooks/sql.py          |  52 ++---
 airflow/providers/common/sql/hooks/sql.pyi         |   1 +
 .../google/cloud/operators/kubernetes_engine.py    | 211 +++++++++++++++++++-
 airflow/providers/jdbc/hooks/jdbc.py               |  19 +-
 airflow/providers/odbc/hooks/odbc.py               |   1 +
 airflow/providers/postgres/hooks/postgres.py       |   1 +
 airflow/providers/teradata/hooks/teradata.py       |  48 ++---
 airflow/www/static/js/api/useGridData.ts           |  32 ++-
 airflow/www/static/js/dag/Main.tsx                 |  14 +-
 airflow/www/static/js/dag/details/Header.tsx       |  11 +-
 airflow/www/static/js/dag/useSelection.ts          |   7 -
 airflow/www/templates/airflow/dag.html             |   1 +
 airflow/www/views.py                               |  27 +--
 .../operators/cloud/kubernetes_engine.rst          |  30 +++
 .../administration-and-deployment/listeners.rst    |  42 +++-
 pyproject.toml                                     |   1 +
 .../ci/pre_commit/check_tests_in_right_folders.py  |   1 +
 .../api_connexion => tests/_internals}/__init__.py |   0
 tests/_internals/capture_warnings.py               | 217 ++++++++++++++++++++
 tests/conftest.py                                  | 197 +++---------------
 tests/deprecations_ignore.yml                      |   6 +
 tests/listeners/class_listener.py                  |   4 +-
 tests/listeners/file_write_listener.py             |   4 +-
 tests/listeners/full_listener.py                   |   2 +-
 tests/models/test_taskinstance.py                  |  16 +-
 tests/providers/airbyte/hooks/test_airbyte.py      |  17 ++
 tests/providers/common/sql/hooks/test_dbapi.py     |   3 +-
 .../cloud/operators/test_kubernetes_engine.py      | 219 +++++++++++++++++++++
 .../google/cloud/triggers/test_bigquery.py         |   2 +-
 tests/providers/jdbc/hooks/test_jdbc.py            |  28 ++-
 tests/providers/postgres/hooks/test_postgres.py    |   9 +-
 tests/providers/teradata/hooks/test_teradata.py    |  22 ++-
 .../system/providers/amazon/aws/example_bedrock.py |  17 +-
 .../example_kubernetes_engine_job.py               |  26 +++
 .../ti_deps/deps/test_mapped_task_upstream_dep.py  |   1 +
 42 files changed, 992 insertions(+), 327 deletions(-)
 copy {airflow/api_connexion => tests/_internals}/__init__.py (100%)
 create mode 100644 tests/_internals/capture_warnings.py