diff --git a/airflow/providers/airbyte/CHANGELOG.rst b/airflow/providers/airbyte/CHANGELOG.rst index 06fe58d8beb0b..271c689430144 100644 --- a/airflow/providers/airbyte/CHANGELOG.rst +++ b/airflow/providers/airbyte/CHANGELOG.rst @@ -24,9 +24,22 @@ Changelog --------- + +3.3.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Providers (#31427)`` + 3.3.0 ..... diff --git a/airflow/providers/airbyte/__init__.py b/airflow/providers/airbyte/__init__.py index f637ede5e7c33..b9f6cbd2a547e 100644 --- a/airflow/providers/airbyte/__init__.py +++ b/airflow/providers/airbyte/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.3.0" +__version__ = "3.3.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/airbyte/provider.yaml b/airflow/providers/airbyte/provider.yaml index 2225fa31c4213..49583d4947d26 100644 --- a/airflow/providers/airbyte/provider.yaml +++ b/airflow/providers/airbyte/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.3.1 - 3.3.0 - 3.2.1 - 3.2.0 diff --git a/airflow/providers/alibaba/CHANGELOG.rst b/airflow/providers/alibaba/CHANGELOG.rst index 1e9fed2fbfebc..3c730893131d9 100644 --- a/airflow/providers/alibaba/CHANGELOG.rst +++ b/airflow/providers/alibaba/CHANGELOG.rst @@ -24,9 +24,23 @@ Changelog --------- +2.4.1 +..... + .. note:: This release dropped support for Python 3.7 + +Misc +~~~~ + +* ``Remove Python 3.7 support (#30963)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Providers (#31427)`` + * ``Add note about dropping Python 3.7 for providers (#32015)`` + 2.4.0 ..... diff --git a/airflow/providers/alibaba/__init__.py b/airflow/providers/alibaba/__init__.py index fa513687bb559..2442a7218247b 100644 --- a/airflow/providers/alibaba/__init__.py +++ b/airflow/providers/alibaba/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "2.4.0" +__version__ = "2.4.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/alibaba/provider.yaml b/airflow/providers/alibaba/provider.yaml index ba926a9c1331d..aa2d99897189a 100644 --- a/airflow/providers/alibaba/provider.yaml +++ b/airflow/providers/alibaba/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 2.4.1 - 2.4.0 - 2.3.0 - 2.2.0 diff --git a/airflow/providers/amazon/CHANGELOG.rst b/airflow/providers/amazon/CHANGELOG.rst index a84be487daa04..a337648c50bd6 100644 --- a/airflow/providers/amazon/CHANGELOG.rst +++ b/airflow/providers/amazon/CHANGELOG.rst @@ -24,9 +24,67 @@ Changelog --------- +8.2.0 +..... + .. note:: This release dropped support for Python 3.7 + +Features +~~~~~~~~ + +* ``Add deferrable option to EmrTerminateJobFlowOperator (#31646)`` +* ``Add Deferrable option to EmrCreateJobFlowOperator (#31641)`` +* ``Add deferrable mode to 'BatchSensor' (#30279)`` +* ``Add deferrable mode for S3KeySensor (#31018)`` +* ``Add Deferrable mode to Emr Add Steps operator (#30928)`` +* ``Add deferrable mode in Redshift delete cluster (#30244)`` +* ``Add discoverability for triggers in provider.yaml (#31576)`` +* ``Add deferrable mode to AWS glue operators (Job & Crawl) (#30948)`` +* ``Add deferrable param in BatchOperator (#30865)`` +* ``Add Deferrable Mode to RedshiftCreateClusterSnapshotOperator (#30856)`` +* ``Deferrable mode for EksCreateFargateProfileOperator and EksDeleteFargateProfileOperator (#31657)`` +* ``allow anonymous AWS access (#31659)`` +* ``Support of wildcard in S3ListOperator and S3ToGCSOperator (#31640)`` +* ``Add 'deferrable' param in 'EmrContainerSensor' (#30945)`` +* ``Add realtime container execution logs for BatchOperator (#31837)`` + +Bug Fixes +~~~~~~~~~ + +* ``Various fixes on ECS run task operator (#31838)`` +* ``fix return values on glue operators deferrable mode (#31694)`` +* ``Add back missing AsyncIterator import (#31710)`` +* ``Use a continuation token to get logs in ecs (#31824)`` +* ``Fetch status in while loop so as to not exit too early (#31804)`` +* ``[AWS hook] use provided client to get the official waiter on fallback (#31748)`` +* ``handle missing LogUri in emr 'describe_cluster' API response (#31482)`` + +Misc +~~~~ + +* ``Add Python 3.11 support (#27264)`` +* ``Added config template field to EmrServerlessStartJobOperator (#31746)`` +* ``Add null check for host in Amazon Redshift connection (#31567)`` +* ``add workgroup to templated fields (#31574)`` +* ``Add docstring and signature for _read_remote_logs (#31623)`` +* ``Deprecate 'wait_for_completion' from 'EcsRegisterTaskDefinitionOperator' and 'EcsDeregisterTaskDefinitionOperator' (#31884)`` +* ``Remove Python 3.7 support (#30963)`` +* ``Change Deferrable implementation for RedshiftResumeClusterOperator to follow standard (#30864)`` +* ``Change Deferrable implementation for RedshiftPauseClusterOperator to follow standard (#30853)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check (#31742)`` + * ``Add D400 pydocstyle check - Amazon provider only (#31423)`` + * ``AWS system test example_dynamodb_to_s3: add retry when fecthing the export time (#31388)`` + * ``Amazon provider docstring improvements (#31729)`` + * ``Replace spelling directive with spelling:word-list (#31752)`` + * ``Remove aws unused code (#31610)`` + * ``Add note about dropping Python 3.7 for providers (#32015)`` + + 8.1.0 ..... diff --git a/airflow/providers/amazon/__init__.py b/airflow/providers/amazon/__init__.py index 16dea22d06d95..cf6ef41b5ebc6 100644 --- a/airflow/providers/amazon/__init__.py +++ b/airflow/providers/amazon/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "8.1.0" +__version__ = "8.2.0" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/amazon/provider.yaml b/airflow/providers/amazon/provider.yaml index 51af2e4d24673..3680915dc36bb 100644 --- a/airflow/providers/amazon/provider.yaml +++ b/airflow/providers/amazon/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 8.2.0 - 8.1.0 - 8.0.0 - 7.4.1 diff --git a/airflow/providers/apache/beam/CHANGELOG.rst b/airflow/providers/apache/beam/CHANGELOG.rst index 767549838e1ac..72ce0e4fe0a5d 100644 --- a/airflow/providers/apache/beam/CHANGELOG.rst +++ b/airflow/providers/apache/beam/CHANGELOG.rst @@ -24,9 +24,21 @@ Changelog --------- +5.1.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Apache providers only (#31424)`` + 5.1.0 ..... diff --git a/airflow/providers/apache/beam/__init__.py b/airflow/providers/apache/beam/__init__.py index e62569be9c7df..101fb9d7eb158 100644 --- a/airflow/providers/apache/beam/__init__.py +++ b/airflow/providers/apache/beam/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "5.1.0" +__version__ = "5.1.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/apache/beam/provider.yaml b/airflow/providers/apache/beam/provider.yaml index bf23c51d00deb..d177e251d7c65 100644 --- a/airflow/providers/apache/beam/provider.yaml +++ b/airflow/providers/apache/beam/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 5.1.1 - 5.1.0 - 5.0.0 - 4.3.0 diff --git a/airflow/providers/apache/cassandra/CHANGELOG.rst b/airflow/providers/apache/cassandra/CHANGELOG.rst index 576682e611842..69ddcff864819 100644 --- a/airflow/providers/apache/cassandra/CHANGELOG.rst +++ b/airflow/providers/apache/cassandra/CHANGELOG.rst @@ -24,9 +24,21 @@ Changelog --------- +3.2.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Apache providers only (#31424)`` + 3.2.0 ..... diff --git a/airflow/providers/apache/cassandra/__init__.py b/airflow/providers/apache/cassandra/__init__.py index 2bf7644f18927..d640c268477e3 100644 --- a/airflow/providers/apache/cassandra/__init__.py +++ b/airflow/providers/apache/cassandra/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.2.0" +__version__ = "3.2.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/apache/cassandra/provider.yaml b/airflow/providers/apache/cassandra/provider.yaml index 9c9d24fe0be7e..54c11fcdb54ed 100644 --- a/airflow/providers/apache/cassandra/provider.yaml +++ b/airflow/providers/apache/cassandra/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.2.1 - 3.2.0 - 3.1.1 - 3.1.0 diff --git a/airflow/providers/apache/drill/CHANGELOG.rst b/airflow/providers/apache/drill/CHANGELOG.rst index 4ab4264d38731..1be86afa269bc 100644 --- a/airflow/providers/apache/drill/CHANGELOG.rst +++ b/airflow/providers/apache/drill/CHANGELOG.rst @@ -24,9 +24,22 @@ Changelog --------- + +2.4.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Apache providers only (#31424)`` + 2.4.0 ..... diff --git a/airflow/providers/apache/drill/__init__.py b/airflow/providers/apache/drill/__init__.py index 5e5fc65b439d1..078e191fe925b 100644 --- a/airflow/providers/apache/drill/__init__.py +++ b/airflow/providers/apache/drill/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "2.4.0" +__version__ = "2.4.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/apache/drill/provider.yaml b/airflow/providers/apache/drill/provider.yaml index cc1ad4c937838..4142332db484f 100644 --- a/airflow/providers/apache/drill/provider.yaml +++ b/airflow/providers/apache/drill/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 2.4.1 - 2.4.0 - 2.3.2 - 2.3.1 diff --git a/airflow/providers/apache/druid/CHANGELOG.rst b/airflow/providers/apache/druid/CHANGELOG.rst index eccc115d1a6ae..7285306f819a4 100644 --- a/airflow/providers/apache/druid/CHANGELOG.rst +++ b/airflow/providers/apache/druid/CHANGELOG.rst @@ -24,9 +24,22 @@ Changelog --------- +3.4.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Apache provider docstring improvements (#31730)`` + * ``Add D400 pydocstyle check - Apache providers only (#31424)`` + 3.4.0 ..... diff --git a/airflow/providers/apache/druid/__init__.py b/airflow/providers/apache/druid/__init__.py index fc6bce09bf6c5..ec69b6bc88030 100644 --- a/airflow/providers/apache/druid/__init__.py +++ b/airflow/providers/apache/druid/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.4.0" +__version__ = "3.4.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/apache/druid/provider.yaml b/airflow/providers/apache/druid/provider.yaml index 7afe36614b313..75eed28c9b6cc 100644 --- a/airflow/providers/apache/druid/provider.yaml +++ b/airflow/providers/apache/druid/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.4.1 - 3.4.0 - 3.3.1 - 3.3.0 diff --git a/airflow/providers/apache/flink/CHANGELOG.rst b/airflow/providers/apache/flink/CHANGELOG.rst index 6b923b009c17b..38ba08d809511 100644 --- a/airflow/providers/apache/flink/CHANGELOG.rst +++ b/airflow/providers/apache/flink/CHANGELOG.rst @@ -24,9 +24,22 @@ Changelog --------- +1.1.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Remove Python 3.7 support (#30963)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Apache providers only (#31424)`` + * ``Add note about dropping Python 3.7 for providers (#32015)`` + 1.1.0 ..... diff --git a/airflow/providers/apache/flink/__init__.py b/airflow/providers/apache/flink/__init__.py index 72db28730a85d..22b76fc8c2125 100644 --- a/airflow/providers/apache/flink/__init__.py +++ b/airflow/providers/apache/flink/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "1.1.0" +__version__ = "1.1.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/apache/flink/provider.yaml b/airflow/providers/apache/flink/provider.yaml index e2da26b8e7aca..e9b1263a48d03 100644 --- a/airflow/providers/apache/flink/provider.yaml +++ b/airflow/providers/apache/flink/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 1.1.1 - 1.1.0 - 1.0.1 - 1.0.0 diff --git a/airflow/providers/apache/hdfs/CHANGELOG.rst b/airflow/providers/apache/hdfs/CHANGELOG.rst index ea485f69d1768..c8615f3db296f 100644 --- a/airflow/providers/apache/hdfs/CHANGELOG.rst +++ b/airflow/providers/apache/hdfs/CHANGELOG.rst @@ -24,17 +24,23 @@ Changelog --------- -.. note:: - This release dropped support for Python 3.7 - 4.1.0 ----- +.. note:: + This release dropped support for Python 3.7 + Features ~~~~~~~~ * Add ability to read/write task instance logs from HDFS (#31512) +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates release notes for snakebite-py3 incompatibility with protobuf (#31756)`` + * ``Add D400 pydocstyle check - Apache providers only (#31424)`` + * ``Add note about dropping Python 3.7 for providers (#32015)`` + 4.0.0 ----- diff --git a/airflow/providers/apache/hive/CHANGELOG.rst b/airflow/providers/apache/hive/CHANGELOG.rst index 3b751d3c4f24e..a5ffc8dd4511a 100644 --- a/airflow/providers/apache/hive/CHANGELOG.rst +++ b/airflow/providers/apache/hive/CHANGELOG.rst @@ -24,9 +24,32 @@ Changelog --------- + +6.1.1 +..... + .. note:: This release dropped support for Python 3.7 +Bug Fixes +~~~~~~~~~ + +* ``Sanitize beeline principal parameter (#31983)`` + +Misc +~~~~ + +* ``Replace unicodecsv with standard csv library (#31693)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + + * ``Apache provider docstring improvements (#31730)`` + * ``Improve docstrings in providers (#31681)`` + * ``Add D400 pydocstyle check - Apache providers only (#31424)`` + * ``Add Python 3.11 support (#27264)`` + * ``Add note about dropping Python 3.7 for providers (#32015)`` + 6.1.0 ..... diff --git a/airflow/providers/apache/hive/__init__.py b/airflow/providers/apache/hive/__init__.py index a218653dbad8b..9e331a66eef13 100644 --- a/airflow/providers/apache/hive/__init__.py +++ b/airflow/providers/apache/hive/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "6.1.0" +__version__ = "6.1.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/apache/hive/provider.yaml b/airflow/providers/apache/hive/provider.yaml index 3c16e1d8843c3..a277010dd6ac7 100644 --- a/airflow/providers/apache/hive/provider.yaml +++ b/airflow/providers/apache/hive/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 6.1.1 - 6.1.0 - 6.0.0 - 5.1.3 diff --git a/airflow/providers/apache/impala/CHANGELOG.rst b/airflow/providers/apache/impala/CHANGELOG.rst index 8648756a19a2a..b94522be045c2 100644 --- a/airflow/providers/apache/impala/CHANGELOG.rst +++ b/airflow/providers/apache/impala/CHANGELOG.rst @@ -23,9 +23,20 @@ Changelog --------- +1.1.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for kafka and impala (#32017)`` + +.. 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/apache/impala/__init__.py b/airflow/providers/apache/impala/__init__.py index c727aa1b34849..4e874c1c02815 100644 --- a/airflow/providers/apache/impala/__init__.py +++ b/airflow/providers/apache/impala/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "1.1.0" +__version__ = "1.1.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/apache/impala/provider.yaml b/airflow/providers/apache/impala/provider.yaml index 31edd96afa1d0..b08374bc82238 100644 --- a/airflow/providers/apache/impala/provider.yaml +++ b/airflow/providers/apache/impala/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 1.1.1 - 1.1.0 - 1.0.0 diff --git a/airflow/providers/apache/kafka/CHANGELOG.rst b/airflow/providers/apache/kafka/CHANGELOG.rst index 4fa360159cf35..4c467c6822b0b 100644 --- a/airflow/providers/apache/kafka/CHANGELOG.rst +++ b/airflow/providers/apache/kafka/CHANGELOG.rst @@ -23,9 +23,23 @@ Changelog --------- +1.1.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Remove Python 3.7 support (#30963)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add discoverability for triggers in provider.yaml (#31576)`` + * ``Add D400 pydocstyle check - Apache providers only (#31424)`` + * ``Add note about dropping Python 3.7 for kafka and impala (#32017)`` + 1.1.0 ..... diff --git a/airflow/providers/apache/kafka/__init__.py b/airflow/providers/apache/kafka/__init__.py index ea3018def87ce..45b378cab2fd3 100644 --- a/airflow/providers/apache/kafka/__init__.py +++ b/airflow/providers/apache/kafka/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "1.1.0" +__version__ = "1.1.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/apache/kafka/provider.yaml b/airflow/providers/apache/kafka/provider.yaml index f363227d5fce2..c78c5952f0780 100644 --- a/airflow/providers/apache/kafka/provider.yaml +++ b/airflow/providers/apache/kafka/provider.yaml @@ -23,6 +23,7 @@ suspended: false description: | `Apache Kafka `__ versions: + - 1.1.1 - 1.1.0 - 1.0.0 diff --git a/airflow/providers/apache/kylin/CHANGELOG.rst b/airflow/providers/apache/kylin/CHANGELOG.rst index 1b278b7344ef1..6b145026f2bc2 100644 --- a/airflow/providers/apache/kylin/CHANGELOG.rst +++ b/airflow/providers/apache/kylin/CHANGELOG.rst @@ -24,9 +24,23 @@ Changelog --------- + +3.2.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Apache provider docstring improvements (#31730)`` + * ``Add D400 pydocstyle check - Apache providers only (#31424)`` + 3.2.0 ..... diff --git a/airflow/providers/apache/kylin/__init__.py b/airflow/providers/apache/kylin/__init__.py index 9f617a0345f50..c3ac55a6f6b67 100644 --- a/airflow/providers/apache/kylin/__init__.py +++ b/airflow/providers/apache/kylin/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.2.0" +__version__ = "3.2.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/apache/kylin/provider.yaml b/airflow/providers/apache/kylin/provider.yaml index c9b6eb291bca6..495d02b971ac4 100644 --- a/airflow/providers/apache/kylin/provider.yaml +++ b/airflow/providers/apache/kylin/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.2.1 - 3.2.0 - 3.1.0 - 3.0.0 diff --git a/airflow/providers/apache/livy/CHANGELOG.rst b/airflow/providers/apache/livy/CHANGELOG.rst index c9234c145b680..049172b51ea72 100644 --- a/airflow/providers/apache/livy/CHANGELOG.rst +++ b/airflow/providers/apache/livy/CHANGELOG.rst @@ -24,9 +24,29 @@ Changelog --------- +3.5.1 +..... + .. note:: This release dropped support for Python 3.7 +Bug Fixes +~~~~~~~~~ + +* ``Push Spark appId to XCOM for LivyOperator with deferrable mode (#31201)`` + +Misc +~~~~ + +* ``Optimize deferred mode execution (#31685)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Apache provider docstring improvements (#31730)`` + * ``Add discoverability for triggers in provider.yaml (#31576)`` + * ``Add D400 pydocstyle check - Apache providers only (#31424)`` + * ``Add note about dropping Python 3.7 for providers (#32015)`` + 3.5.0 ..... diff --git a/airflow/providers/apache/livy/__init__.py b/airflow/providers/apache/livy/__init__.py index cb1040ffbeb6c..5ce66cbc351b6 100644 --- a/airflow/providers/apache/livy/__init__.py +++ b/airflow/providers/apache/livy/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.5.0" +__version__ = "3.5.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/apache/livy/provider.yaml b/airflow/providers/apache/livy/provider.yaml index 567f13c7a6ffc..7f06bf3093b94 100644 --- a/airflow/providers/apache/livy/provider.yaml +++ b/airflow/providers/apache/livy/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.5.1 - 3.5.0 - 3.4.0 - 3.3.0 diff --git a/airflow/providers/apache/pig/CHANGELOG.rst b/airflow/providers/apache/pig/CHANGELOG.rst index 3e9f4960e0b6c..ef7f7b932e28a 100644 --- a/airflow/providers/apache/pig/CHANGELOG.rst +++ b/airflow/providers/apache/pig/CHANGELOG.rst @@ -24,9 +24,21 @@ Changelog --------- +4.1.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Apache providers only (#31424)`` + 4.1.0 ..... diff --git a/airflow/providers/apache/pig/__init__.py b/airflow/providers/apache/pig/__init__.py index 59e180b4a6531..981f65c704c4d 100644 --- a/airflow/providers/apache/pig/__init__.py +++ b/airflow/providers/apache/pig/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "4.1.0" +__version__ = "4.1.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/apache/pig/provider.yaml b/airflow/providers/apache/pig/provider.yaml index 463bedc385fe8..ef67db9aee5e5 100644 --- a/airflow/providers/apache/pig/provider.yaml +++ b/airflow/providers/apache/pig/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 4.1.1 - 4.1.0 - 4.0.0 - 3.0.0 diff --git a/airflow/providers/apache/pinot/CHANGELOG.rst b/airflow/providers/apache/pinot/CHANGELOG.rst index 94017479c9eaa..3f31f49320f2c 100644 --- a/airflow/providers/apache/pinot/CHANGELOG.rst +++ b/airflow/providers/apache/pinot/CHANGELOG.rst @@ -24,9 +24,23 @@ Changelog --------- + +4.1.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Apache providers only (#31424)`` + + 4.1.0 ..... diff --git a/airflow/providers/apache/pinot/__init__.py b/airflow/providers/apache/pinot/__init__.py index c80218fa83274..22f9b9e79bc9a 100644 --- a/airflow/providers/apache/pinot/__init__.py +++ b/airflow/providers/apache/pinot/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "4.1.0" +__version__ = "4.1.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/apache/pinot/provider.yaml b/airflow/providers/apache/pinot/provider.yaml index d7f18db40c989..8455818630bb2 100644 --- a/airflow/providers/apache/pinot/provider.yaml +++ b/airflow/providers/apache/pinot/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 4.1.1 - 4.1.0 - 4.0.1 - 4.0.0 diff --git a/airflow/providers/apache/spark/CHANGELOG.rst b/airflow/providers/apache/spark/CHANGELOG.rst index 76038b589aac5..95586f99b1857 100644 --- a/airflow/providers/apache/spark/CHANGELOG.rst +++ b/airflow/providers/apache/spark/CHANGELOG.rst @@ -24,9 +24,24 @@ Changelog --------- +4.1.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``SparkSubmitOperator: rename spark_conn_id to conn_id (#31952)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Apache providers only (#31424)`` + * ``Apache provider docstring improvements (#31730)`` + * ``Improve docstrings in providers (#31681)`` + * ``Add note about dropping Python 3.7 for providers (#32015)`` + 4.1.0 ..... diff --git a/airflow/providers/apache/spark/__init__.py b/airflow/providers/apache/spark/__init__.py index 26ee6aa9a640e..888104a68bf79 100644 --- a/airflow/providers/apache/spark/__init__.py +++ b/airflow/providers/apache/spark/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "4.1.0" +__version__ = "4.1.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/apache/spark/provider.yaml b/airflow/providers/apache/spark/provider.yaml index 31210d31dd7fe..134e7b709e071 100644 --- a/airflow/providers/apache/spark/provider.yaml +++ b/airflow/providers/apache/spark/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 4.1.1 - 4.1.0 - 4.0.1 - 4.0.0 diff --git a/airflow/providers/apache/sqoop/CHANGELOG.rst b/airflow/providers/apache/sqoop/CHANGELOG.rst index c5706547a68e6..b9efe86dc7d34 100644 --- a/airflow/providers/apache/sqoop/CHANGELOG.rst +++ b/airflow/providers/apache/sqoop/CHANGELOG.rst @@ -24,9 +24,24 @@ Changelog --------- + +3.2.1 +..... + .. note:: This release dropped support for Python 3.7 + +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Apache provider docstring improvements (#31730)`` + * ``Add D400 pydocstyle check - Apache providers only (#31424)`` + 3.2.0 ..... diff --git a/airflow/providers/apache/sqoop/__init__.py b/airflow/providers/apache/sqoop/__init__.py index 74c0da43df3ae..c57990e7f9612 100644 --- a/airflow/providers/apache/sqoop/__init__.py +++ b/airflow/providers/apache/sqoop/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.2.0" +__version__ = "3.2.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/apache/sqoop/provider.yaml b/airflow/providers/apache/sqoop/provider.yaml index 8c62846d2bb85..b358d73b2d7fd 100644 --- a/airflow/providers/apache/sqoop/provider.yaml +++ b/airflow/providers/apache/sqoop/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.2.1 - 3.2.0 - 3.1.1 - 3.1.0 diff --git a/airflow/providers/arangodb/CHANGELOG.rst b/airflow/providers/arangodb/CHANGELOG.rst index 42f71103d188c..6eb420713ecb7 100644 --- a/airflow/providers/arangodb/CHANGELOG.rst +++ b/airflow/providers/arangodb/CHANGELOG.rst @@ -25,9 +25,22 @@ Changelog --------- +2.2.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Remove Python 3.7 support (#30963)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Providers (#31427)`` + * ``Add note about dropping Python 3.7 for providers (#32015)`` + 2.2.0 ..... diff --git a/airflow/providers/arangodb/__init__.py b/airflow/providers/arangodb/__init__.py index a150c6b70e161..21a5e1014f1b6 100644 --- a/airflow/providers/arangodb/__init__.py +++ b/airflow/providers/arangodb/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "2.2.0" +__version__ = "2.2.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/arangodb/provider.yaml b/airflow/providers/arangodb/provider.yaml index fab636292b432..5a1261739208f 100644 --- a/airflow/providers/arangodb/provider.yaml +++ b/airflow/providers/arangodb/provider.yaml @@ -27,6 +27,7 @@ dependencies: suspended: false versions: + - 2.2.1 - 2.2.0 - 2.1.1 - 2.1.0 diff --git a/airflow/providers/asana/CHANGELOG.rst b/airflow/providers/asana/CHANGELOG.rst index 8d123ed0357af..5a277d5b7b29f 100644 --- a/airflow/providers/asana/CHANGELOG.rst +++ b/airflow/providers/asana/CHANGELOG.rst @@ -23,9 +23,23 @@ Changelog --------- +2.2.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Remove Python 3.7 support (#30963)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Improve docstrings in providers (#31681)`` + * ``Add D400 pydocstyle check - Providers (#31427)`` + * ``Add note about dropping Python 3.7 for providers (#32015)`` + 2.2.0 ..... diff --git a/airflow/providers/asana/__init__.py b/airflow/providers/asana/__init__.py index 207708e06990e..5328ca5d80674 100644 --- a/airflow/providers/asana/__init__.py +++ b/airflow/providers/asana/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "2.2.0" +__version__ = "2.2.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/asana/provider.yaml b/airflow/providers/asana/provider.yaml index d678e22c8ce19..b16ef68a7baf9 100644 --- a/airflow/providers/asana/provider.yaml +++ b/airflow/providers/asana/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 2.2.1 - 2.2.0 - 2.1.0 - 2.0.1 diff --git a/airflow/providers/atlassian/jira/CHANGELOG.rst b/airflow/providers/atlassian/jira/CHANGELOG.rst index c5ce10f2495ea..f15cae6ff4009 100644 --- a/airflow/providers/atlassian/jira/CHANGELOG.rst +++ b/airflow/providers/atlassian/jira/CHANGELOG.rst @@ -24,9 +24,24 @@ Changelog --------- +2.1.1 +..... + .. note:: This release dropped support for Python 3.7 + +Bug Fixes +~~~~~~~~~ + +* ``Fix: JiraOperator support any return response from Jira client (#31672)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Improve docstrings in providers (#31681)`` + * ``Add D400 pydocstyle check - Providers (#31427)`` + * ``Add note about dropping Python 3.7 for providers (#32015)`` + 2.1.0 ..... diff --git a/airflow/providers/atlassian/jira/__init__.py b/airflow/providers/atlassian/jira/__init__.py index e746d27e134db..1be32f59b4bd1 100644 --- a/airflow/providers/atlassian/jira/__init__.py +++ b/airflow/providers/atlassian/jira/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "2.1.0" +__version__ = "2.1.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/atlassian/jira/provider.yaml b/airflow/providers/atlassian/jira/provider.yaml index 9ffac3f34887a..d70f1915c4fff 100644 --- a/airflow/providers/atlassian/jira/provider.yaml +++ b/airflow/providers/atlassian/jira/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 2.1.1 - 2.1.0 - 2.0.1 - 2.0.0 diff --git a/airflow/providers/celery/CHANGELOG.rst b/airflow/providers/celery/CHANGELOG.rst index 5c8bc29e6f331..df1339a026210 100644 --- a/airflow/providers/celery/CHANGELOG.rst +++ b/airflow/providers/celery/CHANGELOG.rst @@ -24,9 +24,20 @@ Changelog --------- +3.2.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. 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/celery/__init__.py b/airflow/providers/celery/__init__.py index a15672cf05867..80c2021e933aa 100644 --- a/airflow/providers/celery/__init__.py +++ b/airflow/providers/celery/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.2.0" +__version__ = "3.2.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/celery/provider.yaml b/airflow/providers/celery/provider.yaml index a405fec197004..83dc66ded0e80 100644 --- a/airflow/providers/celery/provider.yaml +++ b/airflow/providers/celery/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.2.1 - 3.2.0 - 3.1.0 - 3.0.0 diff --git a/airflow/providers/cloudant/CHANGELOG.rst b/airflow/providers/cloudant/CHANGELOG.rst index 5af9ab3d4f728..a26ac6d68c96f 100644 --- a/airflow/providers/cloudant/CHANGELOG.rst +++ b/airflow/providers/cloudant/CHANGELOG.rst @@ -24,9 +24,21 @@ Changelog --------- +3.2.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Providers (#31427)`` + 3.2.0 ..... diff --git a/airflow/providers/cloudant/__init__.py b/airflow/providers/cloudant/__init__.py index 6a3d3df7fce3e..6083092789d43 100644 --- a/airflow/providers/cloudant/__init__.py +++ b/airflow/providers/cloudant/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.2.0" +__version__ = "3.2.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/cloudant/provider.yaml b/airflow/providers/cloudant/provider.yaml index dc3d7f007f3b1..ea7c6ebc57cfb 100644 --- a/airflow/providers/cloudant/provider.yaml +++ b/airflow/providers/cloudant/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.2.1 - 3.2.0 - 3.1.0 - 3.0.0 diff --git a/airflow/providers/cncf/kubernetes/CHANGELOG.rst b/airflow/providers/cncf/kubernetes/CHANGELOG.rst index 1419681071e51..01439ce311a31 100644 --- a/airflow/providers/cncf/kubernetes/CHANGELOG.rst +++ b/airflow/providers/cncf/kubernetes/CHANGELOG.rst @@ -24,10 +24,37 @@ Changelog --------- +7.1.0 +..... + .. note:: This release dropped support for Python 3.7 +Features +~~~~~~~~ +* ``KubernetesResourceOperator - KubernetesDeleteResourceOperator & KubernetesCreateResourceOperator (#29930)`` +* ``add a return when the event is yielded in a loop to stop the execution (#31985)`` +* ``Add possibility to disable logging the pod template in a case when task fails (#31595)`` + + +Bug Fixes +~~~~~~~~~ + +* ``Remove return statement after yield from triggers class (#31703)`` +* ``Fix Fargate logging for AWS system tests (#31622)`` + +Misc +~~~~ + +* ``Remove Python 3.7 support (#30963)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check (#31742)`` + * ``Add discoverability for triggers in provider.yaml (#31576)`` + * ``Add D400 pydocstyle check - Providers (#31427)`` + * ``Add note about dropping Python 3.7 for providers (#32015)`` 7.0.0 ..... diff --git a/airflow/providers/cncf/kubernetes/__init__.py b/airflow/providers/cncf/kubernetes/__init__.py index 28d5f785b6527..3e3bd8ce31177 100644 --- a/airflow/providers/cncf/kubernetes/__init__.py +++ b/airflow/providers/cncf/kubernetes/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "7.0.0" +__version__ = "7.1.0" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/cncf/kubernetes/provider.yaml b/airflow/providers/cncf/kubernetes/provider.yaml index ee8d9fecffc67..7375b7b35276a 100644 --- a/airflow/providers/cncf/kubernetes/provider.yaml +++ b/airflow/providers/cncf/kubernetes/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 7.1.0 - 7.0.0 - 6.1.0 - 6.0.0 diff --git a/airflow/providers/common/sql/CHANGELOG.rst b/airflow/providers/common/sql/CHANGELOG.rst index 33fb717fb03da..9d8e58e69accc 100644 --- a/airflow/providers/common/sql/CHANGELOG.rst +++ b/airflow/providers/common/sql/CHANGELOG.rst @@ -24,6 +24,19 @@ Changelog --------- +1.5.2 +..... + +Misc +~~~~ + +* ``Remove Python 3.7 support (#30963)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Improve docstrings in providers (#31681)`` + * ``Add D400 pydocstyle check - Providers (#31427)`` + 1.5.1 ..... diff --git a/airflow/providers/common/sql/__init__.py b/airflow/providers/common/sql/__init__.py index 17a7b922aa1b1..58ca3b0bc20f0 100644 --- a/airflow/providers/common/sql/__init__.py +++ b/airflow/providers/common/sql/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "1.5.1" +__version__ = "1.5.2" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/common/sql/provider.yaml b/airflow/providers/common/sql/provider.yaml index 8a836c8a08052..dc26303360555 100644 --- a/airflow/providers/common/sql/provider.yaml +++ b/airflow/providers/common/sql/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 1.5.2 - 1.5.1 - 1.5.0 - 1.4.0 diff --git a/airflow/providers/databricks/CHANGELOG.rst b/airflow/providers/databricks/CHANGELOG.rst index 6d4284d5738fc..53b1b211d5f2f 100644 --- a/airflow/providers/databricks/CHANGELOG.rst +++ b/airflow/providers/databricks/CHANGELOG.rst @@ -24,9 +24,36 @@ Changelog --------- +4.3.0 +..... + .. note:: This release dropped support for Python 3.7 +Features +~~~~~~~~ + +* ``add a return when the event is yielded in a loop to stop the execution (#31985)`` + +Bug Fixes +~~~~~~~~~ + +* ``Fix type annotation (#31888)`` +* ``Fix Databricks SQL operator serialization (#31780)`` +* ``Making Databricks run related multi-query string in one session again (#31898) (#31899)`` + +Misc +~~~~ +* ``Remove return statement after yield from triggers class (#31703)`` +* ``Remove Python 3.7 support (#30963)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Improve docstrings in providers (#31681)`` + * ``Add discoverability for triggers in provider.yaml (#31576)`` + * ``Add D400 pydocstyle check - Providers (#31427)`` + * ``Add note about dropping Python 3.7 for providers (#32015)`` + 4.2.0 ..... diff --git a/airflow/providers/databricks/__init__.py b/airflow/providers/databricks/__init__.py index 8a6910cbab245..78d3cd8c42cf7 100644 --- a/airflow/providers/databricks/__init__.py +++ b/airflow/providers/databricks/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "4.2.0" +__version__ = "4.3.0" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/databricks/provider.yaml b/airflow/providers/databricks/provider.yaml index 8058ca6bdc653..9aad0384eea09 100644 --- a/airflow/providers/databricks/provider.yaml +++ b/airflow/providers/databricks/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 4.3.0 - 4.2.0 - 4.1.0 - 4.0.1 diff --git a/airflow/providers/datadog/CHANGELOG.rst b/airflow/providers/datadog/CHANGELOG.rst index f34333ef5dc32..84df803c1a122 100644 --- a/airflow/providers/datadog/CHANGELOG.rst +++ b/airflow/providers/datadog/CHANGELOG.rst @@ -24,9 +24,21 @@ Changelog --------- +3.3.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Providers (#31427)`` + 3.3.0 ..... diff --git a/airflow/providers/datadog/__init__.py b/airflow/providers/datadog/__init__.py index 84a7243cf4c75..e69ef90b7ae92 100644 --- a/airflow/providers/datadog/__init__.py +++ b/airflow/providers/datadog/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.3.0" +__version__ = "3.3.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/datadog/provider.yaml b/airflow/providers/datadog/provider.yaml index 0eb7086d91346..addfbbfc97663 100644 --- a/airflow/providers/datadog/provider.yaml +++ b/airflow/providers/datadog/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.3.1 - 3.3.0 - 3.2.0 - 3.1.0 diff --git a/airflow/providers/dbt/cloud/CHANGELOG.rst b/airflow/providers/dbt/cloud/CHANGELOG.rst index 4ad494c357d66..92cbb954c9899 100644 --- a/airflow/providers/dbt/cloud/CHANGELOG.rst +++ b/airflow/providers/dbt/cloud/CHANGELOG.rst @@ -24,9 +24,24 @@ Changelog --------- +3.2.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Remove Python 3.7 support (#30963)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Improve docstrings in providers (#31681)`` + * ``Add discoverability for triggers in provider.yaml (#31576)`` + * ``Add D400 pydocstyle check - Providers (#31427)`` + * ``Add note about dropping Python 3.7 for providers (#32015)`` + 3.2.0 ..... diff --git a/airflow/providers/dbt/cloud/__init__.py b/airflow/providers/dbt/cloud/__init__.py index 673b9fa9aa4da..a929ae6a4c972 100644 --- a/airflow/providers/dbt/cloud/__init__.py +++ b/airflow/providers/dbt/cloud/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.2.0" +__version__ = "3.2.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/dbt/cloud/provider.yaml b/airflow/providers/dbt/cloud/provider.yaml index 185743a8fec43..3ec8a0a366943 100644 --- a/airflow/providers/dbt/cloud/provider.yaml +++ b/airflow/providers/dbt/cloud/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.2.1 - 3.2.0 - 3.1.1 - 3.1.0 diff --git a/airflow/providers/dingding/CHANGELOG.rst b/airflow/providers/dingding/CHANGELOG.rst index 48bfc8d435024..23d4a92d56bc3 100644 --- a/airflow/providers/dingding/CHANGELOG.rst +++ b/airflow/providers/dingding/CHANGELOG.rst @@ -24,9 +24,23 @@ Changelog --------- + +3.2.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Improve docstrings in providers (#31681)`` + * ``Add D400 pydocstyle check - Providers (#31427)`` + 3.2.0 ..... diff --git a/airflow/providers/dingding/__init__.py b/airflow/providers/dingding/__init__.py index 0b1a1776df975..dd91de83dc6e3 100644 --- a/airflow/providers/dingding/__init__.py +++ b/airflow/providers/dingding/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.2.0" +__version__ = "3.2.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/dingding/provider.yaml b/airflow/providers/dingding/provider.yaml index 351ce27f4e32c..a0b3e090d4bb8 100644 --- a/airflow/providers/dingding/provider.yaml +++ b/airflow/providers/dingding/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.2.1 - 3.2.0 - 3.1.0 - 3.0.0 diff --git a/airflow/providers/discord/CHANGELOG.rst b/airflow/providers/discord/CHANGELOG.rst index 89944062f27de..a8f3d977e885d 100644 --- a/airflow/providers/discord/CHANGELOG.rst +++ b/airflow/providers/discord/CHANGELOG.rst @@ -24,9 +24,22 @@ Changelog --------- +3.3.0 +..... + .. note:: This release dropped support for Python 3.7 +Features +~~~~~~~~ + +* ``Add 'DiscordNotifier' (#31273)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Providers (#31427)`` + * ``Add note about dropping Python 3.7 for providers (#32015)`` + 3.2.0 ..... diff --git a/airflow/providers/discord/__init__.py b/airflow/providers/discord/__init__.py index 53e22dbdb673a..f9213e49e73d7 100644 --- a/airflow/providers/discord/__init__.py +++ b/airflow/providers/discord/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.2.0" +__version__ = "3.3.0" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/discord/provider.yaml b/airflow/providers/discord/provider.yaml index 6dedfc1fe0e7e..723fdc50af25d 100644 --- a/airflow/providers/discord/provider.yaml +++ b/airflow/providers/discord/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.3.0 - 3.2.0 - 3.1.0 - 3.0.0 diff --git a/airflow/providers/docker/CHANGELOG.rst b/airflow/providers/docker/CHANGELOG.rst index fabf2130bbde1..b7df5fa08e745 100644 --- a/airflow/providers/docker/CHANGELOG.rst +++ b/airflow/providers/docker/CHANGELOG.rst @@ -24,9 +24,24 @@ Changelog --------- +3.7.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Remove Python 3.7 support (#30963)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Improve docstrings in providers (#31681)`` + * ``Add D400 pydocstyle check (#31742)`` + * ``Add D400 pydocstyle check - Providers (#31427)`` + * ``Add note about dropping Python 3.7 for providers (#32015)`` + 3.7.0 ..... diff --git a/airflow/providers/docker/__init__.py b/airflow/providers/docker/__init__.py index 4b1cc48523665..9d793a4ba2da6 100644 --- a/airflow/providers/docker/__init__.py +++ b/airflow/providers/docker/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.7.0" +__version__ = "3.7.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/docker/provider.yaml b/airflow/providers/docker/provider.yaml index ac17bf8e2bff9..ed24724ebd4bb 100644 --- a/airflow/providers/docker/provider.yaml +++ b/airflow/providers/docker/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.7.1 - 3.7.0 - 3.6.0 - 3.5.1 diff --git a/airflow/providers/elasticsearch/CHANGELOG.rst b/airflow/providers/elasticsearch/CHANGELOG.rst index 5f3297677ac11..0b281154c69e5 100644 --- a/airflow/providers/elasticsearch/CHANGELOG.rst +++ b/airflow/providers/elasticsearch/CHANGELOG.rst @@ -24,9 +24,23 @@ Changelog --------- +4.5.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Remove Python 3.7 support (#30963)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Improve docstrings in providers (#31681)`` + * ``Add D400 pydocstyle check - Providers (#31427)`` + * ``Add note about dropping Python 3.7 for providers (#32015)`` + 4.5.0 ..... diff --git a/airflow/providers/elasticsearch/__init__.py b/airflow/providers/elasticsearch/__init__.py index 98ea345577a57..f7905972eeea9 100644 --- a/airflow/providers/elasticsearch/__init__.py +++ b/airflow/providers/elasticsearch/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "4.5.0" +__version__ = "4.5.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/elasticsearch/provider.yaml b/airflow/providers/elasticsearch/provider.yaml index 8dc3743195813..b7b34a497bc27 100644 --- a/airflow/providers/elasticsearch/provider.yaml +++ b/airflow/providers/elasticsearch/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 4.5.1 - 4.5.0 - 4.4.0 - 4.3.3 diff --git a/airflow/providers/exasol/CHANGELOG.rst b/airflow/providers/exasol/CHANGELOG.rst index 1f08c535fab8e..5fb93a897e1f9 100644 --- a/airflow/providers/exasol/CHANGELOG.rst +++ b/airflow/providers/exasol/CHANGELOG.rst @@ -24,9 +24,22 @@ Changelog --------- +4.2.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Improve docstrings in providers (#31681)`` + * ``Add D400 pydocstyle check - Providers (#31427)`` + 4.2.0 ..... diff --git a/airflow/providers/exasol/__init__.py b/airflow/providers/exasol/__init__.py index 1ab4bb6a2c938..be8513314e64e 100644 --- a/airflow/providers/exasol/__init__.py +++ b/airflow/providers/exasol/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "4.2.0" +__version__ = "4.2.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/exasol/provider.yaml b/airflow/providers/exasol/provider.yaml index 7afe6afc2208c..9aaeea70ba8f1 100644 --- a/airflow/providers/exasol/provider.yaml +++ b/airflow/providers/exasol/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 4.2.1 - 4.2.0 - 4.1.3 - 4.1.2 diff --git a/airflow/providers/facebook/CHANGELOG.rst b/airflow/providers/facebook/CHANGELOG.rst index 8ca67d0435f06..ee7574fc46603 100644 --- a/airflow/providers/facebook/CHANGELOG.rst +++ b/airflow/providers/facebook/CHANGELOG.rst @@ -24,9 +24,23 @@ Changelog --------- +3.2.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Remove Python 3.7 support (#30963)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Improve docstrings in providers (#31681)`` + * ``Add D400 pydocstyle check - Providers (#31427)`` + * ``Add note about dropping Python 3.7 for providers (#32015)`` + 3.2.0 ..... diff --git a/airflow/providers/facebook/__init__.py b/airflow/providers/facebook/__init__.py index c54b0d23af9d6..83b9dcc037bc1 100644 --- a/airflow/providers/facebook/__init__.py +++ b/airflow/providers/facebook/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.2.0" +__version__ = "3.2.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/facebook/provider.yaml b/airflow/providers/facebook/provider.yaml index 98dd57c41f4c9..462ca5a4b4593 100644 --- a/airflow/providers/facebook/provider.yaml +++ b/airflow/providers/facebook/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.2.1 - 3.2.0 - 3.1.0 - 3.0.1 diff --git a/airflow/providers/ftp/CHANGELOG.rst b/airflow/providers/ftp/CHANGELOG.rst index e8fc9fd978036..e5aec43f86e4d 100644 --- a/airflow/providers/ftp/CHANGELOG.rst +++ b/airflow/providers/ftp/CHANGELOG.rst @@ -24,9 +24,22 @@ Changelog --------- +3.4.2 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Remove Python 3.7 support (#30963)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Providers (#31427)`` + * ``Add note about dropping Python 3.7 for providers (#32015)`` + 3.4.1 ..... diff --git a/airflow/providers/ftp/__init__.py b/airflow/providers/ftp/__init__.py index d1178ef090e31..31e7b96db27de 100644 --- a/airflow/providers/ftp/__init__.py +++ b/airflow/providers/ftp/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.4.1" +__version__ = "3.4.2" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/ftp/provider.yaml b/airflow/providers/ftp/provider.yaml index 2e9cd912759bf..640aaaa95b3b9 100644 --- a/airflow/providers/ftp/provider.yaml +++ b/airflow/providers/ftp/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.4.2 - 3.4.1 - 3.4.0 - 3.3.1 diff --git a/airflow/providers/github/CHANGELOG.rst b/airflow/providers/github/CHANGELOG.rst index bbdc280971c1e..d9ee1b1d19ecb 100644 --- a/airflow/providers/github/CHANGELOG.rst +++ b/airflow/providers/github/CHANGELOG.rst @@ -25,9 +25,22 @@ Changelog --------- +2.3.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Improve docstrings in providers (#31681)`` + * ``Add D400 pydocstyle check - Providers (#31427)`` + 2.3.0 ..... diff --git a/airflow/providers/github/__init__.py b/airflow/providers/github/__init__.py index 346b8d3da53bd..a9b7a5d725e93 100644 --- a/airflow/providers/github/__init__.py +++ b/airflow/providers/github/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "2.3.0" +__version__ = "2.3.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/github/provider.yaml b/airflow/providers/github/provider.yaml index 4098bc258f7a2..19eb9c4b25ed4 100644 --- a/airflow/providers/github/provider.yaml +++ b/airflow/providers/github/provider.yaml @@ -30,6 +30,7 @@ dependencies: suspended: false versions: + - 2.3.1 - 2.3.0 - 2.2.1 - 2.2.0 diff --git a/airflow/providers/google/CHANGELOG.rst b/airflow/providers/google/CHANGELOG.rst index c03c6b2a3374e..95942d6e6dade 100644 --- a/airflow/providers/google/CHANGELOG.rst +++ b/airflow/providers/google/CHANGELOG.rst @@ -23,9 +23,52 @@ Changelog --------- +10.2.0 +...... + .. note:: This release dropped support for Python 3.7 +Features +~~~~~~~~ + +* ``add a return when the event is yielded in a loop to stop the execution (#31985)`` +* ``Add deferrable mode to PubsubPullSensor (#31284)`` +* ``Add a new param to set parquet row group size in 'BaseSQLToGCSOperator' (#31831)`` +* ``Add 'cacheControl' field to google cloud storage (#31338)`` +* ``Add 'preserveAsciiControlCharacters' to 'src_fmt_configs' (#31643)`` +* ``Add support for credential configuation file auth to Google Secrets Manager secrets backend (#31597)`` +* ``Add credential configuration file support to Google Cloud Hook (#31548)`` +* ``Add deferrable mode to 'GCSUploadSessionCompleteSensor' (#31081)`` +* ``Add append_job_name parameter in DataflowStartFlexTemplateOperator (#31511)`` +* ``FIPS environments: Mark uses of md5 as "not-used-for-security" (#31171)`` +* ``Implement MetastoreHivePartitionSensor (#31016)`` + +Bug Fixes +~~~~~~~~~ + +* ``Bigquery: fix links for already existing tables and datasets. (#31589)`` +* ``Provide missing project id and creds for TabularDataset (#31991)`` + +Misc +~~~~ + +* ``Optimize deferrable mode execution for 'DataprocSubmitJobOperator' (#31317)`` +* ``Optimize deferrable mode execution for 'BigQueryInsertJobOperator' (#31249)`` +* ``Remove return statement after yield from triggers class (#31703)`` +* ``Replace unicodecsv with standard csv library (#31693)`` +* ``Optimize deferrable mode (#31758)`` +* ``Remove Python 3.7 support (#30963)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Replace spelling directive with spelling:word-list (#31752)`` + * ``Add D400 pydocstyle check - Google provider only (#31422)`` + * ``Add discoverability for triggers in provider.yaml (#31576)`` + * ``Revert "Fix 'BIGQUERY_JOB_DETAILS_LINK_FMT' in 'BigQueryConsoleLink' (#31457)" (#31935)`` + * ``Fix 'BIGQUERY_JOB_DETAILS_LINK_FMT' in 'BigQueryConsoleLink' (#31457)`` + * ``Add note about dropping Python 3.7 for providers (#32015)`` + 10.1.1 ...... diff --git a/airflow/providers/google/__init__.py b/airflow/providers/google/__init__.py index 97e004b433aeb..245255b39e614 100644 --- a/airflow/providers/google/__init__.py +++ b/airflow/providers/google/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "10.1.1" +__version__ = "10.2.0" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/google/provider.yaml b/airflow/providers/google/provider.yaml index 068654fbd6f09..bdcecfb3eaff5 100644 --- a/airflow/providers/google/provider.yaml +++ b/airflow/providers/google/provider.yaml @@ -30,6 +30,7 @@ description: | suspended: false versions: + - 10.2.0 - 10.1.1 - 10.1.0 - 10.0.0 diff --git a/airflow/providers/grpc/CHANGELOG.rst b/airflow/providers/grpc/CHANGELOG.rst index dc52d66e649ad..c71b34b4171b0 100644 --- a/airflow/providers/grpc/CHANGELOG.rst +++ b/airflow/providers/grpc/CHANGELOG.rst @@ -24,9 +24,21 @@ Changelog --------- +3.2.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Providers (#31427)`` + 3.2.0 ..... diff --git a/airflow/providers/grpc/__init__.py b/airflow/providers/grpc/__init__.py index b4ae740021643..43cd7d9d63a36 100644 --- a/airflow/providers/grpc/__init__.py +++ b/airflow/providers/grpc/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.2.0" +__version__ = "3.2.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/grpc/provider.yaml b/airflow/providers/grpc/provider.yaml index 8694702f4927f..d359a366f6a8d 100644 --- a/airflow/providers/grpc/provider.yaml +++ b/airflow/providers/grpc/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.2.1 - 3.2.0 - 3.1.0 - 3.0.0 diff --git a/airflow/providers/hashicorp/CHANGELOG.rst b/airflow/providers/hashicorp/CHANGELOG.rst index f047f5e9e422d..38dc1396da1c8 100644 --- a/airflow/providers/hashicorp/CHANGELOG.rst +++ b/airflow/providers/hashicorp/CHANGELOG.rst @@ -24,9 +24,27 @@ Changelog --------- +3.4.1 +..... + .. note:: This release dropped support for Python 3.7 +Bug Fixes +~~~~~~~~~ + +* ``Fix hashicorp some client authentication methods (#31593)`` + +Misc +~~~~ + +* ``Remove Python 3.7 support (#30963)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Providers (#31427)`` + * ``Add note about dropping Python 3.7 for providers (#32015)`` + 3.4.0 ..... diff --git a/airflow/providers/hashicorp/__init__.py b/airflow/providers/hashicorp/__init__.py index 482a6b1f3a36a..f58108903de8e 100644 --- a/airflow/providers/hashicorp/__init__.py +++ b/airflow/providers/hashicorp/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.4.0" +__version__ = "3.4.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/hashicorp/provider.yaml b/airflow/providers/hashicorp/provider.yaml index c807e728f4ecc..2faa1009a245d 100644 --- a/airflow/providers/hashicorp/provider.yaml +++ b/airflow/providers/hashicorp/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.4.1 - 3.4.0 - 3.3.1 - 3.3.0 diff --git a/airflow/providers/http/CHANGELOG.rst b/airflow/providers/http/CHANGELOG.rst index cf45c8fa3e21b..df2165460a1c3 100644 --- a/airflow/providers/http/CHANGELOG.rst +++ b/airflow/providers/http/CHANGELOG.rst @@ -24,9 +24,22 @@ Changelog --------- +4.4.2 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Improve docstrings in providers (#31681)`` + * ``Add D400 pydocstyle check - Providers (#31427)`` + 4.4.1 ..... diff --git a/airflow/providers/http/__init__.py b/airflow/providers/http/__init__.py index 11f3788374247..9f58801b5ac63 100644 --- a/airflow/providers/http/__init__.py +++ b/airflow/providers/http/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "4.4.1" +__version__ = "4.4.2" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/http/provider.yaml b/airflow/providers/http/provider.yaml index 31ce19522d5bb..844e3bd085c8e 100644 --- a/airflow/providers/http/provider.yaml +++ b/airflow/providers/http/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 4.4.2 - 4.4.1 - 4.4.0 - 4.3.0 diff --git a/airflow/providers/imap/CHANGELOG.rst b/airflow/providers/imap/CHANGELOG.rst index c4126524b2edd..1dd64ab057b05 100644 --- a/airflow/providers/imap/CHANGELOG.rst +++ b/airflow/providers/imap/CHANGELOG.rst @@ -24,9 +24,20 @@ Changelog --------- +3.2.2 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 3.2.1 ..... diff --git a/airflow/providers/imap/__init__.py b/airflow/providers/imap/__init__.py index 95e78432a7e5b..d0bd158797de5 100644 --- a/airflow/providers/imap/__init__.py +++ b/airflow/providers/imap/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.2.1" +__version__ = "3.2.2" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/imap/provider.yaml b/airflow/providers/imap/provider.yaml index 712bc30c1f9e1..997880d4bd18e 100644 --- a/airflow/providers/imap/provider.yaml +++ b/airflow/providers/imap/provider.yaml @@ -24,6 +24,7 @@ description: | suspended: false versions: + - 3.2.2 - 3.2.1 - 3.2.0 - 3.1.1 diff --git a/airflow/providers/influxdb/CHANGELOG.rst b/airflow/providers/influxdb/CHANGELOG.rst index 1e9b4d5589cf5..8a03f33a974d8 100644 --- a/airflow/providers/influxdb/CHANGELOG.rst +++ b/airflow/providers/influxdb/CHANGELOG.rst @@ -25,9 +25,23 @@ Changelog --------- +2.2.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Replace spelling directive with spelling:word-list (#31752)`` + * ``Improve docstrings in providers (#31681)`` + * ``Add D400 pydocstyle check - Providers (#31427)`` + 2.2.0 ..... diff --git a/airflow/providers/influxdb/__init__.py b/airflow/providers/influxdb/__init__.py index dbefbceb5b4bd..aca792b0d02c8 100644 --- a/airflow/providers/influxdb/__init__.py +++ b/airflow/providers/influxdb/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "2.2.0" +__version__ = "2.2.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/influxdb/provider.yaml b/airflow/providers/influxdb/provider.yaml index bad1fc516e366..433603d0e48ce 100644 --- a/airflow/providers/influxdb/provider.yaml +++ b/airflow/providers/influxdb/provider.yaml @@ -30,6 +30,7 @@ dependencies: suspended: false versions: + - 2.2.1 - 2.2.0 - 2.1.0 - 2.0.0 diff --git a/airflow/providers/jdbc/CHANGELOG.rst b/airflow/providers/jdbc/CHANGELOG.rst index 224abd7a5bd4c..b54dcaabad34c 100644 --- a/airflow/providers/jdbc/CHANGELOG.rst +++ b/airflow/providers/jdbc/CHANGELOG.rst @@ -24,12 +24,12 @@ Changelog --------- -.. note:: - This release dropped support for Python 3.7 - 4.0.0 ..... +.. note:: + This release dropped support for Python 3.7 + Breaking changes ~~~~~~~~~~~~~~~~ @@ -40,6 +40,12 @@ To configure driver parameters (driver path and driver class), you can use the f 3. Set the "driver_path" and/or "driver_class" extra in the connection and correspondingly enable the "allow_driver_path_in_extra" and/or "allow_driver_class_in_extra" options in the "providers.jdbc" section of the Airflow configuration. 4. Patch the "JdbcHook.default_driver_path" and/or "JdbcHook.default_driver_class" values in the "local_settings.py" file. +* ``Restrict direct usage of driver params via extras for JDBC connection (#31849)`` + +.. Review and move the new changes to one of the sections above: + * ``Improve docstrings in providers (#31681)`` + * ``Add D400 pydocstyle check - Providers (#31427)`` + * ``Add note about dropping Python 3.7 for providers (#32015)`` 3.4.0 ..... diff --git a/airflow/providers/jdbc/__init__.py b/airflow/providers/jdbc/__init__.py index 33f7c34eb3187..39ecbfd44ce3f 100644 --- a/airflow/providers/jdbc/__init__.py +++ b/airflow/providers/jdbc/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.4.0" +__version__ = "4.0.0" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/jenkins/CHANGELOG.rst b/airflow/providers/jenkins/CHANGELOG.rst index 1e59d332650e1..c9054cceaf304 100644 --- a/airflow/providers/jenkins/CHANGELOG.rst +++ b/airflow/providers/jenkins/CHANGELOG.rst @@ -24,9 +24,22 @@ Changelog --------- +3.3.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Improve docstrings in providers (#31681)`` + * ``Add D400 pydocstyle check - Providers (#31427)`` + 3.3.0 ..... diff --git a/airflow/providers/jenkins/__init__.py b/airflow/providers/jenkins/__init__.py index 5e0f45466f69e..5af61ccf78d85 100644 --- a/airflow/providers/jenkins/__init__.py +++ b/airflow/providers/jenkins/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.3.0" +__version__ = "3.3.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/jenkins/provider.yaml b/airflow/providers/jenkins/provider.yaml index 31cdf33a2a940..116dc10e19e6f 100644 --- a/airflow/providers/jenkins/provider.yaml +++ b/airflow/providers/jenkins/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.3.1 - 3.3.0 - 3.2.1 - 3.2.0 diff --git a/airflow/providers/microsoft/azure/CHANGELOG.rst b/airflow/providers/microsoft/azure/CHANGELOG.rst index 8ecc117027b91..e495ea31ee4ee 100644 --- a/airflow/providers/microsoft/azure/CHANGELOG.rst +++ b/airflow/providers/microsoft/azure/CHANGELOG.rst @@ -24,9 +24,28 @@ Changelog --------- +6.1.2 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Replace unicodecsv with standard csv library (#31693)`` +* ``Removed unused variables in AzureBlobStorageToGCSOperator (#31765)`` +* ``Remove Python 3.7 support (#30963)`` +* ``Add docstring and signature for _read_remote_logs (#31623)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Replace spelling directive with spelling:word-list (#31752)`` + * ``Add D400 pydocstyle check - Microsoft provider only (#31425)`` + * ``Add discoverability for triggers in provider.yaml (#31576)`` + * ``Add note about dropping Python 3.7 for providers (#32015)`` + * ``Microsoft provider docstring improvements (#31708)`` + 6.1.1 ..... diff --git a/airflow/providers/microsoft/azure/__init__.py b/airflow/providers/microsoft/azure/__init__.py index bc9ae632a912a..6a11fab18c2f5 100644 --- a/airflow/providers/microsoft/azure/__init__.py +++ b/airflow/providers/microsoft/azure/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "6.1.1" +__version__ = "6.1.2" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/microsoft/azure/provider.yaml b/airflow/providers/microsoft/azure/provider.yaml index dca9a4c82af8d..d57a94837252b 100644 --- a/airflow/providers/microsoft/azure/provider.yaml +++ b/airflow/providers/microsoft/azure/provider.yaml @@ -22,6 +22,7 @@ description: | `Microsoft Azure `__ suspended: false versions: + - 6.1.2 - 6.1.1 - 6.1.0 - 6.0.0 diff --git a/airflow/providers/microsoft/mssql/CHANGELOG.rst b/airflow/providers/microsoft/mssql/CHANGELOG.rst index a4151c3e0ccf6..c4c32385cd125 100644 --- a/airflow/providers/microsoft/mssql/CHANGELOG.rst +++ b/airflow/providers/microsoft/mssql/CHANGELOG.rst @@ -24,9 +24,22 @@ Changelog --------- +3.4.1 +..... + .. note:: This release dropped support for Python 3.7 +Bug Fixes +~~~~~~~~~ + +* ``Check if sqlalchemy_scheme extra contains forbidden characters (#31984)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Microsoft provider only (#31425)`` + * ``Add note about dropping Python 3.7 for providers (#32015)`` + 3.4.0 ..... diff --git a/airflow/providers/microsoft/mssql/__init__.py b/airflow/providers/microsoft/mssql/__init__.py index 133569875ccee..2d2d756e7808d 100644 --- a/airflow/providers/microsoft/mssql/__init__.py +++ b/airflow/providers/microsoft/mssql/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.4.0" +__version__ = "3.4.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/microsoft/mssql/provider.yaml b/airflow/providers/microsoft/mssql/provider.yaml index 5eedf201e7dd7..e4bcc44eac1a3 100644 --- a/airflow/providers/microsoft/mssql/provider.yaml +++ b/airflow/providers/microsoft/mssql/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.4.1 - 3.4.0 - 3.3.2 - 3.3.1 diff --git a/airflow/providers/microsoft/psrp/CHANGELOG.rst b/airflow/providers/microsoft/psrp/CHANGELOG.rst index db54a0c6fe874..163a7a82fba33 100644 --- a/airflow/providers/microsoft/psrp/CHANGELOG.rst +++ b/airflow/providers/microsoft/psrp/CHANGELOG.rst @@ -24,9 +24,20 @@ Changelog --------- +2.3.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 2.3.0 ..... diff --git a/airflow/providers/microsoft/psrp/__init__.py b/airflow/providers/microsoft/psrp/__init__.py index ac9da20142d0f..a16f5d9af12f5 100644 --- a/airflow/providers/microsoft/psrp/__init__.py +++ b/airflow/providers/microsoft/psrp/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "2.3.0" +__version__ = "2.3.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/microsoft/psrp/provider.yaml b/airflow/providers/microsoft/psrp/provider.yaml index 1da6459b66482..5c85fc3e3e5ed 100644 --- a/airflow/providers/microsoft/psrp/provider.yaml +++ b/airflow/providers/microsoft/psrp/provider.yaml @@ -25,6 +25,7 @@ description: | suspended: false versions: + - 2.3.1 - 2.3.0 - 2.2.0 - 2.1.0 diff --git a/airflow/providers/microsoft/winrm/CHANGELOG.rst b/airflow/providers/microsoft/winrm/CHANGELOG.rst index 6bf81eaad7d95..98c8300f0a35c 100644 --- a/airflow/providers/microsoft/winrm/CHANGELOG.rst +++ b/airflow/providers/microsoft/winrm/CHANGELOG.rst @@ -24,9 +24,20 @@ Changelog --------- +3.2.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. 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/microsoft/winrm/__init__.py b/airflow/providers/microsoft/winrm/__init__.py index a094f8c11aa82..2ea5c0adb822f 100644 --- a/airflow/providers/microsoft/winrm/__init__.py +++ b/airflow/providers/microsoft/winrm/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.2.0" +__version__ = "3.2.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/microsoft/winrm/provider.yaml b/airflow/providers/microsoft/winrm/provider.yaml index 3ac254e8d39cc..749d9e6b42c2b 100644 --- a/airflow/providers/microsoft/winrm/provider.yaml +++ b/airflow/providers/microsoft/winrm/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.2.1 - 3.2.0 - 3.1.1 - 3.1.0 diff --git a/airflow/providers/mongo/CHANGELOG.rst b/airflow/providers/mongo/CHANGELOG.rst index 87cf74e34aad5..982db5719e1d3 100644 --- a/airflow/providers/mongo/CHANGELOG.rst +++ b/airflow/providers/mongo/CHANGELOG.rst @@ -24,9 +24,21 @@ Changelog --------- +3.2.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Providers (#31427)`` + 3.2.0 ..... diff --git a/airflow/providers/mongo/__init__.py b/airflow/providers/mongo/__init__.py index b9f4033d348b6..1d6d7678f0ad9 100644 --- a/airflow/providers/mongo/__init__.py +++ b/airflow/providers/mongo/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.2.0" +__version__ = "3.2.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/mongo/provider.yaml b/airflow/providers/mongo/provider.yaml index f630f818ed442..2dab06558b69e 100644 --- a/airflow/providers/mongo/provider.yaml +++ b/airflow/providers/mongo/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.2.1 - 3.2.0 - 3.1.1 - 3.1.0 diff --git a/airflow/providers/mysql/CHANGELOG.rst b/airflow/providers/mysql/CHANGELOG.rst index d819d6078064a..d9730a3535812 100644 --- a/airflow/providers/mysql/CHANGELOG.rst +++ b/airflow/providers/mysql/CHANGELOG.rst @@ -23,9 +23,22 @@ Changelog --------- +5.1.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Replace unicodecsv with standard csv library (#31693)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Providers (#31427)`` + * ``Add note about dropping Python 3.7 for providers (#32015)`` + 5.1.0 ..... diff --git a/airflow/providers/mysql/__init__.py b/airflow/providers/mysql/__init__.py index bffda813c932f..9b22520ec80ba 100644 --- a/airflow/providers/mysql/__init__.py +++ b/airflow/providers/mysql/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "5.1.0" +__version__ = "5.1.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/mysql/provider.yaml b/airflow/providers/mysql/provider.yaml index 7507fa3eb9679..d6f11b04585bd 100644 --- a/airflow/providers/mysql/provider.yaml +++ b/airflow/providers/mysql/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 5.1.1 - 5.1.0 - 5.0.0 - 4.0.2 diff --git a/airflow/providers/neo4j/CHANGELOG.rst b/airflow/providers/neo4j/CHANGELOG.rst index 1baadc319a10f..c4b031462b175 100644 --- a/airflow/providers/neo4j/CHANGELOG.rst +++ b/airflow/providers/neo4j/CHANGELOG.rst @@ -25,9 +25,21 @@ Changelog --------- +3.3.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Providers (#31427)`` + 3.3.0 ..... diff --git a/airflow/providers/neo4j/__init__.py b/airflow/providers/neo4j/__init__.py index 611f7d582e345..ad53185336144 100644 --- a/airflow/providers/neo4j/__init__.py +++ b/airflow/providers/neo4j/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.3.0" +__version__ = "3.3.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/neo4j/provider.yaml b/airflow/providers/neo4j/provider.yaml index 8df693f17cb3f..8bfe4d8b6afe8 100644 --- a/airflow/providers/neo4j/provider.yaml +++ b/airflow/providers/neo4j/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.3.1 - 3.3.0 - 3.2.1 - 3.2.0 diff --git a/airflow/providers/odbc/CHANGELOG.rst b/airflow/providers/odbc/CHANGELOG.rst index 46e39d9565741..4acfd8996c2da 100644 --- a/airflow/providers/odbc/CHANGELOG.rst +++ b/airflow/providers/odbc/CHANGELOG.rst @@ -24,12 +24,12 @@ Changelog --------- -.. note:: - This release dropped support for Python 3.7 - 4.0.0 ..... +.. note:: + This release dropped support for Python 3.7 + Breaking changes ~~~~~~~~~~~~~~~~ @@ -37,6 +37,22 @@ The driver parameter has to be passed via keyword ``driver`` argument when initi ``hook_params`` dictionary (with ``driver`` key) when instantiating Hook from SQL Operators. It was possible to instantiate it via extras before, but in this version, only setting it via constructor is supported. +* ``Disable setting ODBC driver via extra by default (#31713)`` + +Bug Fixes +~~~~~~~~~ + +* ``Check if sqlalchemy_scheme extra contains forbidden characters (#31984)`` + +Misc +~~~~ + +* ``Control permissibility of driver config in extra from airflow.cfg (#31754)`` + +.. Review and move the new changes to one of the sections above: + * ``Improve docstrings in providers (#31681)`` + * ``Add D400 pydocstyle check - Providers (#31427)`` + * ``Add note about dropping Python 3.7 for providers (#32015)`` 3.3.0 ..... diff --git a/airflow/providers/odbc/__init__.py b/airflow/providers/odbc/__init__.py index 515109ad2a8a6..9b16f7bc32e0c 100644 --- a/airflow/providers/odbc/__init__.py +++ b/airflow/providers/odbc/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.3.0" +__version__ = "4.0.0" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/odbc/provider.yaml b/airflow/providers/odbc/provider.yaml index a00fa35aaf6b6..226baefadc381 100644 --- a/airflow/providers/odbc/provider.yaml +++ b/airflow/providers/odbc/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 4.0.0 - 3.3.0 - 3.2.1 - 3.2.0 diff --git a/airflow/providers/openfaas/CHANGELOG.rst b/airflow/providers/openfaas/CHANGELOG.rst index 6675a460f5112..5968d6c797ce7 100644 --- a/airflow/providers/openfaas/CHANGELOG.rst +++ b/airflow/providers/openfaas/CHANGELOG.rst @@ -24,9 +24,21 @@ Changelog --------- +3.2.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Providers (#31427)`` + 3.2.0 ..... diff --git a/airflow/providers/openfaas/__init__.py b/airflow/providers/openfaas/__init__.py index 33f0f6872850e..d2fbc5f7bd5ad 100644 --- a/airflow/providers/openfaas/__init__.py +++ b/airflow/providers/openfaas/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.2.0" +__version__ = "3.2.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/openfaas/provider.yaml b/airflow/providers/openfaas/provider.yaml index 0913ad8a7e789..9a21f509de30b 100644 --- a/airflow/providers/openfaas/provider.yaml +++ b/airflow/providers/openfaas/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.2.1 - 3.2.0 - 3.1.0 - 3.0.0 diff --git a/airflow/providers/opsgenie/CHANGELOG.rst b/airflow/providers/opsgenie/CHANGELOG.rst index 508f95acb0f61..8bb16430d5b5c 100644 --- a/airflow/providers/opsgenie/CHANGELOG.rst +++ b/airflow/providers/opsgenie/CHANGELOG.rst @@ -24,9 +24,21 @@ Changelog --------- +5.1.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Providers (#31427)`` + 5.1.0 ..... diff --git a/airflow/providers/opsgenie/__init__.py b/airflow/providers/opsgenie/__init__.py index 93a8d21387218..746d419a1089e 100644 --- a/airflow/providers/opsgenie/__init__.py +++ b/airflow/providers/opsgenie/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "5.1.0" +__version__ = "5.1.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/opsgenie/provider.yaml b/airflow/providers/opsgenie/provider.yaml index 6ec14dc36d97f..efa630a12ab98 100644 --- a/airflow/providers/opsgenie/provider.yaml +++ b/airflow/providers/opsgenie/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 5.1.1 - 5.1.0 - 5.0.0 - 4.0.0 diff --git a/airflow/providers/oracle/CHANGELOG.rst b/airflow/providers/oracle/CHANGELOG.rst index 4e4ef1f2166be..537c48ed3b67b 100644 --- a/airflow/providers/oracle/CHANGELOG.rst +++ b/airflow/providers/oracle/CHANGELOG.rst @@ -24,9 +24,22 @@ Changelog --------- +3.7.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Improve docstrings in providers (#31681)`` + * ``Add D400 pydocstyle check - Providers (#31427)`` + 3.7.0 ..... diff --git a/airflow/providers/oracle/__init__.py b/airflow/providers/oracle/__init__.py index 2fab5d17de7cb..784e1f0ca189e 100644 --- a/airflow/providers/oracle/__init__.py +++ b/airflow/providers/oracle/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.7.0" +__version__ = "3.7.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/oracle/provider.yaml b/airflow/providers/oracle/provider.yaml index cfe66423ac7b5..6d37d5ce3132f 100644 --- a/airflow/providers/oracle/provider.yaml +++ b/airflow/providers/oracle/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.7.1 - 3.7.0 - 3.6.0 - 3.5.1 diff --git a/airflow/providers/pagerduty/CHANGELOG.rst b/airflow/providers/pagerduty/CHANGELOG.rst index 0561414aa0a16..349c0843cd97c 100644 --- a/airflow/providers/pagerduty/CHANGELOG.rst +++ b/airflow/providers/pagerduty/CHANGELOG.rst @@ -24,9 +24,23 @@ Changelog --------- +3.3.0 +..... + .. note:: This release dropped support for Python 3.7 +Features +~~~~~~~~ + +* ``Add notifier for pagerduty (#31207)`` +* ``Add send_event method in PagerdutyEventsHook (#31290)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Providers (#31427)`` + * ``Add note about dropping Python 3.7 for providers (#32015)`` + 3.2.0 ..... diff --git a/airflow/providers/pagerduty/__init__.py b/airflow/providers/pagerduty/__init__.py index 5db6f2515986d..f9f87706bab98 100644 --- a/airflow/providers/pagerduty/__init__.py +++ b/airflow/providers/pagerduty/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.2.0" +__version__ = "3.3.0" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/pagerduty/provider.yaml b/airflow/providers/pagerduty/provider.yaml index 0be53add42ab4..8c6c84bfd0320 100644 --- a/airflow/providers/pagerduty/provider.yaml +++ b/airflow/providers/pagerduty/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.3.0 - 3.2.0 - 3.1.0 - 3.0.0 diff --git a/airflow/providers/papermill/CHANGELOG.rst b/airflow/providers/papermill/CHANGELOG.rst index 54c001d193266..7494f2001d12e 100644 --- a/airflow/providers/papermill/CHANGELOG.rst +++ b/airflow/providers/papermill/CHANGELOG.rst @@ -24,9 +24,21 @@ Changelog --------- +3.2.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Providers (#31427)`` + 3.2.0 ..... diff --git a/airflow/providers/papermill/__init__.py b/airflow/providers/papermill/__init__.py index f9a4f614a9480..9bd67cdba70be 100644 --- a/airflow/providers/papermill/__init__.py +++ b/airflow/providers/papermill/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.2.0" +__version__ = "3.2.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/papermill/provider.yaml b/airflow/providers/papermill/provider.yaml index ac31aa6f70d68..bf6b2adb23dd7 100644 --- a/airflow/providers/papermill/provider.yaml +++ b/airflow/providers/papermill/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.2.1 - 3.2.0 - 3.1.1 - 3.1.0 diff --git a/airflow/providers/plexus/CHANGELOG.rst b/airflow/providers/plexus/CHANGELOG.rst index 650aac31ae60d..280fbb895f56c 100644 --- a/airflow/providers/plexus/CHANGELOG.rst +++ b/airflow/providers/plexus/CHANGELOG.rst @@ -24,9 +24,21 @@ Changelog --------- +3.2.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Providers (#31427)`` + 3.2.0 ..... diff --git a/airflow/providers/plexus/__init__.py b/airflow/providers/plexus/__init__.py index 2d872b97bc9d7..28d460b99e9ae 100644 --- a/airflow/providers/plexus/__init__.py +++ b/airflow/providers/plexus/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.2.0" +__version__ = "3.2.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/plexus/provider.yaml b/airflow/providers/plexus/provider.yaml index 6200efa1c5a0d..19c63d4e1240d 100644 --- a/airflow/providers/plexus/provider.yaml +++ b/airflow/providers/plexus/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.2.1 - 3.2.0 - 3.1.0 - 3.0.0 diff --git a/airflow/providers/postgres/CHANGELOG.rst b/airflow/providers/postgres/CHANGELOG.rst index 5bb62e7fdf8c6..65f6a496a1378 100644 --- a/airflow/providers/postgres/CHANGELOG.rst +++ b/airflow/providers/postgres/CHANGELOG.rst @@ -24,9 +24,22 @@ Changelog --------- +5.5.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Improve docstrings in providers (#31681)`` + * ``Add D400 pydocstyle check - Providers (#31427)`` + 5.5.0 ..... diff --git a/airflow/providers/postgres/__init__.py b/airflow/providers/postgres/__init__.py index 4c19a35e440c7..b4c3d8aeccd32 100644 --- a/airflow/providers/postgres/__init__.py +++ b/airflow/providers/postgres/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "5.5.0" +__version__ = "5.5.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/postgres/provider.yaml b/airflow/providers/postgres/provider.yaml index b01df023395e1..401da190c605c 100644 --- a/airflow/providers/postgres/provider.yaml +++ b/airflow/providers/postgres/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 5.5.1 - 5.5.0 - 5.4.0 - 5.3.1 diff --git a/airflow/providers/presto/CHANGELOG.rst b/airflow/providers/presto/CHANGELOG.rst index ca584f6139d18..7d172fa5eb2da 100644 --- a/airflow/providers/presto/CHANGELOG.rst +++ b/airflow/providers/presto/CHANGELOG.rst @@ -24,9 +24,21 @@ Changelog --------- +5.1.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Providers (#31427)`` + 5.1.0 ..... diff --git a/airflow/providers/presto/__init__.py b/airflow/providers/presto/__init__.py index f3bd179db9850..66eb1d89af433 100644 --- a/airflow/providers/presto/__init__.py +++ b/airflow/providers/presto/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "5.1.0" +__version__ = "5.1.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/presto/provider.yaml b/airflow/providers/presto/provider.yaml index 684f0928190ef..4a2661c53a619 100644 --- a/airflow/providers/presto/provider.yaml +++ b/airflow/providers/presto/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 5.1.1 - 5.1.0 - 5.0.0 - 4.2.2 diff --git a/airflow/providers/qubole/CHANGELOG.rst b/airflow/providers/qubole/CHANGELOG.rst index a6a5b2f7e042c..0ef4af239f389 100644 --- a/airflow/providers/qubole/CHANGELOG.rst +++ b/airflow/providers/qubole/CHANGELOG.rst @@ -24,9 +24,21 @@ Changelog --------- +3.4.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Providers (#31427)`` + 3.4.0 ..... diff --git a/airflow/providers/qubole/__init__.py b/airflow/providers/qubole/__init__.py index edf58c2c787a4..76fdeec57b038 100644 --- a/airflow/providers/qubole/__init__.py +++ b/airflow/providers/qubole/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.4.0" +__version__ = "3.4.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/qubole/provider.yaml b/airflow/providers/qubole/provider.yaml index c387c06382221..098ca11fd8394 100644 --- a/airflow/providers/qubole/provider.yaml +++ b/airflow/providers/qubole/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.4.1 - 3.4.0 - 3.3.1 - 3.3.0 diff --git a/airflow/providers/redis/CHANGELOG.rst b/airflow/providers/redis/CHANGELOG.rst index 8fe52f0a00aba..c836a108f1663 100644 --- a/airflow/providers/redis/CHANGELOG.rst +++ b/airflow/providers/redis/CHANGELOG.rst @@ -24,9 +24,21 @@ Changelog --------- +3.2.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Providers (#31427)`` + 3.2.0 ..... diff --git a/airflow/providers/redis/__init__.py b/airflow/providers/redis/__init__.py index 7d5d25e65081c..6f313671aa475 100644 --- a/airflow/providers/redis/__init__.py +++ b/airflow/providers/redis/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.2.0" +__version__ = "3.2.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/redis/provider.yaml b/airflow/providers/redis/provider.yaml index f12777c0a5cd0..c679abe00e01e 100644 --- a/airflow/providers/redis/provider.yaml +++ b/airflow/providers/redis/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.2.1 - 3.2.0 - 3.1.0 - 3.0.0 diff --git a/airflow/providers/salesforce/CHANGELOG.rst b/airflow/providers/salesforce/CHANGELOG.rst index cab972b28f8c3..fe5b961b41fb9 100644 --- a/airflow/providers/salesforce/CHANGELOG.rst +++ b/airflow/providers/salesforce/CHANGELOG.rst @@ -24,9 +24,22 @@ Changelog --------- +5.4.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Remove Python 3.7 support (#30963)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Providers (#31427)`` + * ``Add note about dropping Python 3.7 for providers (#32015)`` + 5.4.0 ..... diff --git a/airflow/providers/salesforce/__init__.py b/airflow/providers/salesforce/__init__.py index aa84a15204234..ba78316e76e28 100644 --- a/airflow/providers/salesforce/__init__.py +++ b/airflow/providers/salesforce/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "5.4.0" +__version__ = "5.4.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/salesforce/provider.yaml b/airflow/providers/salesforce/provider.yaml index f535355a624d1..5c7ba8635b617 100644 --- a/airflow/providers/salesforce/provider.yaml +++ b/airflow/providers/salesforce/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 5.4.1 - 5.4.0 - 5.3.0 - 5.2.0 diff --git a/airflow/providers/samba/CHANGELOG.rst b/airflow/providers/samba/CHANGELOG.rst index b3a720d4fea4f..746e88f5d7336 100644 --- a/airflow/providers/samba/CHANGELOG.rst +++ b/airflow/providers/samba/CHANGELOG.rst @@ -24,9 +24,22 @@ Changelog --------- +4.2.1 +..... + .. note:: This release dropped support for Python 3.7 + +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Providers (#31427)`` + 4.2.0 ..... diff --git a/airflow/providers/samba/__init__.py b/airflow/providers/samba/__init__.py index 0f9095ecce0ba..e151732b7a1a7 100644 --- a/airflow/providers/samba/__init__.py +++ b/airflow/providers/samba/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "4.2.0" +__version__ = "4.2.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/samba/provider.yaml b/airflow/providers/samba/provider.yaml index c5ab3b3ca19e6..0c40783dc3d67 100644 --- a/airflow/providers/samba/provider.yaml +++ b/airflow/providers/samba/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 4.2.1 - 4.2.0 - 4.1.0 - 4.0.0 diff --git a/airflow/providers/segment/CHANGELOG.rst b/airflow/providers/segment/CHANGELOG.rst index 54aaa10242e29..3148c8eb4391b 100644 --- a/airflow/providers/segment/CHANGELOG.rst +++ b/airflow/providers/segment/CHANGELOG.rst @@ -24,9 +24,21 @@ Changelog --------- +3.2.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Providers (#31427)`` + 3.2.0 ..... diff --git a/airflow/providers/segment/__init__.py b/airflow/providers/segment/__init__.py index 9ab88645dee87..0360f16bf9df6 100644 --- a/airflow/providers/segment/__init__.py +++ b/airflow/providers/segment/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.2.0" +__version__ = "3.2.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/segment/provider.yaml b/airflow/providers/segment/provider.yaml index 730d46b0fb470..2d9e865c552ec 100644 --- a/airflow/providers/segment/provider.yaml +++ b/airflow/providers/segment/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.2.1 - 3.2.0 - 3.1.0 - 3.0.0 diff --git a/airflow/providers/sendgrid/CHANGELOG.rst b/airflow/providers/sendgrid/CHANGELOG.rst index e74741604a914..a8ee20f4e8293 100644 --- a/airflow/providers/sendgrid/CHANGELOG.rst +++ b/airflow/providers/sendgrid/CHANGELOG.rst @@ -24,9 +24,21 @@ Changelog --------- +3.2.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Providers (#31427)`` + 3.2.0 ..... diff --git a/airflow/providers/sendgrid/__init__.py b/airflow/providers/sendgrid/__init__.py index 1b6cb78163ae6..4bfd2769736e6 100644 --- a/airflow/providers/sendgrid/__init__.py +++ b/airflow/providers/sendgrid/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.2.0" +__version__ = "3.2.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/sendgrid/provider.yaml b/airflow/providers/sendgrid/provider.yaml index f8e7eebde102c..35837c11f70a5 100644 --- a/airflow/providers/sendgrid/provider.yaml +++ b/airflow/providers/sendgrid/provider.yaml @@ -27,6 +27,7 @@ dependencies: suspended: false versions: + - 3.2.1 - 3.2.0 - 3.1.0 - 3.0.0 diff --git a/airflow/providers/sftp/CHANGELOG.rst b/airflow/providers/sftp/CHANGELOG.rst index e99e2a856888d..6f3891b20fbfb 100644 --- a/airflow/providers/sftp/CHANGELOG.rst +++ b/airflow/providers/sftp/CHANGELOG.rst @@ -24,9 +24,22 @@ Changelog --------- +4.3.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Improve docstrings in providers (#31681)`` + * ``Add D400 pydocstyle check - Providers (#31427)`` + 4.3.0 ..... diff --git a/airflow/providers/sftp/__init__.py b/airflow/providers/sftp/__init__.py index b3cae1ac80fba..667c882cb7deb 100644 --- a/airflow/providers/sftp/__init__.py +++ b/airflow/providers/sftp/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "4.3.0" +__version__ = "4.3.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/sftp/provider.yaml b/airflow/providers/sftp/provider.yaml index c52cf19559a4d..ec8adb1b7b687 100644 --- a/airflow/providers/sftp/provider.yaml +++ b/airflow/providers/sftp/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 4.3.1 - 4.3.0 - 4.2.4 - 4.2.3 diff --git a/airflow/providers/singularity/CHANGELOG.rst b/airflow/providers/singularity/CHANGELOG.rst index 6b067a483bc96..95e463f3104e8 100644 --- a/airflow/providers/singularity/CHANGELOG.rst +++ b/airflow/providers/singularity/CHANGELOG.rst @@ -24,9 +24,21 @@ Changelog --------- +3.2.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Providers (#31427)`` + 3.2.0 ..... diff --git a/airflow/providers/singularity/__init__.py b/airflow/providers/singularity/__init__.py index 70382c33044f8..f57c47e61ff88 100644 --- a/airflow/providers/singularity/__init__.py +++ b/airflow/providers/singularity/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.2.0" +__version__ = "3.2.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/singularity/provider.yaml b/airflow/providers/singularity/provider.yaml index fbda2fc4169bc..1cb7ae8a6f0d1 100644 --- a/airflow/providers/singularity/provider.yaml +++ b/airflow/providers/singularity/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.2.1 - 3.2.0 - 3.1.0 - 3.0.0 diff --git a/airflow/providers/slack/CHANGELOG.rst b/airflow/providers/slack/CHANGELOG.rst index 467d43f9af541..19d70f4dcd64e 100644 --- a/airflow/providers/slack/CHANGELOG.rst +++ b/airflow/providers/slack/CHANGELOG.rst @@ -24,9 +24,23 @@ Changelog --------- +7.3.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Remove Python 3.7 support (#30963)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Improve docstrings in providers (#31681)`` + * ``Add D400 pydocstyle check - Providers (#31427)`` + * ``Add note about dropping Python 3.7 for providers (#32015)`` + 7.3.0 ..... diff --git a/airflow/providers/slack/__init__.py b/airflow/providers/slack/__init__.py index 22a00fe344d43..0e5273d7790c5 100644 --- a/airflow/providers/slack/__init__.py +++ b/airflow/providers/slack/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "7.3.0" +__version__ = "7.3.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/slack/provider.yaml b/airflow/providers/slack/provider.yaml index 39a43327cb36c..c0de4f09729a7 100644 --- a/airflow/providers/slack/provider.yaml +++ b/airflow/providers/slack/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 7.3.1 - 7.3.0 - 7.2.0 - 7.1.1 diff --git a/airflow/providers/smtp/CHANGELOG.rst b/airflow/providers/smtp/CHANGELOG.rst index 2184078b76c15..29bb4951db6aa 100644 --- a/airflow/providers/smtp/CHANGELOG.rst +++ b/airflow/providers/smtp/CHANGELOG.rst @@ -24,9 +24,24 @@ Changelog --------- +1.2.0 +..... + .. note:: This release dropped support for Python 3.7 +Features +~~~~~~~~ + +* ``Add notifier for Smtp (#31359)`` + + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Providers (#31427)`` + * ``Fix ruff static check (#31762)`` + * ``Add note about dropping Python 3.7 for providers (#32015)`` + 1.1.0 ..... diff --git a/airflow/providers/smtp/__init__.py b/airflow/providers/smtp/__init__.py index 6652e2bc12b45..9b822281ed959 100644 --- a/airflow/providers/smtp/__init__.py +++ b/airflow/providers/smtp/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "1.1.0" +__version__ = "1.2.0" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/smtp/provider.yaml b/airflow/providers/smtp/provider.yaml index bf415a7be5595..9303246608692 100644 --- a/airflow/providers/smtp/provider.yaml +++ b/airflow/providers/smtp/provider.yaml @@ -24,6 +24,7 @@ description: | suspended: false versions: + - 1.2.0 - 1.1.0 - 1.0.1 - 1.0.0 diff --git a/airflow/providers/snowflake/CHANGELOG.rst b/airflow/providers/snowflake/CHANGELOG.rst index 4cbee3375e42d..a0272b3987fcd 100644 --- a/airflow/providers/snowflake/CHANGELOG.rst +++ b/airflow/providers/snowflake/CHANGELOG.rst @@ -24,9 +24,30 @@ Changelog --------- +4.2.0 +..... + .. note:: This release dropped support for Python 3.7 +Features +~~~~~~~~ + +* ``Add SnowflakeSqlApiOperator operator (#30698)`` + +Misc +~~~~ + +* ``SnowflakeSqlApiOperator - Change the base class (#31751)`` +* ``Moved sql_api_generate_jwt out of hooks folder (#31586)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check (#31742)`` + * ``Add D400 pydocstyle check - Providers (#31427)`` + * ``Improve docstrings in providers (#31681)`` + * ``Add note about dropping Python 3.7 for providers (#32015)`` + 4.1.0 ..... diff --git a/airflow/providers/snowflake/__init__.py b/airflow/providers/snowflake/__init__.py index 2faa9ab07b30d..5e403f026188f 100644 --- a/airflow/providers/snowflake/__init__.py +++ b/airflow/providers/snowflake/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "4.1.0" +__version__ = "4.2.0" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/snowflake/provider.yaml b/airflow/providers/snowflake/provider.yaml index fb00a9098bb23..1e68fbddca55f 100644 --- a/airflow/providers/snowflake/provider.yaml +++ b/airflow/providers/snowflake/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 4.2.0 - 4.1.0 - 4.0.5 - 4.0.4 diff --git a/airflow/providers/sqlite/CHANGELOG.rst b/airflow/providers/sqlite/CHANGELOG.rst index 5207512c85c0e..723cd6347efbe 100644 --- a/airflow/providers/sqlite/CHANGELOG.rst +++ b/airflow/providers/sqlite/CHANGELOG.rst @@ -24,9 +24,21 @@ Changelog --------- +3.4.2 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Providers (#31427)`` + 3.4.1 ..... diff --git a/airflow/providers/sqlite/__init__.py b/airflow/providers/sqlite/__init__.py index 7df73f4a96c9e..3803b982230c3 100644 --- a/airflow/providers/sqlite/__init__.py +++ b/airflow/providers/sqlite/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.4.1" +__version__ = "3.4.2" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/sqlite/provider.yaml b/airflow/providers/sqlite/provider.yaml index 23ce28b6baea8..e998cbc5fa793 100644 --- a/airflow/providers/sqlite/provider.yaml +++ b/airflow/providers/sqlite/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.4.2 - 3.4.1 - 3.4.0 - 3.3.2 diff --git a/airflow/providers/ssh/CHANGELOG.rst b/airflow/providers/ssh/CHANGELOG.rst index 894e7e99118f3..53f731a66c91a 100644 --- a/airflow/providers/ssh/CHANGELOG.rst +++ b/airflow/providers/ssh/CHANGELOG.rst @@ -24,9 +24,23 @@ Changelog --------- +3.7.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Remove Python 3.7 support (#30963)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Improve docstrings in providers (#31681)`` + * ``Add D400 pydocstyle check - Providers (#31427)`` + * ``Add note about dropping Python 3.7 for providers (#32015)`` + 3.7.0 ..... diff --git a/airflow/providers/ssh/__init__.py b/airflow/providers/ssh/__init__.py index 9d4768a2fe43c..8adf328642f93 100644 --- a/airflow/providers/ssh/__init__.py +++ b/airflow/providers/ssh/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.7.0" +__version__ = "3.7.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/ssh/provider.yaml b/airflow/providers/ssh/provider.yaml index 9d3fa3ed3c92a..316b3200f0d0c 100644 --- a/airflow/providers/ssh/provider.yaml +++ b/airflow/providers/ssh/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.7.1 - 3.7.0 - 3.6.0 - 3.5.0 diff --git a/airflow/providers/tableau/CHANGELOG.rst b/airflow/providers/tableau/CHANGELOG.rst index f3eb8f57ff6c1..86593829c333e 100644 --- a/airflow/providers/tableau/CHANGELOG.rst +++ b/airflow/providers/tableau/CHANGELOG.rst @@ -24,9 +24,21 @@ Changelog --------- +4.2.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Providers (#31427)`` + 4.2.0 ..... diff --git a/airflow/providers/tableau/__init__.py b/airflow/providers/tableau/__init__.py index a46f65d354e11..972d800f40340 100644 --- a/airflow/providers/tableau/__init__.py +++ b/airflow/providers/tableau/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "4.2.0" +__version__ = "4.2.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/tableau/provider.yaml b/airflow/providers/tableau/provider.yaml index 8d19d3bab3b0d..3510e2e968dcc 100644 --- a/airflow/providers/tableau/provider.yaml +++ b/airflow/providers/tableau/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 4.2.1 - 4.2.0 - 4.1.0 - 4.0.0 diff --git a/airflow/providers/tabular/CHANGELOG.rst b/airflow/providers/tabular/CHANGELOG.rst index 293daaf6f1ceb..5036652714352 100644 --- a/airflow/providers/tabular/CHANGELOG.rst +++ b/airflow/providers/tabular/CHANGELOG.rst @@ -23,9 +23,21 @@ Changelog --------- +1.2.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Providers (#31427)`` + 1.2.0 ..... diff --git a/airflow/providers/tabular/__init__.py b/airflow/providers/tabular/__init__.py index 74351f80614f5..9a3ca40c563e4 100644 --- a/airflow/providers/tabular/__init__.py +++ b/airflow/providers/tabular/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "1.2.0" +__version__ = "1.2.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/tabular/provider.yaml b/airflow/providers/tabular/provider.yaml index 22979aa5b48eb..b7b27fc8f9cb0 100644 --- a/airflow/providers/tabular/provider.yaml +++ b/airflow/providers/tabular/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 1.2.1 - 1.2.0 - 1.1.0 - 1.0.1 diff --git a/airflow/providers/telegram/CHANGELOG.rst b/airflow/providers/telegram/CHANGELOG.rst index fb19df7432c93..d9fc42be0dae6 100644 --- a/airflow/providers/telegram/CHANGELOG.rst +++ b/airflow/providers/telegram/CHANGELOG.rst @@ -24,9 +24,21 @@ Changelog --------- +4.1.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Providers (#31427)`` + 4.1.0 ..... diff --git a/airflow/providers/telegram/__init__.py b/airflow/providers/telegram/__init__.py index 2c2a38de28c50..c5c25bb788242 100644 --- a/airflow/providers/telegram/__init__.py +++ b/airflow/providers/telegram/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "4.1.0" +__version__ = "4.1.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/telegram/provider.yaml b/airflow/providers/telegram/provider.yaml index ff6f429da78fe..43578df98d5cc 100644 --- a/airflow/providers/telegram/provider.yaml +++ b/airflow/providers/telegram/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 4.1.1 - 4.1.0 - 4.0.0 - 3.1.1 diff --git a/airflow/providers/trino/CHANGELOG.rst b/airflow/providers/trino/CHANGELOG.rst index f2b4bd6634b81..24dcf62259ecc 100644 --- a/airflow/providers/trino/CHANGELOG.rst +++ b/airflow/providers/trino/CHANGELOG.rst @@ -24,9 +24,21 @@ Changelog --------- +5.1.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Providers (#31427)`` + 5.1.0 ..... diff --git a/airflow/providers/trino/__init__.py b/airflow/providers/trino/__init__.py index 14a4af30e1df1..37cb07d1a46e3 100644 --- a/airflow/providers/trino/__init__.py +++ b/airflow/providers/trino/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "5.1.0" +__version__ = "5.1.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/trino/provider.yaml b/airflow/providers/trino/provider.yaml index e015511c429ce..6c4c61a63ffeb 100644 --- a/airflow/providers/trino/provider.yaml +++ b/airflow/providers/trino/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 5.1.1 - 5.1.0 - 5.0.0 - 4.3.2 diff --git a/airflow/providers/vertica/CHANGELOG.rst b/airflow/providers/vertica/CHANGELOG.rst index f89b56220caef..d2e3c54c49a14 100644 --- a/airflow/providers/vertica/CHANGELOG.rst +++ b/airflow/providers/vertica/CHANGELOG.rst @@ -24,9 +24,21 @@ Changelog --------- +3.4.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add D400 pydocstyle check - Providers (#31427)`` + 3.4.0 ..... diff --git a/airflow/providers/vertica/__init__.py b/airflow/providers/vertica/__init__.py index 60a9ec0b3b87d..feba3e2826533 100644 --- a/airflow/providers/vertica/__init__.py +++ b/airflow/providers/vertica/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.4.0" +__version__ = "3.4.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/vertica/provider.yaml b/airflow/providers/vertica/provider.yaml index 4f2c32e23e4a2..90498fa1a1cdd 100644 --- a/airflow/providers/vertica/provider.yaml +++ b/airflow/providers/vertica/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.4.1 - 3.4.0 - 3.3.1 - 3.3.0 diff --git a/airflow/providers/zendesk/CHANGELOG.rst b/airflow/providers/zendesk/CHANGELOG.rst index 0d2d89ea0d0d6..5ff676b94ce4b 100644 --- a/airflow/providers/zendesk/CHANGELOG.rst +++ b/airflow/providers/zendesk/CHANGELOG.rst @@ -24,9 +24,20 @@ Changelog --------- +4.3.1 +..... + .. note:: This release dropped support for Python 3.7 +Misc +~~~~ + +* ``Add note about dropping Python 3.7 for providers (#32015)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 4.3.0 ..... diff --git a/airflow/providers/zendesk/__init__.py b/airflow/providers/zendesk/__init__.py index 232d4c9b37a3a..d34905f628a6a 100644 --- a/airflow/providers/zendesk/__init__.py +++ b/airflow/providers/zendesk/__init__.py @@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "4.3.0" +__version__ = "4.3.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/zendesk/provider.yaml b/airflow/providers/zendesk/provider.yaml index 3015eb58ba8b2..86101b4c08d6c 100644 --- a/airflow/providers/zendesk/provider.yaml +++ b/airflow/providers/zendesk/provider.yaml @@ -23,6 +23,7 @@ description: | suspended: false versions: + - 4.3.1 - 4.3.0 - 4.2.0 - 4.1.0 diff --git a/docs/apache-airflow-providers-airbyte/commits.rst b/docs/apache-airflow-providers-airbyte/commits.rst index bf3976c848cb6..b6a38ee99cef2 100644 --- a/docs/apache-airflow-providers-airbyte/commits.rst +++ b/docs/apache-airflow-providers-airbyte/commits.rst @@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================= + 3.3.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-airbyte/index.rst b/docs/apache-airflow-providers-airbyte/index.rst index 56cc1eca25125..bd27d6cc75d31 100644 --- a/docs/apache-airflow-providers-airbyte/index.rst +++ b/docs/apache-airflow-providers-airbyte/index.rst @@ -64,7 +64,7 @@ Package apache-airflow-providers-airbyte `Airbyte `__ -Release: 3.3.0 +Release: 3.3.1 Provider package ---------------- @@ -116,7 +116,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-airbyte 3.3.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-airbyte 3.3.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-airbyte 3.3.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-airbyte 3.3.1 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/airbyte/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-alibaba/commits.rst b/docs/apache-airflow-providers-alibaba/commits.rst index 44367325a30e1..f01e83594ba2d 100644 --- a/docs/apache-airflow-providers-alibaba/commits.rst +++ b/docs/apache-airflow-providers-alibaba/commits.rst @@ -28,14 +28,28 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +`9fa75aaf7a `_ 2023-05-29 ``Remove Python 3.7 support (#30963)`` +================================================================================================= =========== ============================================================= + 2.4.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-alibaba/index.rst b/docs/apache-airflow-providers-alibaba/index.rst index b82fda55546c6..8e0da17c71fdd 100644 --- a/docs/apache-airflow-providers-alibaba/index.rst +++ b/docs/apache-airflow-providers-alibaba/index.rst @@ -65,7 +65,7 @@ Package apache-airflow-providers-alibaba Alibaba Cloud integration (including `Alibaba Cloud `__). -Release: 2.4.0 +Release: 2.4.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-amazon/commits.rst b/docs/apache-airflow-providers-amazon/commits.rst index 38df019e38f4c..94b8c2bbfa603 100644 --- a/docs/apache-airflow-providers-amazon/commits.rst +++ b/docs/apache-airflow-providers-amazon/commits.rst @@ -28,6 +28,54 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`f0b91ac6a7 `_ 2023-06-20 ``Add 'deferrable' param in 'EmrContainerSensor' (#30945)`` +`e01ff4749c `_ 2023-06-19 ``Add realtime container execution logs for BatchOperator (#31837)`` +`41fb9b4c49 `_ 2023-06-17 ``Deprecate 'wait_for_completion' from 'EcsRegisterTaskDefinitionOperator' and 'EcsDeregisterTaskDefinitionOperator' (#31884)`` +`e0f21f43c6 `_ 2023-06-16 ``Various fixes on ECS run task operator (#31838)`` +`3689cee485 `_ 2023-06-15 ``Use a continuation token to get logs in ecs (#31824)`` +`9be22e4cc0 `_ 2023-06-15 ``Add deferrable option to EmrTerminateJobFlowOperator (#31646)`` +`67204565b8 `_ 2023-06-14 ``Add Deferrable option to EmrCreateJobFlowOperator (#31641)`` +`212a37fbec `_ 2023-06-14 ``Deferrable mode for EksCreateFargateProfileOperator and EksDeleteFargateProfileOperator (#31657)`` +`688f91b330 `_ 2023-06-14 ``Add deferrable mode to 'BatchSensor' (#30279)`` +`4e61b654c3 `_ 2023-06-08 ``Fetch status in while loop so as to not exit too early (#31804)`` +`b9b8da79b5 `_ 2023-06-08 ``Add deferrable mode for S3KeySensor (#31018)`` +`0854500769 `_ 2023-06-08 ``Amazon provider docstring improvements (#31729)`` +`3a7c9f277f `_ 2023-06-07 ``Add Deferrable mode to Emr Add Steps operator (#30928)`` +`359dfb5446 `_ 2023-06-07 ``Added config template field to EmrServerlessStartJobOperator (#31746)`` +`a3768b44e9 `_ 2023-06-07 ``[AWS hook] use provided client to get the official waiter on fallback (#31748)`` +`07ea574fed `_ 2023-06-07 ``Add D400 pydocstyle check (#31742)`` +`9e268e13b1 `_ 2023-06-07 ``Replace spelling directive with spelling:word-list (#31752)`` +`cda83c226b `_ 2023-06-05 ``Add D400 pydocstyle check - Amazon provider only (#31423)`` +`c255ac411b `_ 2023-06-05 ``Support of wildcard in S3ListOperator and S3ToGCSOperator (#31640)`` +`62938e945b `_ 2023-06-05 ``fix return values on glue operators deferrable mode (#31694)`` +`4c62a4f58b `_ 2023-06-05 ``Add back missing AsyncIterator import (#31710)`` +`f69dd29e87 `_ 2023-06-04 ``Remove aws unused code (#31610)`` +`a247a8f7c9 `_ 2023-06-04 ``Add deferrable mode in Redshift delete cluster (#30244)`` +`5dc6e5bfbe `_ 2023-06-02 ``allow anonymous AWS access (#31659)`` +`dc5bf3fd02 `_ 2023-06-02 ``Add discoverability for triggers in provider.yaml (#31576)`` +`635f94cc39 `_ 2023-05-31 ``Add deferrable mode to AWS glue operators (Job & Crawl) (#30948)`` +`a8c45b088e `_ 2023-05-31 ``handle missing LogUri in emr 'describe_cluster' API response (#31482)`` +`ce7766e0a5 `_ 2023-05-31 ``Add docstring and signature for _read_remote_logs (#31623)`` +`5b3382f638 `_ 2023-05-30 ``Add null check for host in Amazon Redshift connection (#31567)`` +`9fa75aaf7a `_ 2023-05-29 ``Remove Python 3.7 support (#30963)`` +`fb10108eec `_ 2023-05-27 ``add workgroup to templated fields (#31574)`` +`5b0f668b6d `_ 2023-05-25 ``Add deferrable param in BatchOperator (#30865)`` +`aac2f8f0a9 `_ 2023-05-24 ``AWS system test example_dynamodb_to_s3: add retry when fecthing the export time (#31388)`` +`44741f354c `_ 2023-05-24 `` Change Deferrable implementation for RedshiftResumeClusterOperator to follow standard (#30864)`` +`911bd1cdb8 `_ 2023-05-24 ``Add Deferrable Mode to RedshiftCreateClusterSnapshotOperator (#30856)`` +`0b7c095c9f `_ 2023-05-23 ``Change Deferrable implementation for RedshiftPauseClusterOperator to follow standard (#30853)`` +`c5597d1fab `_ 2023-05-23 ``Add Python 3.11 support (#27264)`` +================================================================================================= =========== =============================================================================================================================== + 8.1.0 ..... @@ -36,6 +84,7 @@ Latest change: 2023-05-19 ================================================================================================= =========== ==================================================================================================== Commit Committed Subject ================================================================================================= =========== ==================================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `0b4f1c116a `_ 2023-05-19 ``Fix AWS system test example_dynamodb (#31395)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` diff --git a/docs/apache-airflow-providers-amazon/index.rst b/docs/apache-airflow-providers-amazon/index.rst index e063c447d4bec..dff699d55a864 100644 --- a/docs/apache-airflow-providers-amazon/index.rst +++ b/docs/apache-airflow-providers-amazon/index.rst @@ -74,7 +74,7 @@ Package apache-airflow-providers-amazon Amazon integration (including `Amazon Web Services (AWS) `__). -Release: 8.1.0 +Release: 8.2.0 Provider package ---------------- @@ -108,6 +108,7 @@ PIP package Version required ``mypy-boto3-rds`` ``>=1.24.0`` ``mypy-boto3-redshift-data`` ``>=1.24.0`` ``mypy-boto3-appflow`` ``>=1.24.0`` +``asgiref`` ``mypy-boto3-s3`` ``>=1.24.0`` ======================================= ================== @@ -145,7 +146,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 8.1.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-amazon 8.1.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-amazon 8.2.0 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-amazon 8.2.0 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/amazon/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-apache-beam/commits.rst b/docs/apache-airflow-providers-apache-beam/commits.rst index b63819eeb6632..c0daa942d6212 100644 --- a/docs/apache-airflow-providers-apache-beam/commits.rst +++ b/docs/apache-airflow-providers-apache-beam/commits.rst @@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a473facf6c `_ 2023-06-01 ``Add D400 pydocstyle check - Apache providers only (#31424)`` +================================================================================================= =========== ============================================================== + 5.1.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `28d1bf8dfc `_ 2023-05-18 ``Update SDKs for google provider package (#30067)`` diff --git a/docs/apache-airflow-providers-apache-beam/index.rst b/docs/apache-airflow-providers-apache-beam/index.rst index 65bd976dd9ae2..30ceaf0868993 100644 --- a/docs/apache-airflow-providers-apache-beam/index.rst +++ b/docs/apache-airflow-providers-apache-beam/index.rst @@ -63,7 +63,7 @@ Package apache-airflow-providers-apache-beam `Apache Beam `__. -Release: 5.1.0 +Release: 5.1.1 Provider package ---------------- @@ -115,7 +115,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-apache-beam 5.1.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-apache-beam 5.1.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-apache-beam 5.1.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-apache-beam 5.1.1 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/apache/beam/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-apache-cassandra/commits.rst b/docs/apache-airflow-providers-apache-cassandra/commits.rst index 4f99a64bedb00..aa75b16437e9e 100644 --- a/docs/apache-airflow-providers-apache-cassandra/commits.rst +++ b/docs/apache-airflow-providers-apache-cassandra/commits.rst @@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a473facf6c `_ 2023-06-01 ``Add D400 pydocstyle check - Apache providers only (#31424)`` +================================================================================================= =========== ============================================================== + 3.2.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-apache-cassandra/index.rst b/docs/apache-airflow-providers-apache-cassandra/index.rst index 25757be659e9b..d33605c9fcfcc 100644 --- a/docs/apache-airflow-providers-apache-cassandra/index.rst +++ b/docs/apache-airflow-providers-apache-cassandra/index.rst @@ -64,7 +64,7 @@ Package apache-airflow-providers-apache-cassandra `Apache Cassandra `__. -Release: 3.2.0 +Release: 3.2.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-apache-drill/commits.rst b/docs/apache-airflow-providers-apache-drill/commits.rst index cdae73e175228..d38a4e282158f 100644 --- a/docs/apache-airflow-providers-apache-drill/commits.rst +++ b/docs/apache-airflow-providers-apache-drill/commits.rst @@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a473facf6c `_ 2023-06-01 ``Add D400 pydocstyle check - Apache providers only (#31424)`` +================================================================================================= =========== ============================================================== + 2.4.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-apache-drill/index.rst b/docs/apache-airflow-providers-apache-drill/index.rst index 201382736493c..461f5c009eb7f 100644 --- a/docs/apache-airflow-providers-apache-drill/index.rst +++ b/docs/apache-airflow-providers-apache-drill/index.rst @@ -64,7 +64,7 @@ Package apache-airflow-providers-apache-drill `Apache Drill `__. -Release: 2.4.0 +Release: 2.4.1 Provider package ---------------- @@ -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-apache-drill 2.4.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-apache-drill 2.4.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-apache-drill 2.4.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-apache-drill 2.4.1 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/apache/drill/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-apache-druid/commits.rst b/docs/apache-airflow-providers-apache-druid/commits.rst index 55b67eebe3fd0..3bd3ef2c84fb1 100644 --- a/docs/apache-airflow-providers-apache-druid/commits.rst +++ b/docs/apache-airflow-providers-apache-druid/commits.rst @@ -28,14 +28,28 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`13890788ae `_ 2023-06-07 ``Apache provider docstring improvements (#31730)`` +`a473facf6c `_ 2023-06-01 ``Add D400 pydocstyle check - Apache providers only (#31424)`` +================================================================================================= =========== ============================================================== + 3.4.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-apache-druid/index.rst b/docs/apache-airflow-providers-apache-druid/index.rst index 69c737f0c5449..967203ca639ae 100644 --- a/docs/apache-airflow-providers-apache-druid/index.rst +++ b/docs/apache-airflow-providers-apache-druid/index.rst @@ -64,7 +64,7 @@ Package apache-airflow-providers-apache-druid `Apache Druid `__. -Release: 3.4.0 +Release: 3.4.1 Provider package ---------------- @@ -118,7 +118,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-apache-druid 3.4.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-apache-druid 3.4.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-apache-druid 3.4.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-apache-druid 3.4.1 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/apache/druid/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-apache-flink/commits.rst b/docs/apache-airflow-providers-apache-flink/commits.rst index e1e15ad8b6f7a..83687f25256c4 100644 --- a/docs/apache-airflow-providers-apache-flink/commits.rst +++ b/docs/apache-airflow-providers-apache-flink/commits.rst @@ -28,14 +28,28 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a473facf6c `_ 2023-06-01 ``Add D400 pydocstyle check - Apache providers only (#31424)`` +`9fa75aaf7a `_ 2023-05-29 ``Remove Python 3.7 support (#30963)`` +================================================================================================= =========== ============================================================== + 1.1.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-apache-flink/index.rst b/docs/apache-airflow-providers-apache-flink/index.rst index f8104341158d6..cb5958b778bac 100644 --- a/docs/apache-airflow-providers-apache-flink/index.rst +++ b/docs/apache-airflow-providers-apache-flink/index.rst @@ -57,7 +57,7 @@ Package apache-airflow-providers-apache-flink `Apache Flink `__ -Release: 1.1.0 +Release: 1.1.1 Provider package ---------------- @@ -110,7 +110,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-apache-flink 1.1.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-apache-flink 1.1.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-apache-flink 1.1.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-apache-flink 1.1.1 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/apache/flink/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-apache-hdfs/commits.rst b/docs/apache-airflow-providers-apache-hdfs/commits.rst index a751111352b64..563b26c58fbf8 100644 --- a/docs/apache-airflow-providers-apache-hdfs/commits.rst +++ b/docs/apache-airflow-providers-apache-hdfs/commits.rst @@ -29,14 +29,29 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`d3c8881cc6 `_ 2023-06-08 ``Add HdfsTaskHandler to store task instance logs on HDFS (#31512)`` +`0261bc57bc `_ 2023-06-07 ``Updates release notes for snakebite-py3 incompatibility with protobuf (#31756)`` +`a473facf6c `_ 2023-06-01 ``Add D400 pydocstyle check - Apache providers only (#31424)`` +================================================================================================= =========== ================================================================================== + 4.0.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-apache-hive/commits.rst b/docs/apache-airflow-providers-apache-hive/commits.rst index 7f843b5839528..7377b4f31a644 100644 --- a/docs/apache-airflow-providers-apache-hive/commits.rst +++ b/docs/apache-airflow-providers-apache-hive/commits.rst @@ -28,14 +28,32 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`6724eeb621 `_ 2023-06-18 ``Sanitize beeline principal parameter (#31983)`` +`13890788ae `_ 2023-06-07 ``Apache provider docstring improvements (#31730)`` +`fbeb01cb17 `_ 2023-06-07 ``Replace unicodecsv with standard csv library (#31693)`` +`9276310a43 `_ 2023-06-05 ``Improve docstrings in providers (#31681)`` +`a473facf6c `_ 2023-06-01 ``Add D400 pydocstyle check - Apache providers only (#31424)`` +`c5597d1fab `_ 2023-05-23 ``Add Python 3.11 support (#27264)`` +================================================================================================= =========== ============================================================== + 6.1.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-apache-hive/index.rst b/docs/apache-airflow-providers-apache-hive/index.rst index 75ac0c2a4452c..da4d4e397ddc6 100644 --- a/docs/apache-airflow-providers-apache-hive/index.rst +++ b/docs/apache-airflow-providers-apache-hive/index.rst @@ -66,7 +66,7 @@ Package apache-airflow-providers-apache-hive `Apache Hive `__ -Release: 6.1.0 +Release: 6.1.1 Provider package ---------------- @@ -129,7 +129,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-apache-hive 6.1.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-apache-hive 6.1.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-apache-hive 6.1.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-apache-hive 6.1.1 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/apache/hive/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-apache-impala/commits.rst b/docs/apache-airflow-providers-apache-impala/commits.rst index 283d92d71fd6f..86c37726cd5d7 100644 --- a/docs/apache-airflow-providers-apache-impala/commits.rst +++ b/docs/apache-airflow-providers-apache-impala/commits.rst @@ -28,14 +28,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for kafka and impala (#32017)`` +================================================================================================= =========== ==================================================================== + 1.1.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-apache-impala/index.rst b/docs/apache-airflow-providers-apache-impala/index.rst index d8bb7aeb5bb8f..516043d5a5c83 100644 --- a/docs/apache-airflow-providers-apache-impala/index.rst +++ b/docs/apache-airflow-providers-apache-impala/index.rst @@ -63,7 +63,7 @@ Package apache-airflow-providers-apache-impala `Apache Impala `__. -Release: 1.1.0 +Release: 1.1.1 Provider package ---------------- @@ -115,7 +115,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-apache-impala 1.1.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-apache-impala 1.1.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-apache-impala 1.1.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-apache-impala 1.1.1 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/apache/impala/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-apache-kafka/commits.rst b/docs/apache-airflow-providers-apache-kafka/commits.rst index 23e938b8fa044..e15017bf58eee 100644 --- a/docs/apache-airflow-providers-apache-kafka/commits.rst +++ b/docs/apache-airflow-providers-apache-kafka/commits.rst @@ -28,14 +28,29 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for kafka and impala (#32017)`` +`dc5bf3fd02 `_ 2023-06-02 ``Add discoverability for triggers in provider.yaml (#31576)`` +`a473facf6c `_ 2023-06-01 ``Add D400 pydocstyle check - Apache providers only (#31424)`` +`9fa75aaf7a `_ 2023-05-29 ``Remove Python 3.7 support (#30963)`` +================================================================================================= =========== ==================================================================== + 1.1.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-apache-kafka/index.rst b/docs/apache-airflow-providers-apache-kafka/index.rst index bf98bef164b4f..278a3accb2ab9 100644 --- a/docs/apache-airflow-providers-apache-kafka/index.rst +++ b/docs/apache-airflow-providers-apache-kafka/index.rst @@ -70,7 +70,7 @@ Package apache-airflow-providers-apache-kafka `Apache Kafka `__ -Release: 1.1.0 +Release: 1.1.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-apache-kylin/commits.rst b/docs/apache-airflow-providers-apache-kylin/commits.rst index f6df3d2c3a6a8..d9296d6d0d696 100644 --- a/docs/apache-airflow-providers-apache-kylin/commits.rst +++ b/docs/apache-airflow-providers-apache-kylin/commits.rst @@ -28,14 +28,28 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`13890788ae `_ 2023-06-07 ``Apache provider docstring improvements (#31730)`` +`a473facf6c `_ 2023-06-01 ``Add D400 pydocstyle check - Apache providers only (#31424)`` +================================================================================================= =========== ============================================================== + 3.2.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-apache-kylin/index.rst b/docs/apache-airflow-providers-apache-kylin/index.rst index 1fa1490e7327e..6312c91ebd8fe 100644 --- a/docs/apache-airflow-providers-apache-kylin/index.rst +++ b/docs/apache-airflow-providers-apache-kylin/index.rst @@ -58,7 +58,7 @@ Package apache-airflow-providers-apache-kylin `Apache Kylin `__ -Release: 3.2.0 +Release: 3.2.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-apache-livy/commits.rst b/docs/apache-airflow-providers-apache-livy/commits.rst index a9aa57c345b53..3580de1bbf5bf 100644 --- a/docs/apache-airflow-providers-apache-livy/commits.rst +++ b/docs/apache-airflow-providers-apache-livy/commits.rst @@ -28,14 +28,31 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`13890788ae `_ 2023-06-07 ``Apache provider docstring improvements (#31730)`` +`361aa77d5d `_ 2023-06-05 ``Optimize deferred mode execution (#31685)`` +`dc5bf3fd02 `_ 2023-06-02 ``Add discoverability for triggers in provider.yaml (#31576)`` +`a473facf6c `_ 2023-06-01 ``Add D400 pydocstyle check - Apache providers only (#31424)`` +`bfb14f6ffa `_ 2023-05-25 ``Push Spark appId to XCOM for LivyOperator with deferrable mode (#31201)`` +================================================================================================= =========== =========================================================================== + 3.5.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-apache-livy/index.rst b/docs/apache-airflow-providers-apache-livy/index.rst index e8669e7b9153f..fcfd569ad0be1 100644 --- a/docs/apache-airflow-providers-apache-livy/index.rst +++ b/docs/apache-airflow-providers-apache-livy/index.rst @@ -63,7 +63,7 @@ Package apache-airflow-providers-apache-livy `Apache Livy `__ -Release: 3.5.0 +Release: 3.5.1 Provider package ---------------- @@ -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-apache-livy 3.5.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-apache-livy 3.5.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-apache-livy 3.5.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-apache-livy 3.5.1 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/apache/livy/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-apache-pig/commits.rst b/docs/apache-airflow-providers-apache-pig/commits.rst index b5e16907fa30e..c7785fa72a534 100644 --- a/docs/apache-airflow-providers-apache-pig/commits.rst +++ b/docs/apache-airflow-providers-apache-pig/commits.rst @@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a473facf6c `_ 2023-06-01 ``Add D400 pydocstyle check - Apache providers only (#31424)`` +================================================================================================= =========== ============================================================== + 4.1.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-apache-pig/index.rst b/docs/apache-airflow-providers-apache-pig/index.rst index bd0a252babb7a..554c54ac1d04a 100644 --- a/docs/apache-airflow-providers-apache-pig/index.rst +++ b/docs/apache-airflow-providers-apache-pig/index.rst @@ -63,7 +63,7 @@ Package apache-airflow-providers-apache-pig `Apache Pig `__ -Release: 4.1.0 +Release: 4.1.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-apache-pinot/commits.rst b/docs/apache-airflow-providers-apache-pinot/commits.rst index ed4246a404c78..6152491f9abdf 100644 --- a/docs/apache-airflow-providers-apache-pinot/commits.rst +++ b/docs/apache-airflow-providers-apache-pinot/commits.rst @@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a473facf6c `_ 2023-06-01 ``Add D400 pydocstyle check - Apache providers only (#31424)`` +================================================================================================= =========== ============================================================== + 4.1.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-apache-pinot/index.rst b/docs/apache-airflow-providers-apache-pinot/index.rst index bcef9de0a618f..b0f9b2c3aa822 100644 --- a/docs/apache-airflow-providers-apache-pinot/index.rst +++ b/docs/apache-airflow-providers-apache-pinot/index.rst @@ -57,7 +57,7 @@ Package apache-airflow-providers-apache-pinot `Apache Pinot `__ -Release: 4.1.0 +Release: 4.1.1 Provider package ---------------- @@ -110,7 +110,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-apache-pinot 4.1.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-apache-pinot 4.1.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-apache-pinot 4.1.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-apache-pinot 4.1.1 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/apache/pinot/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-apache-spark/commits.rst b/docs/apache-airflow-providers-apache-spark/commits.rst index 7e64130b3ae8e..ba6baeae5a042 100644 --- a/docs/apache-airflow-providers-apache-spark/commits.rst +++ b/docs/apache-airflow-providers-apache-spark/commits.rst @@ -28,14 +28,30 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`6becb70316 `_ 2023-06-16 ``SparkSubmitOperator: rename spark_conn_id to conn_id (#31952)`` +`13890788ae `_ 2023-06-07 ``Apache provider docstring improvements (#31730)`` +`9276310a43 `_ 2023-06-05 ``Improve docstrings in providers (#31681)`` +`a473facf6c `_ 2023-06-01 ``Add D400 pydocstyle check - Apache providers only (#31424)`` +================================================================================================= =========== ================================================================= + 4.1.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-apache-spark/index.rst b/docs/apache-airflow-providers-apache-spark/index.rst index 558a9cf80a122..da58352a8fc46 100644 --- a/docs/apache-airflow-providers-apache-spark/index.rst +++ b/docs/apache-airflow-providers-apache-spark/index.rst @@ -64,7 +64,7 @@ Package apache-airflow-providers-apache-spark `Apache Spark `__ -Release: 4.1.0 +Release: 4.1.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-apache-sqoop/commits.rst b/docs/apache-airflow-providers-apache-sqoop/commits.rst index 81bb7f33ecedf..12fde5c0ee781 100644 --- a/docs/apache-airflow-providers-apache-sqoop/commits.rst +++ b/docs/apache-airflow-providers-apache-sqoop/commits.rst @@ -28,14 +28,28 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`13890788ae `_ 2023-06-07 ``Apache provider docstring improvements (#31730)`` +`a473facf6c `_ 2023-06-01 ``Add D400 pydocstyle check - Apache providers only (#31424)`` +================================================================================================= =========== ============================================================== + 3.2.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-apache-sqoop/index.rst b/docs/apache-airflow-providers-apache-sqoop/index.rst index dfb52c6a24a93..0d627bf7c146d 100644 --- a/docs/apache-airflow-providers-apache-sqoop/index.rst +++ b/docs/apache-airflow-providers-apache-sqoop/index.rst @@ -51,7 +51,7 @@ Package apache-airflow-providers-apache-sqoop `Apache Sqoop `__ -Release: 3.2.0 +Release: 3.2.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-arangodb/commits.rst b/docs/apache-airflow-providers-arangodb/commits.rst index afc3ac316f304..ca53a57076277 100644 --- a/docs/apache-airflow-providers-arangodb/commits.rst +++ b/docs/apache-airflow-providers-arangodb/commits.rst @@ -28,14 +28,28 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +`9fa75aaf7a `_ 2023-05-29 ``Remove Python 3.7 support (#30963)`` +================================================================================================= =========== ============================================================= + 2.2.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-arangodb/index.rst b/docs/apache-airflow-providers-arangodb/index.rst index 296050b2f1e91..2e926f8746c25 100644 --- a/docs/apache-airflow-providers-arangodb/index.rst +++ b/docs/apache-airflow-providers-arangodb/index.rst @@ -64,7 +64,7 @@ Package apache-airflow-providers-arangodb `ArangoDB `__ -Release: 2.2.0 +Release: 2.2.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-asana/commits.rst b/docs/apache-airflow-providers-asana/commits.rst index e834ecdba6de8..3b0648c4f22b5 100644 --- a/docs/apache-airflow-providers-asana/commits.rst +++ b/docs/apache-airflow-providers-asana/commits.rst @@ -28,14 +28,29 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`9276310a43 `_ 2023-06-05 ``Improve docstrings in providers (#31681)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +`9fa75aaf7a `_ 2023-05-29 ``Remove Python 3.7 support (#30963)`` +================================================================================================= =========== ============================================================= + 2.2.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-asana/index.rst b/docs/apache-airflow-providers-asana/index.rst index c37a23a9f0624..447e19066d43c 100644 --- a/docs/apache-airflow-providers-asana/index.rst +++ b/docs/apache-airflow-providers-asana/index.rst @@ -65,7 +65,7 @@ Package apache-airflow-providers-asana `Asana `__ -Release: 2.2.0 +Release: 2.2.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-atlassian-jira/commits.rst b/docs/apache-airflow-providers-atlassian-jira/commits.rst index acaf88584ece4..165dd13703ed1 100644 --- a/docs/apache-airflow-providers-atlassian-jira/commits.rst +++ b/docs/apache-airflow-providers-atlassian-jira/commits.rst @@ -28,14 +28,29 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`ab8c9ec254 `_ 2023-06-08 ``Fix: JiraOperator support any return response from Jira client (#31672)`` +`9276310a43 `_ 2023-06-05 ``Improve docstrings in providers (#31681)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== =========================================================================== + 2.1.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-atlassian-jira/index.rst b/docs/apache-airflow-providers-atlassian-jira/index.rst index efd6621ec9f41..9f73c3bd832f3 100644 --- a/docs/apache-airflow-providers-atlassian-jira/index.rst +++ b/docs/apache-airflow-providers-atlassian-jira/index.rst @@ -51,7 +51,7 @@ Package apache-airflow-providers-atlassian-jira `Atlassian Jira `__ -Release: 2.1.0 +Release: 2.1.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-celery/commits.rst b/docs/apache-airflow-providers-celery/commits.rst index 0952a64a0dd6c..760e1b64aed71 100644 --- a/docs/apache-airflow-providers-celery/commits.rst +++ b/docs/apache-airflow-providers-celery/commits.rst @@ -28,14 +28,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +================================================================================================= =========== ============================================================= + 3.2.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-celery/index.rst b/docs/apache-airflow-providers-celery/index.rst index 469379b89958f..1bc1a5f7e01b6 100644 --- a/docs/apache-airflow-providers-celery/index.rst +++ b/docs/apache-airflow-providers-celery/index.rst @@ -46,7 +46,7 @@ Package apache-airflow-providers-celery `Celery `__ -Release: 3.2.0 +Release: 3.2.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-cloudant/commits.rst b/docs/apache-airflow-providers-cloudant/commits.rst index e65d60350dd6d..2d2513be03732 100644 --- a/docs/apache-airflow-providers-cloudant/commits.rst +++ b/docs/apache-airflow-providers-cloudant/commits.rst @@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================= + 3.2.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-cloudant/index.rst b/docs/apache-airflow-providers-cloudant/index.rst index 53ecdf87cdeba..067ab2e6c3667 100644 --- a/docs/apache-airflow-providers-cloudant/index.rst +++ b/docs/apache-airflow-providers-cloudant/index.rst @@ -46,7 +46,7 @@ Package apache-airflow-providers-cloudant `IBM Cloudant `__ -Release: 3.2.0 +Release: 3.2.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-cncf-kubernetes/commits.rst b/docs/apache-airflow-providers-cncf-kubernetes/commits.rst index b6ef737d17fdb..d0be3b36022ef 100644 --- a/docs/apache-airflow-providers-cncf-kubernetes/commits.rst +++ b/docs/apache-airflow-providers-cncf-kubernetes/commits.rst @@ -28,6 +28,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`66299338eb `_ 2023-06-18 ``add a return when the event is yielded in a loop to stop the execution (#31985)`` +`07ea574fed `_ 2023-06-07 ``Add D400 pydocstyle check (#31742)`` +`d8086a3db5 `_ 2023-06-05 ``Add possibility to disable logging the pod template in a case when task fails (#31595)`` +`def4b53765 `_ 2023-06-05 ``Fix Fargate logging for AWS system tests (#31622)`` +`86b5ba2802 `_ 2023-06-04 ``Remove return statement after yield from triggers class (#31703)`` +`0fa8c44527 `_ 2023-06-04 ``KubernetesResourceOperator - KubernetesDeleteResourceOperator & KubernetesCreateResourceOperator (#29930)`` +`dc5bf3fd02 `_ 2023-06-02 ``Add discoverability for triggers in provider.yaml (#31576)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +`9fa75aaf7a `_ 2023-05-29 ``Remove Python 3.7 support (#30963)`` +================================================================================================= =========== ============================================================================================================= + 7.0.0 ..... @@ -36,6 +56,7 @@ Latest change: 2023-05-19 ================================================================================================= =========== ================================================================================================ Commit Committed Subject ================================================================================================= =========== ================================================================================================ +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `a1f5a5425e `_ 2023-05-19 ``Remove deprecated features from KubernetesHook (#31402)`` `54f1fb0574 `_ 2023-05-19 ``Docstring improvements (#31375)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` diff --git a/docs/apache-airflow-providers-cncf-kubernetes/index.rst b/docs/apache-airflow-providers-cncf-kubernetes/index.rst index 36dbdcf5f03d1..5947fd9a7422d 100644 --- a/docs/apache-airflow-providers-cncf-kubernetes/index.rst +++ b/docs/apache-airflow-providers-cncf-kubernetes/index.rst @@ -65,7 +65,7 @@ Package apache-airflow-providers-cncf-kubernetes `Kubernetes `__ -Release: 7.0.0 +Release: 7.1.0 Provider package ---------------- diff --git a/docs/apache-airflow-providers-common-sql/commits.rst b/docs/apache-airflow-providers-common-sql/commits.rst index d3c95f32fe225..385dfa45462eb 100644 --- a/docs/apache-airflow-providers-common-sql/commits.rst +++ b/docs/apache-airflow-providers-common-sql/commits.rst @@ -28,14 +28,28 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-05 ``Improve docstrings in providers (#31681)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +`9fa75aaf7a `_ 2023-05-29 ``Remove Python 3.7 support (#30963)`` +================================================================================================= =========== ================================================== + 1.5.1 ..... -Latest change: 2023-05-23 +Latest change: 2023-05-24 ================================================================================================= =========== ====================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================== +`d745cee3db `_ 2023-05-24 ``Prepare adhoc wave of Providers (#31478)`` `547e352578 `_ 2023-05-23 ``Bring back min-airflow-version for preinstalled providers (#31469)`` ================================================================================================= =========== ====================================================================== diff --git a/docs/apache-airflow-providers-common-sql/index.rst b/docs/apache-airflow-providers-common-sql/index.rst index 150a46f5a8559..afcc24d0f9462 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.5.1 +Release: 1.5.2 Provider package ---------------- diff --git a/docs/apache-airflow-providers-databricks/commits.rst b/docs/apache-airflow-providers-databricks/commits.rst index 91d690ce2fd7c..bfc05853edbd8 100644 --- a/docs/apache-airflow-providers-databricks/commits.rst +++ b/docs/apache-airflow-providers-databricks/commits.rst @@ -28,14 +28,35 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`69bc90b824 `_ 2023-06-19 ``Fix type annotation (#31888)`` +`66299338eb `_ 2023-06-18 ``add a return when the event is yielded in a loop to stop the execution (#31985)`` +`7b096483fa `_ 2023-06-14 ``Making Databricks run related multi-query string in one session again (#31898) (#31899)`` +`049c6184b7 `_ 2023-06-08 ``Fix Databricks SQL operator serialization (#31780)`` +`9276310a43 `_ 2023-06-05 ``Improve docstrings in providers (#31681)`` +`86b5ba2802 `_ 2023-06-04 ``Remove return statement after yield from triggers class (#31703)`` +`dc5bf3fd02 `_ 2023-06-02 ``Add discoverability for triggers in provider.yaml (#31576)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +`9fa75aaf7a `_ 2023-05-29 ``Remove Python 3.7 support (#30963)`` +================================================================================================= =========== =========================================================================================== + 4.2.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-databricks/index.rst b/docs/apache-airflow-providers-databricks/index.rst index da868e2b537e9..a3d96eef7cf4d 100644 --- a/docs/apache-airflow-providers-databricks/index.rst +++ b/docs/apache-airflow-providers-databricks/index.rst @@ -65,7 +65,7 @@ Package apache-airflow-providers-databricks `Databricks `__ -Release: 4.2.0 +Release: 4.3.0 Provider package ---------------- @@ -120,7 +120,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-databricks 4.2.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-databricks 4.2.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-databricks 4.3.0 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-databricks 4.3.0 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/databricks/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-datadog/commits.rst b/docs/apache-airflow-providers-datadog/commits.rst index 537ab87af9fc5..bb028bc6daa40 100644 --- a/docs/apache-airflow-providers-datadog/commits.rst +++ b/docs/apache-airflow-providers-datadog/commits.rst @@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================= + 3.3.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-datadog/index.rst b/docs/apache-airflow-providers-datadog/index.rst index af5e127402dd6..74af7c7531579 100644 --- a/docs/apache-airflow-providers-datadog/index.rst +++ b/docs/apache-airflow-providers-datadog/index.rst @@ -57,7 +57,7 @@ Package apache-airflow-providers-datadog `Datadog `__ -Release: 3.3.0 +Release: 3.3.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-dbt-cloud/commits.rst b/docs/apache-airflow-providers-dbt-cloud/commits.rst index c0fad954d8752..a67dc83fbd6cb 100644 --- a/docs/apache-airflow-providers-dbt-cloud/commits.rst +++ b/docs/apache-airflow-providers-dbt-cloud/commits.rst @@ -28,14 +28,30 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`9276310a43 `_ 2023-06-05 ``Improve docstrings in providers (#31681)`` +`dc5bf3fd02 `_ 2023-06-02 ``Add discoverability for triggers in provider.yaml (#31576)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +`9fa75aaf7a `_ 2023-05-29 ``Remove Python 3.7 support (#30963)`` +================================================================================================= =========== ============================================================== + 3.2.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-dbt-cloud/index.rst b/docs/apache-airflow-providers-dbt-cloud/index.rst index 6f0f7676c6298..b5052373a968c 100644 --- a/docs/apache-airflow-providers-dbt-cloud/index.rst +++ b/docs/apache-airflow-providers-dbt-cloud/index.rst @@ -69,7 +69,7 @@ Package apache-airflow-providers-dbt-cloud `dbt Cloud `__ -Release: 3.2.0 +Release: 3.2.1 Provider package ---------------- @@ -123,7 +123,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-dbt-cloud 3.2.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-dbt-cloud 3.2.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-dbt-cloud 3.2.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-dbt-cloud 3.2.1 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/dbt/cloud/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-dingding/commits.rst b/docs/apache-airflow-providers-dingding/commits.rst index 1899aad096ec0..c30734c5e4e47 100644 --- a/docs/apache-airflow-providers-dingding/commits.rst +++ b/docs/apache-airflow-providers-dingding/commits.rst @@ -28,14 +28,28 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`9276310a43 `_ 2023-06-05 ``Improve docstrings in providers (#31681)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================= + 3.2.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-dingding/index.rst b/docs/apache-airflow-providers-dingding/index.rst index 20cc79b7216be..eaaca2e8541b9 100644 --- a/docs/apache-airflow-providers-dingding/index.rst +++ b/docs/apache-airflow-providers-dingding/index.rst @@ -64,7 +64,7 @@ Package apache-airflow-providers-dingding `Dingding `__ -Release: 3.2.0 +Release: 3.2.1 Provider package ---------------- @@ -116,7 +116,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-dingding 3.2.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-dingding 3.2.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-dingding 3.2.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-dingding 3.2.1 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/dingding/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-discord/commits.rst b/docs/apache-airflow-providers-discord/commits.rst index f0baf3c4b4d53..bbb590b786150 100644 --- a/docs/apache-airflow-providers-discord/commits.rst +++ b/docs/apache-airflow-providers-discord/commits.rst @@ -28,14 +28,28 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`bdfebad5c9 `_ 2023-06-16 ``Add 'DiscordNotifier' (#31273)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================= + 3.2.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-discord/index.rst b/docs/apache-airflow-providers-discord/index.rst index b4dc66934ecee..81f0753b1850c 100644 --- a/docs/apache-airflow-providers-discord/index.rst +++ b/docs/apache-airflow-providers-discord/index.rst @@ -46,7 +46,7 @@ Package apache-airflow-providers-discord `Discord `__ -Release: 3.2.0 +Release: 3.3.0 Provider package ---------------- @@ -98,7 +98,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-discord 3.2.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-discord 3.2.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-discord 3.3.0 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-discord 3.3.0 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/discord/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-docker/commits.rst b/docs/apache-airflow-providers-docker/commits.rst index 66d619ec04078..521f9a4cb05a4 100644 --- a/docs/apache-airflow-providers-docker/commits.rst +++ b/docs/apache-airflow-providers-docker/commits.rst @@ -28,14 +28,30 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`07ea574fed `_ 2023-06-07 ``Add D400 pydocstyle check (#31742)`` +`9276310a43 `_ 2023-06-05 ``Improve docstrings in providers (#31681)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +`9fa75aaf7a `_ 2023-05-29 ``Remove Python 3.7 support (#30963)`` +================================================================================================= =========== ============================================================= + 3.7.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d8c0e3009a `_ 2023-05-17 ``adding docker port expose capability (#30730)`` diff --git a/docs/apache-airflow-providers-docker/index.rst b/docs/apache-airflow-providers-docker/index.rst index 0505c6da4dc37..d306f55479133 100644 --- a/docs/apache-airflow-providers-docker/index.rst +++ b/docs/apache-airflow-providers-docker/index.rst @@ -59,7 +59,7 @@ Package apache-airflow-providers-docker `Docker `__ -Release: 3.7.0 +Release: 3.7.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-elasticsearch/commits.rst b/docs/apache-airflow-providers-elasticsearch/commits.rst index 7389e404e622e..48b8cdbeefb83 100644 --- a/docs/apache-airflow-providers-elasticsearch/commits.rst +++ b/docs/apache-airflow-providers-elasticsearch/commits.rst @@ -28,14 +28,29 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`9276310a43 `_ 2023-06-05 ``Improve docstrings in providers (#31681)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +`9fa75aaf7a `_ 2023-05-29 ``Remove Python 3.7 support (#30963)`` +================================================================================================= =========== ============================================================= + 4.5.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-elasticsearch/index.rst b/docs/apache-airflow-providers-elasticsearch/index.rst index d739917222122..24451a7921e96 100644 --- a/docs/apache-airflow-providers-elasticsearch/index.rst +++ b/docs/apache-airflow-providers-elasticsearch/index.rst @@ -66,7 +66,7 @@ Package apache-airflow-providers-elasticsearch `Elasticsearch `__ -Release: 4.5.0 +Release: 4.5.1 Provider package ---------------- @@ -121,7 +121,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-elasticsearch 4.5.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-elasticsearch 4.5.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-elasticsearch 4.5.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-elasticsearch 4.5.1 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/elasticsearch/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-exasol/commits.rst b/docs/apache-airflow-providers-exasol/commits.rst index 258c220ea39b2..1f393d3fe6b17 100644 --- a/docs/apache-airflow-providers-exasol/commits.rst +++ b/docs/apache-airflow-providers-exasol/commits.rst @@ -28,14 +28,28 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`9276310a43 `_ 2023-06-05 ``Improve docstrings in providers (#31681)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================= + 4.2.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-exasol/index.rst b/docs/apache-airflow-providers-exasol/index.rst index 07772d54fe390..e04c31a3a1019 100644 --- a/docs/apache-airflow-providers-exasol/index.rst +++ b/docs/apache-airflow-providers-exasol/index.rst @@ -51,7 +51,7 @@ Package apache-airflow-providers-exasol `Exasol `__ -Release: 4.2.0 +Release: 4.2.1 Provider package ---------------- @@ -105,7 +105,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-exasol 4.2.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-exasol 4.2.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-exasol 4.2.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-exasol 4.2.1 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/exasol/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-facebook/commits.rst b/docs/apache-airflow-providers-facebook/commits.rst index 575af11e7e55c..2dae78d3374a6 100644 --- a/docs/apache-airflow-providers-facebook/commits.rst +++ b/docs/apache-airflow-providers-facebook/commits.rst @@ -28,14 +28,29 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`9276310a43 `_ 2023-06-05 ``Improve docstrings in providers (#31681)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +`9fa75aaf7a `_ 2023-05-29 ``Remove Python 3.7 support (#30963)`` +================================================================================================= =========== ============================================================= + 3.2.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-facebook/index.rst b/docs/apache-airflow-providers-facebook/index.rst index 5cc48c27a9d1e..395370256d7c1 100644 --- a/docs/apache-airflow-providers-facebook/index.rst +++ b/docs/apache-airflow-providers-facebook/index.rst @@ -51,7 +51,7 @@ Package apache-airflow-providers-facebook `Facebook Ads `__ -Release: 3.2.0 +Release: 3.2.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-ftp/commits.rst b/docs/apache-airflow-providers-ftp/commits.rst index 9c90fdf33f58e..61396d3a9999b 100644 --- a/docs/apache-airflow-providers-ftp/commits.rst +++ b/docs/apache-airflow-providers-ftp/commits.rst @@ -28,14 +28,28 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +`9fa75aaf7a `_ 2023-05-29 ``Remove Python 3.7 support (#30963)`` +================================================================================================= =========== ============================================================= + 3.4.1 ..... -Latest change: 2023-05-23 +Latest change: 2023-05-24 ================================================================================================= =========== ====================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================== +`d745cee3db `_ 2023-05-24 ``Prepare adhoc wave of Providers (#31478)`` `547e352578 `_ 2023-05-23 ``Bring back min-airflow-version for preinstalled providers (#31469)`` ================================================================================================= =========== ====================================================================== diff --git a/docs/apache-airflow-providers-ftp/index.rst b/docs/apache-airflow-providers-ftp/index.rst index cd1c620c9a6bd..e027aabb15767 100644 --- a/docs/apache-airflow-providers-ftp/index.rst +++ b/docs/apache-airflow-providers-ftp/index.rst @@ -71,7 +71,7 @@ Package apache-airflow-providers-ftp `File Transfer Protocol (FTP) `__ -Release: 3.4.1 +Release: 3.4.2 Provider package ---------------- diff --git a/docs/apache-airflow-providers-github/commits.rst b/docs/apache-airflow-providers-github/commits.rst index e67faefe6946a..5ce058245a98b 100644 --- a/docs/apache-airflow-providers-github/commits.rst +++ b/docs/apache-airflow-providers-github/commits.rst @@ -28,14 +28,28 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`9276310a43 `_ 2023-06-05 ``Improve docstrings in providers (#31681)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================= + 2.3.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-github/index.rst b/docs/apache-airflow-providers-github/index.rst index 5a73cbf73098a..83c2445b9dec2 100644 --- a/docs/apache-airflow-providers-github/index.rst +++ b/docs/apache-airflow-providers-github/index.rst @@ -71,7 +71,7 @@ Package apache-airflow-providers-github `GitHub `__ -Release: 2.3.0 +Release: 2.3.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-google/commits.rst b/docs/apache-airflow-providers-google/commits.rst index afae653b72dd3..22631f117d147 100644 --- a/docs/apache-airflow-providers-google/commits.rst +++ b/docs/apache-airflow-providers-google/commits.rst @@ -35,14 +35,50 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`f2ebc292fe `_ 2023-06-19 ``Provide missing project id and creds for TabularDataset (#31991)`` +`66299338eb `_ 2023-06-18 ``add a return when the event is yielded in a loop to stop the execution (#31985)`` +`e6960f1ad6 `_ 2023-06-15 ``Revert "Fix 'BIGQUERY_JOB_DETAILS_LINK_FMT' in 'BigQueryConsoleLink' (#31457)" (#31935)`` +`c7072c0490 `_ 2023-06-15 ``Fix 'BIGQUERY_JOB_DETAILS_LINK_FMT' in 'BigQueryConsoleLink' (#31457)`` +`a81ac70b33 `_ 2023-06-15 ``Add deferrable mode to PubsubPullSensor (#31284)`` +`b502e665d6 `_ 2023-06-14 ``Add a new param to set parquet row group size in 'BaseSQLToGCSOperator' (#31831)`` +`810d46776a `_ 2023-06-11 ``Implement MetastoreHivePartitionSensor (#31016)`` +`233663046d `_ 2023-06-08 ``Add 'cacheControl' field to google cloud storage (#31338)`` +`ba3665f76a `_ 2023-06-08 ``Bigquery: fix links for already existing tables and datasets. (#31589)`` +`fbeb01cb17 `_ 2023-06-07 ``Replace unicodecsv with standard csv library (#31693)`` +`d91861d3bd `_ 2023-06-07 ``Optimize deferrable mode (#31758)`` +`9e268e13b1 `_ 2023-06-07 ``Replace spelling directive with spelling:word-list (#31752)`` +`36ffbee4aa `_ 2023-06-05 ``Add D400 pydocstyle check - Google provider only (#31422)`` +`495ae23d45 `_ 2023-06-05 ``Optimize deferrable mode execution for 'DataprocSubmitJobOperator' (#31317)`` +`86b5ba2802 `_ 2023-06-04 ``Remove return statement after yield from triggers class (#31703)`` +`dc5bf3fd02 `_ 2023-06-02 ``Add discoverability for triggers in provider.yaml (#31576)`` +`47c2023df2 `_ 2023-05-31 ``Add 'preserveAsciiControlCharacters' to 'src_fmt_configs' (#31643)`` +`e3ec1ac72e `_ 2023-05-30 ``Add support for credential configuation file auth to Google Secrets Manager secrets backend (#31597)`` +`9fa75aaf7a `_ 2023-05-29 ``Remove Python 3.7 support (#30963)`` +`ef40148170 `_ 2023-05-26 ``Add credential configuration file support to Google Cloud Hook (#31548)`` +`22e44ab9f2 `_ 2023-05-26 ``FIPS environments: Mark uses of md5 as "not-used-for-security" (#31171)`` +`5ae9728db7 `_ 2023-05-25 ``Add deferrable mode to 'GCSUploadSessionCompleteSensor' (#31081)`` +`28f2e70916 `_ 2023-05-25 ``Optimize deferrable mode execution for 'BigQueryInsertJobOperator' (#31249)`` +`769e204d53 `_ 2023-05-24 ``Add append_job_name parameter in DataflowStartFlexTemplateOperator (#31511)`` +================================================================================================= =========== ======================================================================================================== + 10.1.1 ...... -Latest change: 2023-05-23 +Latest change: 2023-05-24 ================================================================================================= =========== ============================================================================================== Commit Committed Subject ================================================================================================= =========== ============================================================================================== +`d745cee3db `_ 2023-05-24 ``Prepare adhoc wave of Providers (#31478)`` `c082aec089 `_ 2023-05-23 ``Fix accessing a GKE cluster through the private endpoint in 'GKEStartPodOperator' (#31391)`` `0d6e626b05 `_ 2023-05-22 ``Fix 'BigQueryGetDataOperator''s query job bugs in deferrable mode (#31433)`` ================================================================================================= =========== ============================================================================================== diff --git a/docs/apache-airflow-providers-google/index.rst b/docs/apache-airflow-providers-google/index.rst index 3c1fd76493422..a77877b7ed31e 100644 --- a/docs/apache-airflow-providers-google/index.rst +++ b/docs/apache-airflow-providers-google/index.rst @@ -76,7 +76,7 @@ Google services including: - `Google Workspace `__ (formerly Google Suite) -Release: 10.1.1 +Release: 10.2.0 Provider package ---------------- @@ -194,7 +194,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-google 10.1.1 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-google 10.1.1 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-google 10.2.0 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-google 10.2.0 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/google/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-grpc/commits.rst b/docs/apache-airflow-providers-grpc/commits.rst index af8ee65893124..294dba836c1b9 100644 --- a/docs/apache-airflow-providers-grpc/commits.rst +++ b/docs/apache-airflow-providers-grpc/commits.rst @@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================= + 3.2.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-grpc/index.rst b/docs/apache-airflow-providers-grpc/index.rst index 3ecb1cbf73958..31f6e599245ce 100644 --- a/docs/apache-airflow-providers-grpc/index.rst +++ b/docs/apache-airflow-providers-grpc/index.rst @@ -57,7 +57,7 @@ Package apache-airflow-providers-grpc `gRPC `__ -Release: 3.2.0 +Release: 3.2.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-hashicorp/commits.rst b/docs/apache-airflow-providers-hashicorp/commits.rst index ed2e6db111e88..e6bfc9a669d4f 100644 --- a/docs/apache-airflow-providers-hashicorp/commits.rst +++ b/docs/apache-airflow-providers-hashicorp/commits.rst @@ -28,14 +28,29 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +`41ea700cbd `_ 2023-05-30 ``Fix hashicorp some client authentication methods (#31593)`` +`9fa75aaf7a `_ 2023-05-29 ``Remove Python 3.7 support (#30963)`` +================================================================================================= =========== ============================================================= + 3.4.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-hashicorp/index.rst b/docs/apache-airflow-providers-hashicorp/index.rst index bb057e77a44e7..df6c3725dfd53 100644 --- a/docs/apache-airflow-providers-hashicorp/index.rst +++ b/docs/apache-airflow-providers-hashicorp/index.rst @@ -58,7 +58,7 @@ Package apache-airflow-providers-hashicorp Hashicorp including `Hashicorp Vault `__ -Release: 3.4.0 +Release: 3.4.1 Provider package ---------------- @@ -110,7 +110,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-hashicorp 3.4.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-hashicorp 3.4.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-hashicorp 3.4.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-hashicorp 3.4.1 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/hashicorp/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-http/commits.rst b/docs/apache-airflow-providers-http/commits.rst index 0c0ea3848d372..4618cdfa3fb52 100644 --- a/docs/apache-airflow-providers-http/commits.rst +++ b/docs/apache-airflow-providers-http/commits.rst @@ -28,14 +28,28 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`9276310a43 `_ 2023-06-05 ``Improve docstrings in providers (#31681)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================= + 4.4.1 ..... -Latest change: 2023-05-23 +Latest change: 2023-05-24 ================================================================================================= =========== ====================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================== +`d745cee3db `_ 2023-05-24 ``Prepare adhoc wave of Providers (#31478)`` `547e352578 `_ 2023-05-23 ``Bring back min-airflow-version for preinstalled providers (#31469)`` ================================================================================================= =========== ====================================================================== diff --git a/docs/apache-airflow-providers-http/index.rst b/docs/apache-airflow-providers-http/index.rst index 9cc6bdbdf829d..48c5d42f39697 100644 --- a/docs/apache-airflow-providers-http/index.rst +++ b/docs/apache-airflow-providers-http/index.rst @@ -65,7 +65,7 @@ Package apache-airflow-providers-http `Hypertext Transfer Protocol (HTTP) `__ -Release: 4.4.1 +Release: 4.4.2 Provider package ---------------- diff --git a/docs/apache-airflow-providers-imap/commits.rst b/docs/apache-airflow-providers-imap/commits.rst index 9e8b4bcbf973f..e61ba8b85a0cb 100644 --- a/docs/apache-airflow-providers-imap/commits.rst +++ b/docs/apache-airflow-providers-imap/commits.rst @@ -28,14 +28,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +================================================================================================= =========== ============================================================= + 3.2.1 ..... -Latest change: 2023-05-23 +Latest change: 2023-05-24 ================================================================================================= =========== ====================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================== +`d745cee3db `_ 2023-05-24 ``Prepare adhoc wave of Providers (#31478)`` `547e352578 `_ 2023-05-23 ``Bring back min-airflow-version for preinstalled providers (#31469)`` ================================================================================================= =========== ====================================================================== diff --git a/docs/apache-airflow-providers-imap/index.rst b/docs/apache-airflow-providers-imap/index.rst index 121f39c36daaf..dba38f5fd22b4 100644 --- a/docs/apache-airflow-providers-imap/index.rst +++ b/docs/apache-airflow-providers-imap/index.rst @@ -52,7 +52,7 @@ Package apache-airflow-providers-imap `Internet Message Access Protocol (IMAP) `__ -Release: 3.2.1 +Release: 3.2.2 Provider package ---------------- diff --git a/docs/apache-airflow-providers-influxdb/commits.rst b/docs/apache-airflow-providers-influxdb/commits.rst index c4e070b4d9728..1f164cc485b07 100644 --- a/docs/apache-airflow-providers-influxdb/commits.rst +++ b/docs/apache-airflow-providers-influxdb/commits.rst @@ -28,14 +28,29 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`9e268e13b1 `_ 2023-06-07 ``Replace spelling directive with spelling:word-list (#31752)`` +`9276310a43 `_ 2023-06-05 ``Improve docstrings in providers (#31681)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== =============================================================== + 2.2.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-influxdb/index.rst b/docs/apache-airflow-providers-influxdb/index.rst index 61d7cd1d9bde3..d186e91d1242a 100644 --- a/docs/apache-airflow-providers-influxdb/index.rst +++ b/docs/apache-airflow-providers-influxdb/index.rst @@ -71,7 +71,7 @@ Package apache-airflow-providers-influxdb `InfluxDB `__ -Release: 2.2.0 +Release: 2.2.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-jdbc/commits.rst b/docs/apache-airflow-providers-jdbc/commits.rst index d60fd005431cc..53bf13f8d4eb4 100644 --- a/docs/apache-airflow-providers-jdbc/commits.rst +++ b/docs/apache-airflow-providers-jdbc/commits.rst @@ -28,14 +28,29 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`0edbe91368 `_ 2023-06-12 ``Restrict direct usage of driver params via extras for JDBC connection (#31849)`` +`9276310a43 `_ 2023-06-05 ``Improve docstrings in providers (#31681)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ================================================================================== + 3.4.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-jdbc/index.rst b/docs/apache-airflow-providers-jdbc/index.rst index c59a1257e0c9a..0d6882ea38e4f 100644 --- a/docs/apache-airflow-providers-jdbc/index.rst +++ b/docs/apache-airflow-providers-jdbc/index.rst @@ -65,7 +65,7 @@ Package apache-airflow-providers-jdbc `Java Database Connectivity (JDBC) `__ -Release: 3.4.0 +Release: 4.0.0 Provider package ---------------- @@ -118,7 +118,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-jdbc 3.4.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-jdbc 3.4.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-jdbc 4.0.0 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-jdbc 4.0.0 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/jdbc/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-jenkins/commits.rst b/docs/apache-airflow-providers-jenkins/commits.rst index 754b71d0a5659..6e4f13a06e932 100644 --- a/docs/apache-airflow-providers-jenkins/commits.rst +++ b/docs/apache-airflow-providers-jenkins/commits.rst @@ -28,14 +28,28 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`9276310a43 `_ 2023-06-05 ``Improve docstrings in providers (#31681)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================= + 3.3.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-jenkins/index.rst b/docs/apache-airflow-providers-jenkins/index.rst index 68bbe059f22d2..cce710a1d28f8 100644 --- a/docs/apache-airflow-providers-jenkins/index.rst +++ b/docs/apache-airflow-providers-jenkins/index.rst @@ -63,7 +63,7 @@ Package apache-airflow-providers-jenkins `Jenkins `__ -Release: 3.3.0 +Release: 3.3.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-microsoft-azure/commits.rst b/docs/apache-airflow-providers-microsoft-azure/commits.rst index 7b5f57e0d1cd8..a812135ab7217 100644 --- a/docs/apache-airflow-providers-microsoft-azure/commits.rst +++ b/docs/apache-airflow-providers-microsoft-azure/commits.rst @@ -28,14 +28,34 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`4266a545b0 `_ 2023-06-20 ``Microsoft provider docstring improvements (#31708)`` +`94128303e1 `_ 2023-06-08 ``Removed unused variables in AzureBlobStorageToGCSOperator (#31765)`` +`fbeb01cb17 `_ 2023-06-07 ``Replace unicodecsv with standard csv library (#31693)`` +`9e268e13b1 `_ 2023-06-07 ``Replace spelling directive with spelling:word-list (#31752)`` +`3a0b8bded9 `_ 2023-06-05 ``Add D400 pydocstyle check - Microsoft provider only (#31425)`` +`dc5bf3fd02 `_ 2023-06-02 ``Add discoverability for triggers in provider.yaml (#31576)`` +`ce7766e0a5 `_ 2023-05-31 ``Add docstring and signature for _read_remote_logs (#31623)`` +`9fa75aaf7a `_ 2023-05-29 ``Remove Python 3.7 support (#30963)`` +================================================================================================= =========== ====================================================================== + 6.1.1 ..... -Latest change: 2023-05-23 +Latest change: 2023-05-24 ================================================================================================= =========== ============================================================== Commit Committed Subject ================================================================================================= =========== ============================================================== +`d745cee3db `_ 2023-05-24 ``Prepare adhoc wave of Providers (#31478)`` `45b6cfa138 `_ 2023-05-23 ``Fix deferrable mode execution in WasbPrefixSensor (#31411)`` `26b8997fb1 `_ 2023-05-23 ``Optimize deferred mode execution for wasb sensors (#31009)`` ================================================================================================= =========== ============================================================== diff --git a/docs/apache-airflow-providers-microsoft-azure/index.rst b/docs/apache-airflow-providers-microsoft-azure/index.rst index 4d5fb1672aa1d..615e7caf1ad8b 100644 --- a/docs/apache-airflow-providers-microsoft-azure/index.rst +++ b/docs/apache-airflow-providers-microsoft-azure/index.rst @@ -67,7 +67,7 @@ Package apache-airflow-providers-microsoft-azure `Microsoft Azure `__ -Release: 6.1.1 +Release: 6.1.2 Provider package ---------------- @@ -137,7 +137,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-microsoft-azure 6.1.1 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-microsoft-azure 6.1.1 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-microsoft-azure 6.1.2 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-microsoft-azure 6.1.2 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/microsoft/azure/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-microsoft-mssql/commits.rst b/docs/apache-airflow-providers-microsoft-mssql/commits.rst index 2f4ad63527b83..d4521e63db54b 100644 --- a/docs/apache-airflow-providers-microsoft-mssql/commits.rst +++ b/docs/apache-airflow-providers-microsoft-mssql/commits.rst @@ -28,14 +28,28 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`b683698684 `_ 2023-06-18 ``Check if sqlalchemy_scheme extra contains forbidden characters (#31984)`` +`3a0b8bded9 `_ 2023-06-05 ``Add D400 pydocstyle check - Microsoft provider only (#31425)`` +================================================================================================= =========== =========================================================================== + 3.4.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-microsoft-mssql/index.rst b/docs/apache-airflow-providers-microsoft-mssql/index.rst index 0fb67b39176bc..a74410ded9151 100644 --- a/docs/apache-airflow-providers-microsoft-mssql/index.rst +++ b/docs/apache-airflow-providers-microsoft-mssql/index.rst @@ -65,7 +65,7 @@ Package apache-airflow-providers-microsoft-mssql `Microsoft SQL Server (MSSQL) `__ -Release: 3.4.0 +Release: 3.4.1 Provider package ---------------- @@ -118,7 +118,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-microsoft-mssql 3.4.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-microsoft-mssql 3.4.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-microsoft-mssql 3.4.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-microsoft-mssql 3.4.1 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/microsoft/mssql/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-microsoft-psrp/commits.rst b/docs/apache-airflow-providers-microsoft-psrp/commits.rst index 996a94a63cdd8..6e89e5899fe20 100644 --- a/docs/apache-airflow-providers-microsoft-psrp/commits.rst +++ b/docs/apache-airflow-providers-microsoft-psrp/commits.rst @@ -30,14 +30,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +================================================================================================= =========== ============================================================= + 2.3.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-microsoft-psrp/index.rst b/docs/apache-airflow-providers-microsoft-psrp/index.rst index 42a5a92e89347..3dc668d6f5801 100644 --- a/docs/apache-airflow-providers-microsoft-psrp/index.rst +++ b/docs/apache-airflow-providers-microsoft-psrp/index.rst @@ -59,7 +59,7 @@ This package provides remote execution capabilities via the `__. -Release: 2.3.0 +Release: 2.3.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-microsoft-winrm/commits.rst b/docs/apache-airflow-providers-microsoft-winrm/commits.rst index cac9bbe8d72d3..772ac90a89250 100644 --- a/docs/apache-airflow-providers-microsoft-winrm/commits.rst +++ b/docs/apache-airflow-providers-microsoft-winrm/commits.rst @@ -28,14 +28,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +================================================================================================= =========== ============================================================= + 3.2.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-microsoft-winrm/index.rst b/docs/apache-airflow-providers-microsoft-winrm/index.rst index 3febcb4530c3c..fc888a1aee2be 100644 --- a/docs/apache-airflow-providers-microsoft-winrm/index.rst +++ b/docs/apache-airflow-providers-microsoft-winrm/index.rst @@ -64,7 +64,7 @@ Package apache-airflow-providers-microsoft-winrm `Windows Remote Management (WinRM) `__ -Release: 3.2.0 +Release: 3.2.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-mongo/commits.rst b/docs/apache-airflow-providers-mongo/commits.rst index 82cba8e29d31a..207646269ecf2 100644 --- a/docs/apache-airflow-providers-mongo/commits.rst +++ b/docs/apache-airflow-providers-mongo/commits.rst @@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================= + 3.2.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-mongo/index.rst b/docs/apache-airflow-providers-mongo/index.rst index b3eb1d1495f48..1e1c3ab12158b 100644 --- a/docs/apache-airflow-providers-mongo/index.rst +++ b/docs/apache-airflow-providers-mongo/index.rst @@ -52,7 +52,7 @@ Package apache-airflow-providers-mongo `MongoDB `__ -Release: 3.2.0 +Release: 3.2.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-mysql/commits.rst b/docs/apache-airflow-providers-mysql/commits.rst index 436629aca97c9..4787707313bf5 100644 --- a/docs/apache-airflow-providers-mysql/commits.rst +++ b/docs/apache-airflow-providers-mysql/commits.rst @@ -28,14 +28,28 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`fbeb01cb17 `_ 2023-06-07 ``Replace unicodecsv with standard csv library (#31693)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================= + 5.1.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-mysql/index.rst b/docs/apache-airflow-providers-mysql/index.rst index c6ec41172f371..3f39b5b775c1b 100644 --- a/docs/apache-airflow-providers-mysql/index.rst +++ b/docs/apache-airflow-providers-mysql/index.rst @@ -65,7 +65,7 @@ Package apache-airflow-providers-mysql `MySQL `__ -Release: 5.1.0 +Release: 5.1.1 Provider package ---------------- @@ -122,7 +122,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-mysql 5.1.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-mysql 5.1.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-mysql 5.1.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-mysql 5.1.1 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/mysql/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-neo4j/commits.rst b/docs/apache-airflow-providers-neo4j/commits.rst index 316f9b08b20c0..f1bc28da33404 100644 --- a/docs/apache-airflow-providers-neo4j/commits.rst +++ b/docs/apache-airflow-providers-neo4j/commits.rst @@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================= + 3.3.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-neo4j/index.rst b/docs/apache-airflow-providers-neo4j/index.rst index d5a0c7e0982ba..9a2924a72b4a8 100644 --- a/docs/apache-airflow-providers-neo4j/index.rst +++ b/docs/apache-airflow-providers-neo4j/index.rst @@ -65,7 +65,7 @@ Package apache-airflow-providers-neo4j `Neo4j `__ -Release: 3.3.0 +Release: 3.3.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-odbc/commits.rst b/docs/apache-airflow-providers-odbc/commits.rst index c72295b331d19..4141d7ef00868 100644 --- a/docs/apache-airflow-providers-odbc/commits.rst +++ b/docs/apache-airflow-providers-odbc/commits.rst @@ -28,14 +28,31 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`b683698684 `_ 2023-06-18 ``Check if sqlalchemy_scheme extra contains forbidden characters (#31984)`` +`438ba41e14 `_ 2023-06-07 ``Control permissibility of driver config in extra from airflow.cfg (#31754)`` +`2844dad1c7 `_ 2023-06-06 ``Disable setting ODBC driver via extra by default (#31713)`` +`9276310a43 `_ 2023-06-05 ``Improve docstrings in providers (#31681)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================================== + 3.3.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-odbc/index.rst b/docs/apache-airflow-providers-odbc/index.rst index 4f852b002c713..1c751294fd942 100644 --- a/docs/apache-airflow-providers-odbc/index.rst +++ b/docs/apache-airflow-providers-odbc/index.rst @@ -53,7 +53,7 @@ Package apache-airflow-providers-odbc `ODBC `__ -Release: 3.3.0 +Release: 4.0.0 Provider package ---------------- @@ -106,7 +106,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-odbc 3.3.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-odbc 3.3.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-odbc 4.0.0 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-odbc 4.0.0 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/odbc/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-openfaas/commits.rst b/docs/apache-airflow-providers-openfaas/commits.rst index 2bf10d85e3e97..8bc0f6c13fb71 100644 --- a/docs/apache-airflow-providers-openfaas/commits.rst +++ b/docs/apache-airflow-providers-openfaas/commits.rst @@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================= + 3.2.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-openfaas/index.rst b/docs/apache-airflow-providers-openfaas/index.rst index bee83f6c20321..393f9fecadb91 100644 --- a/docs/apache-airflow-providers-openfaas/index.rst +++ b/docs/apache-airflow-providers-openfaas/index.rst @@ -51,7 +51,7 @@ Package apache-airflow-providers-openfaas `OpenFaaS `__ -Release: 3.2.0 +Release: 3.2.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-opsgenie/commits.rst b/docs/apache-airflow-providers-opsgenie/commits.rst index 312bb6bcf958a..7b20b92877a65 100644 --- a/docs/apache-airflow-providers-opsgenie/commits.rst +++ b/docs/apache-airflow-providers-opsgenie/commits.rst @@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================= + 5.1.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-opsgenie/index.rst b/docs/apache-airflow-providers-opsgenie/index.rst index 8435d3e16a9c7..f5249c6071060 100644 --- a/docs/apache-airflow-providers-opsgenie/index.rst +++ b/docs/apache-airflow-providers-opsgenie/index.rst @@ -64,7 +64,7 @@ Package apache-airflow-providers-opsgenie `Opsgenie `__ -Release: 5.1.0 +Release: 5.1.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-oracle/commits.rst b/docs/apache-airflow-providers-oracle/commits.rst index 1db0f9736a8a4..727281749f9ae 100644 --- a/docs/apache-airflow-providers-oracle/commits.rst +++ b/docs/apache-airflow-providers-oracle/commits.rst @@ -28,14 +28,28 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`9276310a43 `_ 2023-06-05 ``Improve docstrings in providers (#31681)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================= + 3.7.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-oracle/index.rst b/docs/apache-airflow-providers-oracle/index.rst index 1af53f3c3aad4..0ff4877b288da 100644 --- a/docs/apache-airflow-providers-oracle/index.rst +++ b/docs/apache-airflow-providers-oracle/index.rst @@ -59,7 +59,7 @@ Package apache-airflow-providers-oracle `Oracle `__ -Release: 3.7.0 +Release: 3.7.1 Provider package ---------------- @@ -112,7 +112,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-oracle 3.7.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-oracle 3.7.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-oracle 3.7.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-oracle 3.7.1 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/oracle/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-pagerduty/commits.rst b/docs/apache-airflow-providers-pagerduty/commits.rst index ac7147230e5cc..ab810bead0937 100644 --- a/docs/apache-airflow-providers-pagerduty/commits.rst +++ b/docs/apache-airflow-providers-pagerduty/commits.rst @@ -28,6 +28,20 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`8d78f903ac `_ 2023-06-08 ``Add notifier for pagerduty (#31207)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +`30faf4a87a `_ 2023-05-23 ``Add send_event method in PagerdutyEventsHook (#31290)`` +================================================================================================= =========== ============================================================= + 3.2.0 ..... @@ -36,6 +50,7 @@ Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `7bf952b478 `_ 2023-05-19 ``Add Change event V2 API support for pagerduty (#31222)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` diff --git a/docs/apache-airflow-providers-pagerduty/index.rst b/docs/apache-airflow-providers-pagerduty/index.rst index 4b5c0769edb53..5d3223069e781 100644 --- a/docs/apache-airflow-providers-pagerduty/index.rst +++ b/docs/apache-airflow-providers-pagerduty/index.rst @@ -57,7 +57,7 @@ Package apache-airflow-providers-pagerduty `Pagerduty `__ -Release: 3.2.0 +Release: 3.3.0 Provider package ---------------- diff --git a/docs/apache-airflow-providers-papermill/commits.rst b/docs/apache-airflow-providers-papermill/commits.rst index 07733822f78ba..3a3a5e1b8a0fc 100644 --- a/docs/apache-airflow-providers-papermill/commits.rst +++ b/docs/apache-airflow-providers-papermill/commits.rst @@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================= + 3.2.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-papermill/index.rst b/docs/apache-airflow-providers-papermill/index.rst index d64db3a2c7b7a..6e4d137672c1f 100644 --- a/docs/apache-airflow-providers-papermill/index.rst +++ b/docs/apache-airflow-providers-papermill/index.rst @@ -64,7 +64,7 @@ Package apache-airflow-providers-papermill `Papermill `__ -Release: 3.2.0 +Release: 3.2.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-plexus/commits.rst b/docs/apache-airflow-providers-plexus/commits.rst index f33d819a60ad2..e8b995c74d84d 100644 --- a/docs/apache-airflow-providers-plexus/commits.rst +++ b/docs/apache-airflow-providers-plexus/commits.rst @@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================= + 3.2.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-plexus/index.rst b/docs/apache-airflow-providers-plexus/index.rst index 2f560974690d0..55439dfd49333 100644 --- a/docs/apache-airflow-providers-plexus/index.rst +++ b/docs/apache-airflow-providers-plexus/index.rst @@ -58,7 +58,7 @@ Package apache-airflow-providers-plexus `Plexus `__ -Release: 3.2.0 +Release: 3.2.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-postgres/commits.rst b/docs/apache-airflow-providers-postgres/commits.rst index 2b8122864efb2..e5852c29e4d4c 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 `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`9276310a43 `_ 2023-06-05 ``Improve docstrings in providers (#31681)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================= + 5.5.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-postgres/index.rst b/docs/apache-airflow-providers-postgres/index.rst index f0f0a3d3ae2b5..224a84183457b 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.5.0 +Release: 5.5.1 Provider package ---------------- @@ -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-postgres 5.5.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-postgres 5.5.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-postgres 5.5.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-postgres 5.5.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 07cabc016585a..74c6e12f4b7ac 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 `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================= + 5.1.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-presto/index.rst b/docs/apache-airflow-providers-presto/index.rst index ed2f857961273..8c639fa717ec3 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: 5.1.0 +Release: 5.1.1 Provider package ---------------- @@ -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-presto 5.1.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-presto 5.1.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-presto 5.1.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-presto 5.1.1 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/presto/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-qubole/commits.rst b/docs/apache-airflow-providers-qubole/commits.rst index 862de1155c7fe..948cfceee87a4 100644 --- a/docs/apache-airflow-providers-qubole/commits.rst +++ b/docs/apache-airflow-providers-qubole/commits.rst @@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================= + 3.4.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-qubole/index.rst b/docs/apache-airflow-providers-qubole/index.rst index 0b266d639db87..60066a75787d8 100644 --- a/docs/apache-airflow-providers-qubole/index.rst +++ b/docs/apache-airflow-providers-qubole/index.rst @@ -64,7 +64,7 @@ Package apache-airflow-providers-qubole `Qubole `__ -Release: 3.4.0 +Release: 3.4.1 Provider package ---------------- @@ -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-qubole 3.4.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-qubole 3.4.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-qubole 3.4.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-qubole 3.4.1 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/qubole/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-redis/commits.rst b/docs/apache-airflow-providers-redis/commits.rst index f55d1d949aa74..b6fb74d144016 100644 --- a/docs/apache-airflow-providers-redis/commits.rst +++ b/docs/apache-airflow-providers-redis/commits.rst @@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================= + 3.2.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-redis/index.rst b/docs/apache-airflow-providers-redis/index.rst index 961d54fcd2b41..7cf2dec5720ac 100644 --- a/docs/apache-airflow-providers-redis/index.rst +++ b/docs/apache-airflow-providers-redis/index.rst @@ -58,7 +58,7 @@ Package apache-airflow-providers-redis `Redis `__ -Release: 3.2.0 +Release: 3.2.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-salesforce/commits.rst b/docs/apache-airflow-providers-salesforce/commits.rst index 07232a96c4cc9..0a4ac9b6f0837 100644 --- a/docs/apache-airflow-providers-salesforce/commits.rst +++ b/docs/apache-airflow-providers-salesforce/commits.rst @@ -28,14 +28,28 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +`9fa75aaf7a `_ 2023-05-29 ``Remove Python 3.7 support (#30963)`` +================================================================================================= =========== ============================================================= + 5.4.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-salesforce/index.rst b/docs/apache-airflow-providers-salesforce/index.rst index 18890e302b6de..b99597d4e325a 100644 --- a/docs/apache-airflow-providers-salesforce/index.rst +++ b/docs/apache-airflow-providers-salesforce/index.rst @@ -65,7 +65,7 @@ Package apache-airflow-providers-salesforce `Salesforce `__ -Release: 5.4.0 +Release: 5.4.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-samba/commits.rst b/docs/apache-airflow-providers-samba/commits.rst index 8c2be819d0c53..db2d84ae22a5e 100644 --- a/docs/apache-airflow-providers-samba/commits.rst +++ b/docs/apache-airflow-providers-samba/commits.rst @@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================= + 4.2.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-samba/index.rst b/docs/apache-airflow-providers-samba/index.rst index 4a1a5391be2c5..c7e49357933bd 100644 --- a/docs/apache-airflow-providers-samba/index.rst +++ b/docs/apache-airflow-providers-samba/index.rst @@ -51,7 +51,7 @@ Package apache-airflow-providers-samba `Samba `__ -Release: 4.2.0 +Release: 4.2.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-segment/commits.rst b/docs/apache-airflow-providers-segment/commits.rst index 0fb1fe9b01b90..4e2332c3461be 100644 --- a/docs/apache-airflow-providers-segment/commits.rst +++ b/docs/apache-airflow-providers-segment/commits.rst @@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================= + 3.2.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-segment/index.rst b/docs/apache-airflow-providers-segment/index.rst index 5f2482af611c3..07186012ef11a 100644 --- a/docs/apache-airflow-providers-segment/index.rst +++ b/docs/apache-airflow-providers-segment/index.rst @@ -51,7 +51,7 @@ Package apache-airflow-providers-segment `Segment `__ -Release: 3.2.0 +Release: 3.2.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-sendgrid/commits.rst b/docs/apache-airflow-providers-sendgrid/commits.rst index 66bae91612fc4..32917383f535d 100644 --- a/docs/apache-airflow-providers-sendgrid/commits.rst +++ b/docs/apache-airflow-providers-sendgrid/commits.rst @@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================= + 3.2.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-sendgrid/index.rst b/docs/apache-airflow-providers-sendgrid/index.rst index 56bb094440c27..5e7b07295588c 100644 --- a/docs/apache-airflow-providers-sendgrid/index.rst +++ b/docs/apache-airflow-providers-sendgrid/index.rst @@ -51,7 +51,7 @@ Package apache-airflow-providers-sendgrid `Sendgrid `__ -Release: 3.2.0 +Release: 3.2.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-sftp/commits.rst b/docs/apache-airflow-providers-sftp/commits.rst index c08dc944370ba..af7828a52bf25 100644 --- a/docs/apache-airflow-providers-sftp/commits.rst +++ b/docs/apache-airflow-providers-sftp/commits.rst @@ -28,14 +28,28 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`9276310a43 `_ 2023-06-05 ``Improve docstrings in providers (#31681)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================= + 4.3.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-sftp/index.rst b/docs/apache-airflow-providers-sftp/index.rst index 1781ce9de0c65..b0bb0ead6065f 100644 --- a/docs/apache-airflow-providers-sftp/index.rst +++ b/docs/apache-airflow-providers-sftp/index.rst @@ -52,7 +52,7 @@ Package apache-airflow-providers-sftp `SSH File Transfer Protocol (SFTP) `__ -Release: 4.3.0 +Release: 4.3.1 Provider package ---------------- @@ -104,7 +104,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-sftp 4.3.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-sftp 4.3.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-sftp 4.3.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-sftp 4.3.1 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/sftp/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-singularity/commits.rst b/docs/apache-airflow-providers-singularity/commits.rst index 1463d25bcfb08..6c992e598af42 100644 --- a/docs/apache-airflow-providers-singularity/commits.rst +++ b/docs/apache-airflow-providers-singularity/commits.rst @@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================= + 3.2.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-singularity/index.rst b/docs/apache-airflow-providers-singularity/index.rst index 0ca1dd46498cf..80c6256c39ddb 100644 --- a/docs/apache-airflow-providers-singularity/index.rst +++ b/docs/apache-airflow-providers-singularity/index.rst @@ -58,7 +58,7 @@ Package apache-airflow-providers-singularity `Singularity `__ -Release: 3.2.0 +Release: 3.2.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-slack/commits.rst b/docs/apache-airflow-providers-slack/commits.rst index fd1f06c79b7d0..413e7923f3e94 100644 --- a/docs/apache-airflow-providers-slack/commits.rst +++ b/docs/apache-airflow-providers-slack/commits.rst @@ -28,14 +28,29 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`9276310a43 `_ 2023-06-05 ``Improve docstrings in providers (#31681)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +`9fa75aaf7a `_ 2023-05-29 ``Remove Python 3.7 support (#30963)`` +================================================================================================= =========== ============================================================= + 7.3.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-slack/index.rst b/docs/apache-airflow-providers-slack/index.rst index e5086bc2565ed..5054facdb1fe1 100644 --- a/docs/apache-airflow-providers-slack/index.rst +++ b/docs/apache-airflow-providers-slack/index.rst @@ -65,7 +65,7 @@ Package apache-airflow-providers-slack `Slack `__ -Release: 7.3.0 +Release: 7.3.1 Provider package ---------------- @@ -118,7 +118,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-slack 7.3.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-slack 7.3.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-slack 7.3.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-slack 7.3.1 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/slack/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-smtp/commits.rst b/docs/apache-airflow-providers-smtp/commits.rst index fa228ca02f5b0..5df116adbf640 100644 --- a/docs/apache-airflow-providers-smtp/commits.rst +++ b/docs/apache-airflow-providers-smtp/commits.rst @@ -28,14 +28,29 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`b7796895cb `_ 2023-06-07 ``Fix ruff static check (#31762)`` +`cce4ca5505 `_ 2023-06-07 ``Add notifier for Smtp (#31359)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================= + 1.1.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-smtp/index.rst b/docs/apache-airflow-providers-smtp/index.rst index 7c0bb9a79f950..d6d27b9658612 100644 --- a/docs/apache-airflow-providers-smtp/index.rst +++ b/docs/apache-airflow-providers-smtp/index.rst @@ -47,20 +47,13 @@ Content Detailed list of commits -.. toctree:: - :maxdepth: 1 - :caption: Guides - - SMTP Notifications - - Package apache-airflow-providers-smtp ------------------------------------------------------ `Simple Mail Transfer Protocol (SMTP) `__ -Release: 1.1.0 +Release: 1.2.0 Provider package ---------------- diff --git a/docs/apache-airflow-providers-snowflake/commits.rst b/docs/apache-airflow-providers-snowflake/commits.rst index 9885f1085c27c..63908e1e5122b 100644 --- a/docs/apache-airflow-providers-snowflake/commits.rst +++ b/docs/apache-airflow-providers-snowflake/commits.rst @@ -28,14 +28,32 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`35845f9fb6 `_ 2023-06-11 ``SnowflakeSqlApiOperator - Change the base class (#31751)`` +`07ea574fed `_ 2023-06-07 ``Add D400 pydocstyle check (#31742)`` +`9276310a43 `_ 2023-06-05 ``Improve docstrings in providers (#31681)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +`c55f9ea05c `_ 2023-05-29 ``Moved sql_api_generate_jwt out of hooks folder (#31586)`` +`739e6b5d77 `_ 2023-05-24 ``Add SnowflakeSqlApiOperator operator (#30698)`` +================================================================================================= =========== ============================================================= + 4.1.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-snowflake/index.rst b/docs/apache-airflow-providers-snowflake/index.rst index 3f952b4f4e80e..1a5025dc6646a 100644 --- a/docs/apache-airflow-providers-snowflake/index.rst +++ b/docs/apache-airflow-providers-snowflake/index.rst @@ -65,7 +65,7 @@ Package apache-airflow-providers-snowflake `Snowflake `__ -Release: 4.1.0 +Release: 4.2.0 Provider package ---------------- @@ -120,7 +120,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-snowflake 4.1.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-snowflake 4.1.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-snowflake 4.2.0 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-snowflake 4.2.0 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/snowflake/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-sqlite/commits.rst b/docs/apache-airflow-providers-sqlite/commits.rst index cb0abc05425c3..2c13a2652ab81 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 `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================= + 3.4.1 ..... -Latest change: 2023-05-23 +Latest change: 2023-05-24 ================================================================================================= =========== ====================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================== +`d745cee3db `_ 2023-05-24 ``Prepare adhoc wave of Providers (#31478)`` `547e352578 `_ 2023-05-23 ``Bring back min-airflow-version for preinstalled providers (#31469)`` ================================================================================================= =========== ====================================================================== diff --git a/docs/apache-airflow-providers-sqlite/index.rst b/docs/apache-airflow-providers-sqlite/index.rst index 29422b70e455c..c1f54d4ee6186 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.4.1 +Release: 3.4.2 Provider package ---------------- @@ -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-sqlite 3.4.1 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-sqlite 3.4.1 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-sqlite 3.4.2 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-sqlite 3.4.2 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/sqlite/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-ssh/commits.rst b/docs/apache-airflow-providers-ssh/commits.rst index 57892d2b98398..e07fe39721d55 100644 --- a/docs/apache-airflow-providers-ssh/commits.rst +++ b/docs/apache-airflow-providers-ssh/commits.rst @@ -28,14 +28,29 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`9276310a43 `_ 2023-06-05 ``Improve docstrings in providers (#31681)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +`9fa75aaf7a `_ 2023-05-29 ``Remove Python 3.7 support (#30963)`` +================================================================================================= =========== ============================================================= + 3.7.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-ssh/index.rst b/docs/apache-airflow-providers-ssh/index.rst index 0c0ccd31f89bf..81e7afd1ed2f4 100644 --- a/docs/apache-airflow-providers-ssh/index.rst +++ b/docs/apache-airflow-providers-ssh/index.rst @@ -57,7 +57,7 @@ Package apache-airflow-providers-ssh `Secure Shell (SSH) `__ -Release: 3.7.0 +Release: 3.7.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-tableau/commits.rst b/docs/apache-airflow-providers-tableau/commits.rst index 226972658c15b..17da22a25ea6f 100644 --- a/docs/apache-airflow-providers-tableau/commits.rst +++ b/docs/apache-airflow-providers-tableau/commits.rst @@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================= + 4.2.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-tableau/index.rst b/docs/apache-airflow-providers-tableau/index.rst index 9215aea8231fd..e8ed4076b0433 100644 --- a/docs/apache-airflow-providers-tableau/index.rst +++ b/docs/apache-airflow-providers-tableau/index.rst @@ -60,7 +60,7 @@ Package apache-airflow-providers-tableau `Tableau `__ -Release: 4.2.0 +Release: 4.2.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-tabular/commits.rst b/docs/apache-airflow-providers-tabular/commits.rst index ad24abf870c0d..e10f075b6a070 100644 --- a/docs/apache-airflow-providers-tabular/commits.rst +++ b/docs/apache-airflow-providers-tabular/commits.rst @@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================= + 1.2.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-tabular/index.rst b/docs/apache-airflow-providers-tabular/index.rst index 64b00c8f7526c..169237ba3ddb7 100644 --- a/docs/apache-airflow-providers-tabular/index.rst +++ b/docs/apache-airflow-providers-tabular/index.rst @@ -60,7 +60,7 @@ Package apache-airflow-providers-tabular `Tabular `__ -Release: 1.2.0 +Release: 1.2.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-telegram/commits.rst b/docs/apache-airflow-providers-telegram/commits.rst index 6436fe54fdab1..56a3a516faa4f 100644 --- a/docs/apache-airflow-providers-telegram/commits.rst +++ b/docs/apache-airflow-providers-telegram/commits.rst @@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================= + 4.1.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-telegram/index.rst b/docs/apache-airflow-providers-telegram/index.rst index 1dd4a500e8510..d1e6948f84f82 100644 --- a/docs/apache-airflow-providers-telegram/index.rst +++ b/docs/apache-airflow-providers-telegram/index.rst @@ -64,7 +64,7 @@ Package apache-airflow-providers-telegram `Telegram `__ -Release: 4.1.0 +Release: 4.1.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-trino/commits.rst b/docs/apache-airflow-providers-trino/commits.rst index d234faed11d48..83c13556851c7 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 `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================= + 5.1.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-trino/index.rst b/docs/apache-airflow-providers-trino/index.rst index f1446751269c6..7c5aca741c736 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: 5.1.0 +Release: 5.1.1 Provider package ---------------- @@ -121,7 +121,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 5.1.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-trino 5.1.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-trino 5.1.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-trino 5.1.1 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/trino/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-vertica/commits.rst b/docs/apache-airflow-providers-vertica/commits.rst index bb6ee0625ae37..35f09c68892c5 100644 --- a/docs/apache-airflow-providers-vertica/commits.rst +++ b/docs/apache-airflow-providers-vertica/commits.rst @@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a59076eaee `_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +================================================================================================= =========== ============================================================= + 3.4.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-vertica/index.rst b/docs/apache-airflow-providers-vertica/index.rst index a38aa8d7eeec8..127bd5f30ca07 100644 --- a/docs/apache-airflow-providers-vertica/index.rst +++ b/docs/apache-airflow-providers-vertica/index.rst @@ -51,7 +51,7 @@ Package apache-airflow-providers-vertica `Vertica `__ -Release: 3.4.0 +Release: 3.4.1 Provider package ---------------- @@ -104,7 +104,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-vertica 3.4.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-vertica 3.4.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-vertica 3.4.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-vertica 3.4.1 wheel package `_ (`asc `__, `sha512 `__) .. include:: ../../airflow/providers/vertica/CHANGELOG.rst diff --git a/docs/apache-airflow-providers-zendesk/commits.rst b/docs/apache-airflow-providers-zendesk/commits.rst index 5e508c30a19f9..357fb73738781 100644 --- a/docs/apache-airflow-providers-zendesk/commits.rst +++ b/docs/apache-airflow-providers-zendesk/commits.rst @@ -28,14 +28,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +================================================================================================= =========== ============================================================= + 4.3.0 ..... -Latest change: 2023-05-18 +Latest change: 2023-05-19 ================================================================================================= =========== ====================================================================================== Commit Committed Subject ================================================================================================= =========== ====================================================================================== +`45548b9451 `_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)`` `abea189022 `_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` `f5aed58d9f `_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)`` `d9ff55cf6d `_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)`` diff --git a/docs/apache-airflow-providers-zendesk/index.rst b/docs/apache-airflow-providers-zendesk/index.rst index c0bcc6beb40d7..a8dfa53f3fed1 100644 --- a/docs/apache-airflow-providers-zendesk/index.rst +++ b/docs/apache-airflow-providers-zendesk/index.rst @@ -58,7 +58,7 @@ Package apache-airflow-providers-zendesk `Zendesk `__ -Release: 4.3.0 +Release: 4.3.1 Provider package ----------------