Skip to content

Commit

Permalink
Prepare docs for Aug 2nd wave of providers (#41559)
Browse files Browse the repository at this point in the history
  • Loading branch information
eladkal authored Aug 19, 2024
1 parent 8f8565f commit 75fb7ac
Show file tree
Hide file tree
Showing 455 changed files with 3,497 additions and 638 deletions.
16 changes: 16 additions & 0 deletions airflow/providers/airbyte/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,22 @@
Changelog
---------

3.9.0
.....

.. note::
This release of provider is only available for Airflow 2.8+ as explained in the
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.

Misc
~~~~

* ``Bump minimum Airflow version in providers to Airflow 2.8.0 (#41396)``


.. Below changes are excluded from the changelog. Move them to
appropriate section above if needed. Do not delete the lines(!):
3.8.1
.....

Expand Down
2 changes: 1 addition & 1 deletion airflow/providers/airbyte/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

__all__ = ["__version__"]

__version__ = "3.8.1"
__version__ = "3.9.0"

if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
"2.8.0"
Expand Down
3 changes: 2 additions & 1 deletion airflow/providers/airbyte/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ description: |
`Airbyte <https://airbyte.com/>`__
state: ready
source-date-epoch: 1716286241
source-date-epoch: 1723968864
# note that those versions are maintained by release manager - do not update them manually
versions:
- 3.9.0
- 3.8.1
- 3.8.0
- 3.7.0
Expand Down
16 changes: 16 additions & 0 deletions airflow/providers/alibaba/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,22 @@
Changelog
---------

2.9.0
.....

.. note::
This release of provider is only available for Airflow 2.8+ as explained in the
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.

Misc
~~~~

* ``Bump minimum Airflow version in providers to Airflow 2.8.0 (#41396)``


.. Below changes are excluded from the changelog. Move them to
appropriate section above if needed. Do not delete the lines(!):
2.8.1
.....

Expand Down
2 changes: 1 addition & 1 deletion airflow/providers/alibaba/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

__all__ = ["__version__"]

__version__ = "2.8.1"
__version__ = "2.9.0"

if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
"2.8.0"
Expand Down
3 changes: 2 additions & 1 deletion airflow/providers/alibaba/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ description: |
Alibaba Cloud integration (including `Alibaba Cloud <https://www.alibabacloud.com/>`__).
state: ready
source-date-epoch: 1716286324
source-date-epoch: 1723968880
# note that those versions are maintained by release manager - do not update them manually
versions:
- 2.9.0
- 2.8.1
- 2.8.0
- 2.7.3
Expand Down
29 changes: 27 additions & 2 deletions airflow/providers/amazon/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,44 @@
Changelog
---------

Main
8.28.0
......

.. note::
This release of provider is only available for Airflow 2.8+ as explained in the
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.

.. warning:: When deferrable mode was introduced for ``RedshiftDataOperator``, in version 8.17.0, tasks configured with
``deferrable=True`` and ``wait_for_completion=True`` wouldn't enter the deferred state. Instead, the task would occupy
an executor slot until the statement was completed. A workaround may have been to set ``wait_for_completion=False``.
In this version, tasks set up with ``wait_for_completion=False`` will not wait anymore, regardless of the value of
``deferrable``.

Features
~~~~~~~~

* ``Add incremental export and cross account export functionality in 'DynamoDBToS3Operator' (#41304)``
* ``EKS Overrides for AWS Batch submit_job (#40718)``

Bug Fixes
~~~~~~~~~

* ``Fix deferred mode for 'RedshiftDataOperator' (#41206)``
* ``Fix 'AwsTaskLogFetcher' missing logs (#41515)``
* ``Fix the Exception name and unpin dependency in 'RdsHook' (#41256)``
* ``Fix RedshiftDataOperator not running in deferred mode as expected (#41206)``

Misc
~~~~

* ``Partial fix for example_dynamodb_to_s3.py (#41517)``
* ``Remove deprecated code is AWS provider (#41407)``
* ``Bump minimum Airflow version in providers to Airflow 2.8.0 (#41396)``
* ``Limit moto temporarily - 5.0.12 is breaking our tests (#41244)``


.. Below changes are excluded from the changelog. Move them to
appropriate section above if needed. Do not delete the lines(!):
* ``typo (#41381)``
8.27.0
......
Expand Down
2 changes: 1 addition & 1 deletion airflow/providers/amazon/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

__all__ = ["__version__"]

__version__ = "8.27.0"
__version__ = "8.28.0"

if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
"2.8.0"
Expand Down
3 changes: 2 additions & 1 deletion airflow/providers/amazon/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ description: |
Amazon integration (including `Amazon Web Services (AWS) <https://aws.amazon.com/>`__).
state: ready
source-date-epoch: 1722145222
source-date-epoch: 1723968989
# note that those versions are maintained by release manager - do not update them manually
versions:
- 8.28.0
- 8.27.0
- 8.26.0
- 8.25.0
Expand Down
16 changes: 16 additions & 0 deletions airflow/providers/apache/beam/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,22 @@
Changelog
---------

5.8.0
.....

.. note::
This release of provider is only available for Airflow 2.8+ as explained in the
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.

Misc
~~~~

* ``Bump minimum Airflow version in providers to Airflow 2.8.0 (#41396)``


.. Below changes are excluded from the changelog. Move them to
appropriate section above if needed. Do not delete the lines(!):
5.7.2
.....

Expand Down
2 changes: 1 addition & 1 deletion airflow/providers/apache/beam/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

__all__ = ["__version__"]

__version__ = "5.7.2"
__version__ = "5.8.0"

if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
"2.8.0"
Expand Down
3 changes: 2 additions & 1 deletion airflow/providers/apache/beam/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ description: |
`Apache Beam <https://beam.apache.org/>`__.
state: ready
source-date-epoch: 1721545598
source-date-epoch: 1723969156
# note that those versions are maintained by release manager - do not update them manually
versions:
- 5.8.0
- 5.7.2
- 5.7.1
- 5.7.0
Expand Down
16 changes: 16 additions & 0 deletions airflow/providers/apache/cassandra/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,22 @@
Changelog
---------

3.6.0
.....

.. note::
This release of provider is only available for Airflow 2.8+ as explained in the
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.

Misc
~~~~

* ``Bump minimum Airflow version in providers to Airflow 2.8.0 (#41396)``


.. Below changes are excluded from the changelog. Move them to
appropriate section above if needed. Do not delete the lines(!):
3.5.1
.....

Expand Down
2 changes: 1 addition & 1 deletion airflow/providers/apache/cassandra/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

__all__ = ["__version__"]

__version__ = "3.5.1"
__version__ = "3.6.0"

if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
"2.8.0"
Expand Down
3 changes: 2 additions & 1 deletion airflow/providers/apache/cassandra/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ description: |
`Apache Cassandra <https://cassandra.apache.org/>`__.
state: ready
source-date-epoch: 1716286425
source-date-epoch: 1723969167
# note that those versions are maintained by release manager - do not update them manually
versions:
- 3.6.0
- 3.5.1
- 3.5.0
- 3.4.2
Expand Down
16 changes: 16 additions & 0 deletions airflow/providers/apache/drill/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,22 @@ Changelog
---------


2.8.0
.....

.. note::
This release of provider is only available for Airflow 2.8+ as explained in the
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.

Misc
~~~~

* ``Bump minimum Airflow version in providers to Airflow 2.8.0 (#41396)``


.. Below changes are excluded from the changelog. Move them to
appropriate section above if needed. Do not delete the lines(!):
2.7.3
.....

Expand Down
2 changes: 1 addition & 1 deletion airflow/providers/apache/drill/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

__all__ = ["__version__"]

__version__ = "2.7.3"
__version__ = "2.8.0"

if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
"2.8.0"
Expand Down
3 changes: 2 additions & 1 deletion airflow/providers/apache/drill/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ description: |
`Apache Drill <https://drill.apache.org/>`__.
state: ready
source-date-epoch: 1722662634
source-date-epoch: 1723969173
# note that those versions are maintained by release manager - do not update them manually
versions:
- 2.8.0
- 2.7.3
- 2.7.2
- 2.7.1
Expand Down
16 changes: 16 additions & 0 deletions airflow/providers/apache/druid/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,22 @@
Changelog
---------

3.11.0
......

.. note::
This release of provider is only available for Airflow 2.8+ as explained in the
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.

Misc
~~~~

* ``Bump minimum Airflow version in providers to Airflow 2.8.0 (#41396)``


.. Below changes are excluded from the changelog. Move them to
appropriate section above if needed. Do not delete the lines(!):
3.10.2
......

Expand Down
2 changes: 1 addition & 1 deletion airflow/providers/apache/druid/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

__all__ = ["__version__"]

__version__ = "3.10.2"
__version__ = "3.11.0"

if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
"2.8.0"
Expand Down
3 changes: 2 additions & 1 deletion airflow/providers/apache/druid/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ description: |
`Apache Druid <https://druid.apache.org/>`__.
state: ready
source-date-epoch: 1722662771
source-date-epoch: 1723969177
# note that those versions are maintained by release manager - do not update them manually
versions:
- 3.11.0
- 3.10.2
- 3.10.1
- 3.10.0
Expand Down
16 changes: 16 additions & 0 deletions airflow/providers/apache/flink/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,22 @@
Changelog
---------

1.5.0
.....

.. note::
This release of provider is only available for Airflow 2.8+ as explained in the
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.

Misc
~~~~

* ``Bump minimum Airflow version in providers to Airflow 2.8.0 (#41396)``


.. Below changes are excluded from the changelog. Move them to
appropriate section above if needed. Do not delete the lines(!):
1.4.2
.....

Expand Down
2 changes: 1 addition & 1 deletion airflow/providers/apache/flink/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

__all__ = ["__version__"]

__version__ = "1.4.2"
__version__ = "1.5.0"

if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
"2.8.0"
Expand Down
3 changes: 2 additions & 1 deletion airflow/providers/apache/flink/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ description: |
`Apache Flink <https://flink.apache.org/>`__
state: ready
source-date-epoch: 1718603786
source-date-epoch: 1723969183
# note that those versions are maintained by release manager - do not update them manually
versions:
- 1.5.0
- 1.4.2
- 1.4.1
- 1.4.0
Expand Down
Loading

0 comments on commit 75fb7ac

Please sign in to comment.