From 25d0baa4ee69769ff339931f76ebace28c4315f2 Mon Sep 17 00:00:00 2001 From: Ash Berlin-Taylor Date: Mon, 5 Sep 2022 13:12:52 +0100 Subject: [PATCH] Prepare bug-fix release of providers out of band (#26109) * Prepare release of amazon provider out of band There is an circular import error that means 5.0.0 can't be used with the SecretsManager - worth releaseing a fix for this now * Include common.sql, presto, sqlite and trino in the batch * Correctly set dep back to common-sql>=1.2.0 * Postgres provider too --- airflow/providers/amazon/CHANGELOG.rst | 36 +++++++++++++++++++ airflow/providers/amazon/provider.yaml | 3 +- airflow/providers/common/sql/CHANGELOG.rst | 21 +++++++++++ airflow/providers/postgres/CHANGELOG.rst | 13 +++++++ airflow/providers/postgres/provider.yaml | 1 + airflow/providers/presto/CHANGELOG.rst | 16 +++++++++ airflow/providers/presto/provider.yaml | 1 + airflow/providers/sqlite/CHANGELOG.rst | 16 +++++++++ airflow/providers/sqlite/provider.yaml | 1 + airflow/providers/trino/CHANGELOG.rst | 16 +++++++++ airflow/providers/trino/provider.yaml | 1 + .../commits.rst | 32 +++++++++++++++++ .../apache-airflow-providers-amazon/index.rst | 8 ++--- .../commits.rst | 16 +++++++++ .../index.rst | 2 +- .../commits.rst | 16 ++++++++- .../index.rst | 10 +++--- .../commits.rst | 15 +++++++- .../apache-airflow-providers-presto/index.rst | 8 ++--- .../commits.rst | 15 +++++++- .../apache-airflow-providers-sqlite/index.rst | 8 ++--- .../commits.rst | 15 +++++++- docs/apache-airflow-providers-trino/index.rst | 8 ++--- generated/provider_dependencies.json | 2 +- 24 files changed, 252 insertions(+), 28 deletions(-) diff --git a/airflow/providers/amazon/CHANGELOG.rst b/airflow/providers/amazon/CHANGELOG.rst index a90dc3a7a0ef5..059b8123c6bd9 100644 --- a/airflow/providers/amazon/CHANGELOG.rst +++ b/airflow/providers/amazon/CHANGELOG.rst @@ -24,6 +24,42 @@ Changelog --------- +5.1.0 +..... + + +Features +~~~~~~~~ + +* ``Additional mask aws credentials (#26014)`` +* ``Add RedshiftDeleteClusterSnapshotOperator (#25975)`` +* ``Add redshift create cluster snapshot operator (#25857)`` +* ``Add common-sql lower bound for common-sql (#25789)`` +* ``Allow AWS Secrets Backends use AWS Connection capabilities (#25628)`` +* ``Implement 'EmrEksCreateClusterOperator' (#25816)`` +* ``Improve error handling/messaging around bucket exist check (#25805)`` + +Bug Fixes +~~~~~~~~~ + +* ``Fix display aws connection info (#26025)`` +* ``Fix 'EcsBaseOperator' and 'EcsBaseSensor' arguments (#25989)`` +* ``Fix RDS system test (#25839)`` +* ``Avoid circular import problems when instantiating AWS SM backend (#25810)`` +* ``fix bug construction of Connection object in version 5.0.0rc3 (#25716)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Fix EMR serverless system test (#25969)`` + * ``Add 'output' property to MappedOperator (#25604)`` + * ``Add Airflow specific warning classes (#25799)`` + * ``Replace SQL with Common SQL in pre commit (#26058)`` + * ``Hook into Mypy to get rid of those cast() (#26023)`` + * ``Raise an error on create bucket if use regional endpoint for us-east-1 and region not set (#25945)`` + * ``Update AWS system tests to use SystemTestContextBuilder (#25748)`` + * ``Convert Quicksight Sample DAG to System Test (#25696)`` + * ``Consolidate to one 'schedule' param (#25410)`` + 5.0.0 ..... diff --git a/airflow/providers/amazon/provider.yaml b/airflow/providers/amazon/provider.yaml index df7ccd556ca42..50b15760e953f 100644 --- a/airflow/providers/amazon/provider.yaml +++ b/airflow/providers/amazon/provider.yaml @@ -22,6 +22,7 @@ description: | Amazon integration (including `Amazon Web Services (AWS) `__). versions: + - 5.1.0 - 5.0.0 - 4.1.0 - 4.0.0 @@ -45,7 +46,7 @@ versions: dependencies: - apache-airflow>=2.2.0 - - apache-airflow-providers-common-sql>=1.1.0 + - apache-airflow-providers-common-sql>=1.2.0 - boto3>=1.15.0 # watchtower 3 has been released end Jan and introduced breaking change across the board that might # change logging behaviour: diff --git a/airflow/providers/common/sql/CHANGELOG.rst b/airflow/providers/common/sql/CHANGELOG.rst index db4aa22f3d15d..f1554b3e0f24b 100644 --- a/airflow/providers/common/sql/CHANGELOG.rst +++ b/airflow/providers/common/sql/CHANGELOG.rst @@ -24,6 +24,27 @@ Changelog --------- +1.2.0 +..... + + +Features +~~~~~~~~ + +* ``Make placeholder style configurable (#25939)`` +* ``Better error messsage for pre-common-sql providers (#26051)`` + +Bug Fixes +~~~~~~~~~ + +* ``Fix (and test) SQLTableCheckOperator on postgresql (#25821)`` +* ``Don't use Pandas for SQLTableCheckOperator (#25822)`` +* ``Discard semicolon stripping in SQL hook (#25855)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + + 1.1.0 ..... diff --git a/airflow/providers/postgres/CHANGELOG.rst b/airflow/providers/postgres/CHANGELOG.rst index 9f6129eeaa779..afc4f343085f7 100644 --- a/airflow/providers/postgres/CHANGELOG.rst +++ b/airflow/providers/postgres/CHANGELOG.rst @@ -24,6 +24,19 @@ Changelog --------- +5.2.1 +..... + +Bug Fixes +~~~~~~~~~ + +* ``Bump dep on common-sql to fix issue with SQLTableCheckOperator (#26143)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``postgres provider: use non-binary psycopg2 (#25710)`` + * ``Add common-sql lower bound for common-sql (#25789)`` + 5.2.0 ..... diff --git a/airflow/providers/postgres/provider.yaml b/airflow/providers/postgres/provider.yaml index 2d6c9b88c1d9e..b928ff3dd603d 100644 --- a/airflow/providers/postgres/provider.yaml +++ b/airflow/providers/postgres/provider.yaml @@ -22,6 +22,7 @@ description: | `PostgreSQL `__ versions: + - 5.2.1 - 5.2.0 - 5.1.0 - 5.0.0 diff --git a/airflow/providers/presto/CHANGELOG.rst b/airflow/providers/presto/CHANGELOG.rst index 19797a4d850aa..cd7b17951f581 100644 --- a/airflow/providers/presto/CHANGELOG.rst +++ b/airflow/providers/presto/CHANGELOG.rst @@ -24,6 +24,22 @@ Changelog --------- +4.0.1 +..... + +Features +~~~~~~~~ + +* ``Add common-sql lower bound for common-sql (#25789)`` + +Bug Fixes +~~~~~~~~~ + +* ``Fix placeholders in 'TrinoHook', 'PrestoHook', 'SqliteHook' (#25939)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 4.0.0 ..... diff --git a/airflow/providers/presto/provider.yaml b/airflow/providers/presto/provider.yaml index 32731c867146d..9bb9060248caf 100644 --- a/airflow/providers/presto/provider.yaml +++ b/airflow/providers/presto/provider.yaml @@ -22,6 +22,7 @@ description: | `Presto `__ versions: + - 4.0.1 - 4.0.0 - 3.1.0 - 3.0.0 diff --git a/airflow/providers/sqlite/CHANGELOG.rst b/airflow/providers/sqlite/CHANGELOG.rst index fcd81b5fbb79c..81ee983bf1aeb 100644 --- a/airflow/providers/sqlite/CHANGELOG.rst +++ b/airflow/providers/sqlite/CHANGELOG.rst @@ -24,6 +24,22 @@ Changelog --------- +3.2.1 +..... + +Features +~~~~~~~~ + +* ``Add common-sql lower bound for common-sql (#25789)`` + +Bug Fixes +~~~~~~~~~ + +* ``Fix placeholders in 'TrinoHook', 'PrestoHook', 'SqliteHook' (#25939)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 3.2.0 ..... diff --git a/airflow/providers/sqlite/provider.yaml b/airflow/providers/sqlite/provider.yaml index 73c43058f1f6c..18bd98582edfa 100644 --- a/airflow/providers/sqlite/provider.yaml +++ b/airflow/providers/sqlite/provider.yaml @@ -22,6 +22,7 @@ description: | `SQLite `__ versions: + - 3.2.1 - 3.2.0 - 3.1.0 - 3.0.0 diff --git a/airflow/providers/trino/CHANGELOG.rst b/airflow/providers/trino/CHANGELOG.rst index e10e8956d0da8..d8ec8f1a22645 100644 --- a/airflow/providers/trino/CHANGELOG.rst +++ b/airflow/providers/trino/CHANGELOG.rst @@ -24,6 +24,22 @@ Changelog --------- +4.0.1 +..... + +Features +~~~~~~~~ + +* ``Add common-sql lower bound for common-sql (#25789)`` + +Bug Fixes +~~~~~~~~~ + +* ``Fix placeholders in 'TrinoHook', 'PrestoHook', 'SqliteHook' (#25939)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 4.0.0 ..... diff --git a/airflow/providers/trino/provider.yaml b/airflow/providers/trino/provider.yaml index 9778b5902c072..ccd24cb95d5ca 100644 --- a/airflow/providers/trino/provider.yaml +++ b/airflow/providers/trino/provider.yaml @@ -22,6 +22,7 @@ description: | `Trino `__ versions: + - 4.0.1 - 4.0.0 - 3.1.0 - 3.0.0 diff --git a/docs/apache-airflow-providers-amazon/commits.rst b/docs/apache-airflow-providers-amazon/commits.rst index cbbddf327f3d5..23253686ea3ec 100644 --- a/docs/apache-airflow-providers-amazon/commits.rst +++ b/docs/apache-airflow-providers-amazon/commits.rst @@ -28,6 +28,37 @@ For high-level changelog, see :doc:`package information including changelog `_ 2022-08-31 ``Additional mask aws credentials (#26014)`` +`6d703dd9e1 `_ 2022-08-31 ``Fix display aws connection info (#26025)`` +`8acdc2a834 `_ 2022-08-30 ``Replace SQL with Common SQL in pre commit (#26058)`` +`1d06374194 `_ 2022-08-30 ``Hook into Mypy to get rid of those cast() (#26023)`` +`1ed014647e `_ 2022-08-29 ``Add 'output' property to MappedOperator (#25604)`` +`dbfa6487b8 `_ 2022-08-27 ``Fix 'EcsBaseOperator' and 'EcsBaseSensor' arguments (#25989)`` +`c9c89e5c3b `_ 2022-08-27 ``Add RedshiftDeleteClusterSnapshotOperator (#25975)`` +`695e1a53f8 `_ 2022-08-27 ``Raise an error on create bucket if use regional endpoint for us-east-1 and region not set (#25945)`` +`b75797e809 `_ 2022-08-27 ``Fix EMR serverless system test (#25969)`` +`810f3847c2 `_ 2022-08-27 ``Update AWS system tests to use SystemTestContextBuilder (#25748)`` +`626a54904a `_ 2022-08-26 ``Convert Quicksight Sample DAG to System Test (#25696)`` +`994f18872a `_ 2022-08-25 ``Add redshift create cluster snapshot operator (#25857)`` +`1a1f352479 `_ 2022-08-23 ``Add Airflow specific warning classes (#25799)`` +`6b7a343b25 `_ 2022-08-22 ``Implement 'EmrEksCreateClusterOperator' (#25816)`` +`e1ace8d018 `_ 2022-08-21 ``Fix RDS system test (#25839)`` +`f1e0a48500 `_ 2022-08-19 ``Avoid circular import problems when instantiating AWS SM backend (#25810)`` +`92fce4fe87 `_ 2022-08-19 ``Improve error handling/messaging around bucket exist check (#25805)`` +`ca9229b6fe `_ 2022-08-18 ``Add common-sql lower bound for common-sql (#25789)`` +`b9b8841ef3 `_ 2022-08-16 ``Allow AWS Secrets Backends use AWS Connection capabilities (#25628)`` +`762588dcf4 `_ 2022-08-15 ``fix bug construction of Connection object in version 5.0.0rc3 (#25716)`` +`1b412c9cbe `_ 2022-08-10 ``Consolidate to one 'schedule' param (#25410)`` +================================================================================================= =========== ====================================================================================================== + 5.0.0 ..... @@ -36,6 +67,7 @@ Latest change: 2022-08-10 ================================================================================================= =========== ========================================================================================================================================================== Commit Committed Subject ================================================================================================= =========== ========================================================================================================================================================== +`5923788143 `_ 2022-08-10 ``Fix CHANGELOG for common.sql provider and add amazon commit (#25636)`` `358593c6b6 `_ 2022-08-10 ``Enable multiple query execution in RedshiftDataOperator (#25619)`` `e5ac6c7cfb `_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` `8a1b7d43e0 `_ 2022-08-10 ``Refactor monolithic ECS Operator into Operators, Sensors, and a Hook (#25413)`` diff --git a/docs/apache-airflow-providers-amazon/index.rst b/docs/apache-airflow-providers-amazon/index.rst index f8d65092edaee..57ab2b7b12fd2 100644 --- a/docs/apache-airflow-providers-amazon/index.rst +++ b/docs/apache-airflow-providers-amazon/index.rst @@ -66,7 +66,7 @@ Package apache-airflow-providers-amazon Amazon integration (including `Amazon Web Services (AWS) `__). -Release: 5.0.0 +Release: 5.1.0 Provider package ---------------- @@ -88,7 +88,7 @@ Requirements PIP package Version required ======================================= ================== ``apache-airflow`` ``>=2.2.0`` -``apache-airflow-providers-common-sql`` +``apache-airflow-providers-common-sql`` ``>=1.2.0`` ``boto3`` ``>=1.15.0`` ``watchtower`` ``~=2.0.1`` ``jsonpath_ng`` ``>=1.5.3`` @@ -134,7 +134,7 @@ Downloading official packages You can download officially released packages and verify their checksums and signatures from the `Official Apache Download site `_ -* `The apache-airflow-providers-amazon 5.0.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-amazon 5.0.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-amazon 5.1.0 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-amazon 5.1.0 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/amazon/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-common-sql/commits.rst b/docs/apache-airflow-providers-common-sql/commits.rst index 780eee630a593..5e19feb71cbb8 100644 --- a/docs/apache-airflow-providers-common-sql/commits.rst +++ b/docs/apache-airflow-providers-common-sql/commits.rst @@ -28,6 +28,21 @@ For high-level changelog, see :doc:`package information including changelog `_ 2022-08-30 ``Better error messsage for pre-common-sql providers (#26051)`` +`a74d934991 `_ 2022-08-27 ``Fix placeholders in 'TrinoHook', 'PrestoHook', 'SqliteHook' (#25939)`` +`874a95cc17 `_ 2022-08-22 ``Discard semicolon stripping in SQL hook (#25855)`` +`dd72e67524 `_ 2022-08-19 ``Fix (and test) SQLTableCheckOperator on postgresql (#25821)`` +`5b3d579a42 `_ 2022-08-19 ``Don't use Pandas for SQLTableCheckOperator (#25822)`` +================================================================================================= =========== ======================================================================== + 1.1.0 ..... @@ -36,6 +51,7 @@ Latest change: 2022-08-15 ================================================================================================= =========== ============================================================================ Commit Committed Subject ================================================================================================= =========== ============================================================================ +`7d0525a55b `_ 2022-08-15 ``Prepare documentation for RC4 release of providers (#25720)`` `7a19651369 `_ 2022-08-15 ``Fix SQL split string to include ';-less' statements (#25713)`` `5923788143 `_ 2022-08-10 ``Fix CHANGELOG for common.sql provider and add amazon commit (#25636)`` `d82436b382 `_ 2022-08-05 ``Fix fetch_all_handler & db-api tests for it (#25430)`` diff --git a/docs/apache-airflow-providers-common-sql/index.rst b/docs/apache-airflow-providers-common-sql/index.rst index f2aae5e65da05..211761e523f1c 100644 --- a/docs/apache-airflow-providers-common-sql/index.rst +++ b/docs/apache-airflow-providers-common-sql/index.rst @@ -64,7 +64,7 @@ Package apache-airflow-providers-common-sql `Common SQL Provider `__ -Release: 1.1.0 +Release: 1.2.0 Provider package ---------------- diff --git a/docs/apache-airflow-providers-postgres/commits.rst b/docs/apache-airflow-providers-postgres/commits.rst index a2c6e0e43ab5b..adca94e70a431 100644 --- a/docs/apache-airflow-providers-postgres/commits.rst +++ b/docs/apache-airflow-providers-postgres/commits.rst @@ -28,14 +28,28 @@ For high-level changelog, see :doc:`package information including changelog `_ 2022-09-05 ``Bump dep on common-sql to fix issue with SQLTableCheckOperator (#26143)`` +`14d56a5a9e `_ 2022-08-23 ``postgres provider: use non-binary psycopg2 (#25710)`` +`ca9229b6fe `_ 2022-08-18 ``Add common-sql lower bound for common-sql (#25789)`` +================================================================================================= =========== =========================================================================== + 5.2.0 ..... -Latest change: 2022-08-02 +Latest change: 2022-08-10 ================================================================================================= =========== ============================================================================ Commit Committed Subject ================================================================================================= =========== ============================================================================ +`e5ac6c7cfb `_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` `4eb0a410bb `_ 2022-08-02 ``Use only public AwsHook's methods during IAM authorization (#25424)`` `df00436569 `_ 2022-07-22 ``Unify DbApiHook.run() method with the methods which override it (#23971)`` ================================================================================================= =========== ============================================================================ diff --git a/docs/apache-airflow-providers-postgres/index.rst b/docs/apache-airflow-providers-postgres/index.rst index da7e1b5fc3c56..d6945aab3d8f7 100644 --- a/docs/apache-airflow-providers-postgres/index.rst +++ b/docs/apache-airflow-providers-postgres/index.rst @@ -65,7 +65,7 @@ Package apache-airflow-providers-postgres `PostgreSQL `__ -Release: 5.2.0 +Release: 5.2.1 Provider package ---------------- @@ -87,8 +87,8 @@ Requirements PIP package Version required ======================================= ================== ``apache-airflow`` ``>=2.2.0`` -``apache-airflow-providers-common-sql`` -``psycopg2-binary`` ``>=2.7.4`` +``apache-airflow-providers-common-sql`` ``>=1.2.0`` +``psycopg2`` ``>=2.8.0`` ======================================= ================== Cross provider package dependencies @@ -117,7 +117,7 @@ Downloading official packages You can download officially released packages and verify their checksums and signatures from the `Official Apache Download site `_ -* `The apache-airflow-providers-postgres 5.2.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-postgres 5.2.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-postgres 5.2.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-postgres 5.2.1 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/postgres/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-presto/commits.rst b/docs/apache-airflow-providers-presto/commits.rst index 835a41f42202f..607cfcf31c566 100644 --- a/docs/apache-airflow-providers-presto/commits.rst +++ b/docs/apache-airflow-providers-presto/commits.rst @@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2022-08-27 ``Fix placeholders in 'TrinoHook', 'PrestoHook', 'SqliteHook' (#25939)`` +`ca9229b6fe `_ 2022-08-18 ``Add common-sql lower bound for common-sql (#25789)`` +================================================================================================= =========== ======================================================================== + 4.0.0 ..... -Latest change: 2022-08-02 +Latest change: 2022-08-10 ================================================================================================= =========== ============================================================================ Commit Committed Subject ================================================================================================= =========== ============================================================================ +`e5ac6c7cfb `_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` `1fd702e5e5 `_ 2022-08-02 ``Remove 'PrestoToSlackOperator' (#25425)`` `5d4abbd58c `_ 2022-07-27 ``Deprecate hql parameters and synchronize DBApiHook method APIs (#25299)`` `df00436569 `_ 2022-07-22 ``Unify DbApiHook.run() method with the methods which override it (#23971)`` diff --git a/docs/apache-airflow-providers-presto/index.rst b/docs/apache-airflow-providers-presto/index.rst index b5ea0b717ac80..5dc554e514d34 100644 --- a/docs/apache-airflow-providers-presto/index.rst +++ b/docs/apache-airflow-providers-presto/index.rst @@ -64,7 +64,7 @@ Package apache-airflow-providers-presto `Presto `__ -Release: 4.0.0 +Release: 4.0.1 Provider package ---------------- @@ -86,7 +86,7 @@ Requirements PIP package Version required ======================================= ================== ``apache-airflow`` ``>=2.2.0`` -``apache-airflow-providers-common-sql`` +``apache-airflow-providers-common-sql`` ``>=1.2.0`` ``presto-python-client`` ``>=0.8.2`` ``pandas`` ``>=0.17.1`` ======================================= ================== @@ -117,7 +117,7 @@ Downloading official packages You can download officially released packages and verify their checksums and signatures from the `Official Apache Download site `_ -* `The apache-airflow-providers-presto 4.0.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-presto 4.0.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-presto 4.0.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-presto 4.0.1 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/presto/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-sqlite/commits.rst b/docs/apache-airflow-providers-sqlite/commits.rst index 9bdf54ac600ea..2313777c61606 100644 --- a/docs/apache-airflow-providers-sqlite/commits.rst +++ b/docs/apache-airflow-providers-sqlite/commits.rst @@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2022-08-27 ``Fix placeholders in 'TrinoHook', 'PrestoHook', 'SqliteHook' (#25939)`` +`ca9229b6fe `_ 2022-08-18 ``Add common-sql lower bound for common-sql (#25789)`` +================================================================================================= =========== ======================================================================== + 3.2.0 ..... -Latest change: 2022-07-22 +Latest change: 2022-08-10 ================================================================================================= =========== ============================================================================ Commit Committed Subject ================================================================================================= =========== ============================================================================ +`e5ac6c7cfb `_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` `df00436569 `_ 2022-07-22 ``Unify DbApiHook.run() method with the methods which override it (#23971)`` ================================================================================================= =========== ============================================================================ diff --git a/docs/apache-airflow-providers-sqlite/index.rst b/docs/apache-airflow-providers-sqlite/index.rst index 4661ae2dfb22c..c4c2b91de612f 100644 --- a/docs/apache-airflow-providers-sqlite/index.rst +++ b/docs/apache-airflow-providers-sqlite/index.rst @@ -65,7 +65,7 @@ Package apache-airflow-providers-sqlite `SQLite `__ -Release: 3.2.0 +Release: 3.2.1 Provider package ---------------- @@ -86,7 +86,7 @@ Requirements ======================================= ================== PIP package Version required ======================================= ================== -``apache-airflow-providers-common-sql`` +``apache-airflow-providers-common-sql`` ``>=1.2.0`` ======================================= ================== Cross provider package dependencies @@ -114,7 +114,7 @@ Downloading official packages You can download officially released packages and verify their checksums and signatures from the `Official Apache Download site `_ -* `The apache-airflow-providers-sqlite 3.2.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-sqlite 3.2.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-sqlite 3.2.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-sqlite 3.2.1 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/sqlite/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-trino/commits.rst b/docs/apache-airflow-providers-trino/commits.rst index c5ea627c4684b..2f6ff4c56e695 100644 --- a/docs/apache-airflow-providers-trino/commits.rst +++ b/docs/apache-airflow-providers-trino/commits.rst @@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2022-08-27 ``Fix placeholders in 'TrinoHook', 'PrestoHook', 'SqliteHook' (#25939)`` +`ca9229b6fe `_ 2022-08-18 ``Add common-sql lower bound for common-sql (#25789)`` +================================================================================================= =========== ======================================================================== + 4.0.0 ..... -Latest change: 2022-07-27 +Latest change: 2022-08-10 ================================================================================================= =========== ============================================================================ Commit Committed Subject ================================================================================================= =========== ============================================================================ +`e5ac6c7cfb `_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` `5d4abbd58c `_ 2022-07-27 ``Deprecate hql parameters and synchronize DBApiHook method APIs (#25299)`` `df00436569 `_ 2022-07-22 ``Unify DbApiHook.run() method with the methods which override it (#23971)`` ================================================================================================= =========== ============================================================================ diff --git a/docs/apache-airflow-providers-trino/index.rst b/docs/apache-airflow-providers-trino/index.rst index 4e3b80a1b485c..17976c842806b 100644 --- a/docs/apache-airflow-providers-trino/index.rst +++ b/docs/apache-airflow-providers-trino/index.rst @@ -66,7 +66,7 @@ Package apache-airflow-providers-trino `Trino `__ -Release: 4.0.0 +Release: 4.0.1 Provider package ---------------- @@ -88,7 +88,7 @@ Requirements PIP package Version required ======================================= ================== ``apache-airflow`` ``>=2.2.0`` -``apache-airflow-providers-common-sql`` +``apache-airflow-providers-common-sql`` ``>=1.2.0`` ``pandas`` ``>=0.17.1`` ``trino`` ``>=0.301.0`` ======================================= ================== @@ -119,7 +119,7 @@ Downloading official packages You can download officially released packages and verify their checksums and signatures from the `Official Apache Download site `_ -* `The apache-airflow-providers-trino 4.0.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-trino 4.0.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-trino 4.0.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-trino 4.0.1 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/trino/CHANGELOG.rst diff --git a/generated/provider_dependencies.json b/generated/provider_dependencies.json index 5fdc98e6ee826..a4cda45f8995c 100644 --- a/generated/provider_dependencies.json +++ b/generated/provider_dependencies.json @@ -17,7 +17,7 @@ }, "amazon": { "deps": [ - "apache-airflow-providers-common-sql>=1.1.0", + "apache-airflow-providers-common-sql>=1.2.0", "apache-airflow>=2.2.0", "boto3>=1.15.0", "jsonpath_ng>=1.5.3",