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

kaxilnaik pushed a change to annotated tag 2.2.0
in repository https://gitbox.apache.org/repos/asf/airflow.git.


*** WARNING: tag 2.2.0 was modified! ***

    from c0d9f6f  (tag)
      to 2eb9de7  (tag)
 tagging 223f05506382898df409ae628fa372350e7cf67d (commit)
 replaces helm-chart/1.1.0rc1
      by Kaxil Naik
      on Mon Oct 11 22:28:26 2021 +0530

- Log -----------------------------------------------------------------
Apache Airflow 2.2.0
-----BEGIN PGP SIGNATURE-----

iQEzBAABCAAdFiEEzeFcbk06jsTs9LpLZnTgitfeQG8FAmFkbTQACgkQZnTgitfe
QG9i6gf+OUnSvEinEXdsLZ34XQ0NNdKk34f4Jyl5eHVwHCcd3Q6YyiSazbEHK2wN
6cxpQ7kxCywH73SXhviG51juCCMYqUeBXefMsbyrd1mugbxv/2uh1CPc788tvahA
6ldySEw47jQRSl5aDGjfoJHClt/JkGsv7rSYqf1n2Uhvty/cjPIZ+lREmeW3RBpT
NVTvJfBAYuzDkQS6rVglTdwvtf0X2bvhLwcJ6uf1p/VAL9CtHFWRCxHDWrBxxNb6
qxs5/gjfZB18fsxadWg7kRevtnQ0myDwYL7smf/NbiETInTwz8Ewh6CEsPMNqxTd
bILkmiXR51/Hm+vjGuVHoIr2qi0DEQ==
=RWoo
-----END PGP SIGNATURE-----
-----------------------------------------------------------------------

    omit 5dd690b  Bump version to 2.2.0
     add 22768ff  Removed duplicated code on S3ToRedshiftOperator (#18671)
     add 1df9a51  Add RedshiftSQLHook, RedshiftSQLOperator (#18447)
     add b9517f3  Fixing tests that leave traces (users) (#18690)
     add f248a21  Remove duplicate code on dbapi hook (#18821)
     add 3ddb365  Duplicate Connection: Added logic to query if a connection id 
exists before creating one (#18161)
     add 4da9392  Added Parimatch Tech into userlist (#18848)
     add d17ae60  Handle leading slash in samba path (#18847)
     add 420367d  add more type hints in CeleryKubernetesExecutor (#18219)
     add c3c5ad2  Increase timeout of the job pushing to GitHub registry 
(#18856)
     add aee48cc  Quarantine maintain_hear_rate test (#18860)
     add be37cad  Update bug template to 2.2.0rc1 (#18861)
     add fd45f5f  Fix occassional deadloc on MSSQL test DagMaker cleanup 
(#18857)
     add 8cb3518  Attempt to fix flaky timeout test (#18862)
     add 36e39f6  Check min docker version (#18869)
     add 34e09cc  Strips suffixes from docker version (#18871)
     add 232f7d1  fix get_connections deprecation warn in hivemetastore hook 
(#18854)
     add b9fff8c  Add MSSQL variables to dc_ci script (#18873)
     add 1d7cfdb  Remove extra postgres dependency from AWS Provider (#18844)
     add 862ad04  Adds Bwtech and Inter Platform Inc. to the list of companies 
using Apache Airflow (#18876)
     add 3053603  Change the contact person for Clover (#18884)
     add 4115b84  Ignore License check in ``airflow/www/static/robots.txt`` 
(#18886)
     add d6c8730  Adds back documentation about context usage in Python/@task 
(#18868)
     add 223f055  Fix failing static check (#18890)

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
annotated tag 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   (c0d9f6f)
            \
             N -- N -- N   refs/tags/2.2.0 (2eb9de7)

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/ISSUE_TEMPLATE/airflow_bug_report.yml      |   2 +-
 .github/workflows/ci.yml                           |   2 +-
 .rat-excludes                                      |   3 +
 CONTRIBUTING.rst                                   |   2 +-
 INTHEWILD.md                                       |   5 +-
 README.md                                          |  14 +--
 UPDATING.md                                        |   3 -
 airflow/executors/celery_kubernetes_executor.py    |  18 +--
 airflow/hooks/dbapi.py                             |   9 +-
 airflow/operators/python.py                        |  22 ++++
 .../amazon/aws/example_dags/example_redshift.py    |  68 +++++++++++
 .../aws/example_dags/example_s3_to_redshift.py     |   8 +-
 airflow/providers/amazon/aws/hooks/redshift.py     | 122 +++++++++++++++++-
 .../jdbc.py => amazon/aws/operators/redshift.py}   |  55 +++++----
 .../amazon/aws/transfers/redshift_to_s3.py         |   6 +-
 .../amazon/aws/transfers/s3_to_redshift.py         |  32 +----
 airflow/providers/amazon/provider.yaml             |  11 +-
 airflow/providers/apache/hive/hooks/hive.py        |  19 ++-
 airflow/providers/dependencies.json                |   1 -
 airflow/providers/samba/hooks/samba.py             |   2 +-
 airflow/www/security.py                            |   2 +-
 airflow/www/views.py                               |  65 ++++++----
 breeze                                             |   4 +
 .../{operators => connections}/index.rst           |   3 +-
 .../connections/redshift.rst                       | 136 +++++++++++++++++++++
 docs/apache-airflow-providers-amazon/index.rst     |   2 +-
 .../operators/redshift.rst                         |  96 +++++++++++++++
 docs/apache-airflow-providers-amazon/redirects.txt |   1 -
 docs/apache-airflow/tutorial_taskflow_api.rst      |  42 +++++++
 scripts/ci/libraries/_initialization.sh            |  33 +++++
 scripts/ci/libraries/_script_init.sh               |   2 +
 setup.py                                           |   4 +-
 tests/conftest.py                                  |  49 +++++---
 tests/jobs/test_local_task_job.py                  |   1 +
 tests/jobs/test_scheduler_job.py                   |   2 +-
 tests/providers/amazon/aws/hooks/test_redshift.py  |  70 ++++++++++-
 .../aws/operators/test_redshift.py}                |  38 +++---
 .../amazon/aws/transfers/test_redshift_to_s3.py    |   8 +-
 .../amazon/aws/transfers/test_s3_to_redshift.py    |  14 +--
 tests/providers/samba/hooks/test_samba.py          |  12 ++
 tests/test_utils/api_connexion_utils.py            |  30 +++--
 tests/www/views/test_views_acl.py                  |  67 +++++-----
 tests/www/views/test_views_connection.py           |  32 +++++
 43 files changed, 891 insertions(+), 226 deletions(-)
 create mode 100644 
airflow/providers/amazon/aws/example_dags/example_redshift.py
 copy airflow/providers/{jdbc/operators/jdbc.py => 
amazon/aws/operators/redshift.py} (55%)
 copy docs/apache-airflow-providers-amazon/{operators => connections}/index.rst 
(95%)
 create mode 100644 
docs/apache-airflow-providers-amazon/connections/redshift.rst
 create mode 100644 docs/apache-airflow-providers-amazon/operators/redshift.rst
 copy tests/providers/{oracle/operators/test_oracle.py => 
amazon/aws/operators/test_redshift.py} (52%)

Reply via email to