Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare docs for Aug 2023 2nd wave of Providers #33291

Merged
merged 3 commits into from
Aug 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion airflow/providers/airbyte/.latest-doc-only-change.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3878fe6fab3ccc1461932b456c48996f2763139f
225e3041d269698d0456e09586924c1898d09434
8 changes: 8 additions & 0 deletions airflow/providers/alibaba/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,14 @@
Changelog
---------

2.5.1
.....

Misc
~~~~

* ``Refactor: Simplify code in providers/alibaba (#33225)``

2.5.0
.....

Expand Down
6 changes: 4 additions & 2 deletions airflow/providers/alibaba/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,16 @@

__all__ = ["__version__"]

__version__ = "2.5.0"
__version__ = "2.5.1"

try:
from airflow import __version__ as airflow_version
except ImportError:
from airflow.version import version as airflow_version

if packaging.version.parse(airflow_version) < packaging.version.parse("2.4.0"):
if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
"2.4.0"
):
raise RuntimeError(
f"The package `apache-airflow-providers-alibaba:{__version__}` requires Apache Airflow 2.4.0+" # NOQA: E501
)
1 change: 1 addition & 0 deletions airflow/providers/alibaba/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ description: |

suspended: false
versions:
- 2.5.1
- 2.5.0
- 2.4.1
- 2.4.0
Expand Down
19 changes: 19 additions & 0 deletions airflow/providers/amazon/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,25 @@
Changelog
---------

8.5.1
.....

Bug Fixes
~~~~~~~~~

* ``Get failure information on EMR job failure (#32151)``
* ``Fix get_log_events() in AWS logs hook (#33290)``

Misc
~~~~

* ``Improve fetching logs from AWS (#33231)``
* ``Refactor: Simplify code in providers/amazon (#33222)``
* ``Implement EventBridge enable and disable rule operators (#33226)``
* ``Update mypy-boto3-appflow dependency (#32930)``
* ``use 'cached_property' from functools in 'RdsBaseOperator' (#33133)``
* ``Use set for 'template_fields' of 'EcsDeregisterTaskDefinitionOperator' (#33129)``

8.5.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 @@ -28,7 +28,7 @@

__all__ = ["__version__"]

__version__ = "8.5.0"
__version__ = "8.5.1"

try:
from airflow import __version__ as airflow_version
Expand Down
1 change: 1 addition & 0 deletions airflow/providers/amazon/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ description: |

suspended: false
versions:
- 8.5.1
- 8.5.0
- 8.4.0
- 8.3.1
Expand Down
8 changes: 8 additions & 0 deletions airflow/providers/apache/beam/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,14 @@
Changelog
---------

5.2.1
.....

Misc
~~~~

* ``Allow downloading requirements file from GCS in 'BeamRunPythonPipelineOperator' (#31645)``

5.2.0
.....

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 @@ -28,7 +28,7 @@

__all__ = ["__version__"]

__version__ = "5.2.0"
__version__ = "5.2.1"

try:
from airflow import __version__ as airflow_version
Expand Down
1 change: 1 addition & 0 deletions airflow/providers/apache/beam/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ description: |

suspended: false
versions:
- 5.2.1
- 5.2.0
- 5.1.1
- 5.1.0
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3878fe6fab3ccc1461932b456c48996f2763139f
225e3041d269698d0456e09586924c1898d09434
8 changes: 8 additions & 0 deletions airflow/providers/apache/druid/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@
Changelog
---------

3.5.0
.....

Features
~~~~~~~~

* ``DruidHook add SQL-based task support (#32795)``

3.4.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 @@ -28,7 +28,7 @@

__all__ = ["__version__"]

__version__ = "3.4.2"
__version__ = "3.5.0"

try:
from airflow import __version__ as airflow_version
Expand Down
1 change: 1 addition & 0 deletions airflow/providers/apache/druid/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ description: |

suspended: false
versions:
- 3.5.0
- 3.4.2
- 3.4.1
- 3.4.0
Expand Down
2 changes: 1 addition & 1 deletion airflow/providers/apache/flink/.latest-doc-only-change.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3878fe6fab3ccc1461932b456c48996f2763139f
225e3041d269698d0456e09586924c1898d09434
2 changes: 1 addition & 1 deletion airflow/providers/apache/hdfs/.latest-doc-only-change.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3878fe6fab3ccc1461932b456c48996f2763139f
225e3041d269698d0456e09586924c1898d09434
2 changes: 1 addition & 1 deletion airflow/providers/apache/kylin/.latest-doc-only-change.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3878fe6fab3ccc1461932b456c48996f2763139f
225e3041d269698d0456e09586924c1898d09434
2 changes: 1 addition & 1 deletion airflow/providers/apache/pig/.latest-doc-only-change.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3878fe6fab3ccc1461932b456c48996f2763139f
225e3041d269698d0456e09586924c1898d09434
2 changes: 1 addition & 1 deletion airflow/providers/arangodb/.latest-doc-only-change.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3878fe6fab3ccc1461932b456c48996f2763139f
225e3041d269698d0456e09586924c1898d09434
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3878fe6fab3ccc1461932b456c48996f2763139f
225e3041d269698d0456e09586924c1898d09434
8 changes: 8 additions & 0 deletions airflow/providers/celery/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@
Changelog
---------

3.3.2
.....

Misc
~~~~
* ``Add missing re2 dependency to cncf.kubernetes and celery providers (#33237)``
* ``Replace State by TaskInstanceState in Airflow executors (#32627)``

3.3.1
.....

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

__all__ = ["__version__"]

__version__ = "3.3.1"
__version__ = "3.3.2"

try:
from airflow import __version__ as airflow_version
Expand Down
1 change: 1 addition & 0 deletions airflow/providers/celery/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ description: |

suspended: false
versions:
- 3.3.2
- 3.3.1
- 3.3.0
- 3.2.1
Expand Down
2 changes: 1 addition & 1 deletion airflow/providers/cloudant/.latest-doc-only-change.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3878fe6fab3ccc1461932b456c48996f2763139f
225e3041d269698d0456e09586924c1898d09434
11 changes: 11 additions & 0 deletions airflow/providers/cncf/kubernetes/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,17 @@
Changelog
---------

7.4.2
.....

Misc
~~~~

* ``Add missing re2 dependency to cncf.kubernetes and celery providers (#33237)``
* ``Make the 'OnFinishAction' enum inherit from str to support passing it to 'KubernetesPodOperatpor' (#33228)``
* ``Refactor: Simplify code in providers/cncf (#33230)``
* ``Replace State by TaskInstanceState in Airflow executors (#32627)``

7.4.1
.....

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

__all__ = ["__version__"]

__version__ = "7.4.1"
__version__ = "7.4.2"

try:
from airflow import __version__ as airflow_version
Expand Down
1 change: 1 addition & 0 deletions airflow/providers/cncf/kubernetes/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ description: |

suspended: false
versions:
- 7.4.2
- 7.4.1
- 7.4.0
- 7.3.0
Expand Down
8 changes: 8 additions & 0 deletions airflow/providers/common/sql/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,14 @@

------

1.7.0
.....

Features
~~~~~~~~

* ``Add a new parameter to SQL operators to specify conn id field (#30784)``

1.6.2
.....

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

__all__ = ["__version__"]

__version__ = "1.6.2"
__version__ = "1.7.0"

try:
from airflow import __version__ as airflow_version
Expand Down
1 change: 1 addition & 0 deletions airflow/providers/common/sql/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ description: |

suspended: false
versions:
- 1.7.0
- 1.6.2
- 1.6.1
- 1.6.0
Expand Down
8 changes: 8 additions & 0 deletions airflow/providers/databricks/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@
Changelog
---------

4.3.3
.....

Misc
~~~~

* ``Add a new parameter to SQL operators to specify conn id field (#30784)``

4.3.2
.....

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

__all__ = ["__version__"]

__version__ = "4.3.2"
__version__ = "4.3.3"

try:
from airflow import __version__ as airflow_version
Expand Down
1 change: 1 addition & 0 deletions airflow/providers/databricks/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ description: |

suspended: false
versions:
- 4.3.3
- 4.3.2
- 4.3.1
- 4.3.0
Expand Down
2 changes: 1 addition & 1 deletion airflow/providers/datadog/.latest-doc-only-change.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3878fe6fab3ccc1461932b456c48996f2763139f
225e3041d269698d0456e09586924c1898d09434
2 changes: 1 addition & 1 deletion airflow/providers/dingding/.latest-doc-only-change.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3878fe6fab3ccc1461932b456c48996f2763139f
225e3041d269698d0456e09586924c1898d09434
2 changes: 1 addition & 1 deletion airflow/providers/discord/.latest-doc-only-change.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3878fe6fab3ccc1461932b456c48996f2763139f
225e3041d269698d0456e09586924c1898d09434
8 changes: 8 additions & 0 deletions airflow/providers/docker/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@
Changelog
---------

3.7.3
.....

Misc
~~~~

* ``Refactor: Simplify code in providers/docker (#33232)``

3.7.2
.....

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

__all__ = ["__version__"]

__version__ = "3.7.2"
__version__ = "3.7.3"

try:
from airflow import __version__ as airflow_version
Expand Down
1 change: 1 addition & 0 deletions airflow/providers/docker/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ description: |

suspended: false
versions:
- 3.7.3
- 3.7.2
- 3.7.1
- 3.7.0
Expand Down
8 changes: 8 additions & 0 deletions airflow/providers/exasol/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@
Changelog
---------

4.2.3
.....

Misc
~~~~

* ``Add a new parameter to SQL operators to specify conn id field (#30784)``

4.2.2
.....

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

__all__ = ["__version__"]

__version__ = "4.2.2"
__version__ = "4.2.3"

try:
from airflow import __version__ as airflow_version
Expand Down
1 change: 1 addition & 0 deletions airflow/providers/exasol/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ description: |

suspended: false
versions:
- 4.2.3
- 4.2.2
- 4.2.1
- 4.2.0
Expand Down
2 changes: 1 addition & 1 deletion airflow/providers/facebook/.latest-doc-only-change.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3878fe6fab3ccc1461932b456c48996f2763139f
225e3041d269698d0456e09586924c1898d09434
2 changes: 1 addition & 1 deletion airflow/providers/github/.latest-doc-only-change.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3878fe6fab3ccc1461932b456c48996f2763139f
225e3041d269698d0456e09586924c1898d09434
2 changes: 1 addition & 1 deletion airflow/providers/grpc/.latest-doc-only-change.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3878fe6fab3ccc1461932b456c48996f2763139f
225e3041d269698d0456e09586924c1898d09434
2 changes: 1 addition & 1 deletion airflow/providers/influxdb/.latest-doc-only-change.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3878fe6fab3ccc1461932b456c48996f2763139f
225e3041d269698d0456e09586924c1898d09434
2 changes: 1 addition & 1 deletion airflow/providers/jenkins/.latest-doc-only-change.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3878fe6fab3ccc1461932b456c48996f2763139f
225e3041d269698d0456e09586924c1898d09434
Loading