Content-Length: 1993373 | pFad | https://github.com/apache/airflow/commit/c077d190609f931387c1fcd7b8cc34f12e2372b9

65 Prepare docs for Aug 2023 3rd wave of Providers (#33730) · apache/airflow@c077d19 · GitHub
Skip to content

Commit c077d19

Browse files
authored
Prepare docs for Aug 2023 3rd wave of Providers (#33730)
* Prepare docs for Aug 2023 3rd wave of Providers * fix azure
1 parent a16f861 commit c077d19

File tree

256 files changed

+1722
-287
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

256 files changed

+1722
-287
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
225e3041d269698d0456e09586924c1898d09434
1+
c645d8e40c167ea1f6c332cdc3ea0ca5a9363205

airflow/providers/alibaba/CHANGELOG.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,19 @@
2626
Changelog
2727
---------
2828

29+
2.5.2
30+
.....
31+
32+
Misc
33+
~~~~
34+
35+
* ``Refactor: Simplify code in Apache/Alibaba providers (#33227)``
36+
* ``Simplify conditions on len() in providers/apache (#33564)``
37+
38+
.. Below changes are excluded from the changelog. Move them to
39+
appropriate section above if needed. Do not delete the lines(!):
40+
* ``D401 Support - Providers: Airbyte to Atlassian (Inclusive) (#33354)``
41+
2942
2.5.1
3043
.....
3144

airflow/providers/alibaba/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
__all__ = ["__version__"]
3030

31-
__version__ = "2.5.1"
31+
__version__ = "2.5.2"
3232

3333
try:
3434
from airflow import __version__ as airflow_version

airflow/providers/alibaba/provider.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ description: |
2323
2424
suspended: false
2525
versions:
26+
- 2.5.2
2627
- 2.5.1
2728
- 2.5.0
2829
- 2.4.1

airflow/providers/amazon/CHANGELOG.rst

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,48 @@
2626
Changelog
2727
---------
2828

29+
8.6.0
30+
.....
31+
32+
Features
33+
~~~~~~~~
34+
35+
* ``Added Amazon SageMaker Notebook hook and operators (#33219)``
36+
* ``Add 'deferrable' option to 'LambdaCreateFunctionOperator' (#33327)``
37+
* ``Add Deferrable mode to GlueCatalogPartitionSensor (#33239)``
38+
* ``Add 'sql_hook_params' parameter to 'S3ToSqlOperator' (#33427)``
39+
* ``Add 'sql_hook_params' parameter to 'SqlToS3Operator' (#33425)``
40+
* ``Add parameter to pass role ARN to 'GlueJobOperator ' (#33408)``
41+
* ``Add new RdsStartExportTaskOperator parameters (#33251)``
42+
43+
Bug Fixes
44+
~~~~~~~~~
45+
46+
* ``Fix bug in task logs when using AWS CloudWatch. Do not set 'start_time' (#33673)``
47+
* ``Fix AWS Batch waiter failure state (#33656)``
48+
* ``Fix AWS appflow waiter (#33613)``
49+
* ``Fix striping tags when falling back to update in 'SageMakerEndpointOperator' (#33487)``
50+
51+
52+
Misc
53+
~~~~
54+
55+
* ``Simplify conditions on len() in providers/amazon (#33565)``
56+
* ``Remove non-public interface usage in EcsRunTaskOperator (#29447)``
57+
* ``Upgrade botocore/aiobotocore minimum requirements (#33649)``
58+
* ``Consolidate import and usage of itertools (#33479)``
59+
* ``Consolidate import and usage of pandas (#33480)``
60+
* ``always push ECS task ARN to xcom in 'EcsRunTaskOperator' (#33703)``
61+
* ``Use 'boto3.client' linked to resource meta instead of create new one for waiters (#33552)``
62+
63+
.. Below changes are excluded from the changelog. Move them to
64+
appropriate section above if needed. Do not delete the lines(!):
65+
* ``Add Appflow system test + improvements (#33614)``
66+
* ``Fix typos (double words and it's/its) (#33623)``
67+
* ``Refactor: Remove useless str() calls (#33629)``
68+
* ``Replace strftime with f-strings where nicer (#33455)``
69+
* ``D401 Support - Providers: Airbyte to Atlassian (Inclusive) (#33354)``
70+
2971
8.5.1
3072
.....
3173

airflow/providers/amazon/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
__all__ = ["__version__"]
3030

31-
__version__ = "8.5.1"
31+
__version__ = "8.6.0"
3232

3333
try:
3434
from airflow import __version__ as airflow_version

airflow/providers/amazon/provider.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ description: |
2323
2424
suspended: false
2525
versions:
26+
- 8.6.0
2627
- 8.5.1
2728
- 8.5.0
2829
- 8.4.0

airflow/providers/apache/beam/CHANGELOG.rst

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,24 @@
2626
Changelog
2727
---------
2828

29+
5.2.2
30+
.....
31+
32+
Bug Fixes
33+
~~~~~~~~~
34+
35+
* ``Fix wrong OR condition when evaluating beam version < 2.39.0 (#33308)``
36+
37+
Misc
38+
~~~~
39+
40+
* ``Refactor: Simplify code in Apache/Alibaba providers (#33227)``
41+
42+
.. Below changes are excluded from the changelog. Move them to
43+
appropriate section above if needed. Do not delete the lines(!):
44+
* ``D401 Support - Providers: Airbyte to Atlassian (Inclusive) (#33354)``
45+
* ``D205 Support - Providers - Final Pass (#33303)``
46+
2947
5.2.1
3048
.....
3149

airflow/providers/apache/beam/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
__all__ = ["__version__"]
3030

31-
__version__ = "5.2.1"
31+
__version__ = "5.2.2"
3232

3333
try:
3434
from airflow import __version__ as airflow_version

airflow/providers/apache/beam/provider.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ description: |
2323
2424
suspended: false
2525
versions:
26+
- 5.2.2
2627
- 5.2.1
2728
- 5.2.0
2829
- 5.1.1
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
225e3041d269698d0456e09586924c1898d09434
1+
c645d8e40c167ea1f6c332cdc3ea0ca5a9363205
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3878fe6fab3ccc1461932b456c48996f2763139f
1+
c645d8e40c167ea1f6c332cdc3ea0ca5a9363205
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3878fe6fab3ccc1461932b456c48996f2763139f
1+
c645d8e40c167ea1f6c332cdc3ea0ca5a9363205

airflow/providers/apache/flink/CHANGELOG.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,21 @@
2626
Changelog
2727
---------
2828

29+
1.1.2
30+
.....
31+
32+
Misc
33+
~~~~
34+
35+
* ``Simplify conditions on len() in providers/apache (#33564)``
36+
37+
.. Below changes are excluded from the changelog. Move them to
38+
appropriate section above if needed. Do not delete the lines(!):
39+
* ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)``
40+
* ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)``
41+
* ``Remove spurious headers for provider changelogs (#32373)``
42+
* ``Improve provider documentation and README structure (#32125)``
43+
2944
1.1.1
3045
.....
3146

airflow/providers/apache/flink/__init__.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,16 @@
2828

2929
__all__ = ["__version__"]
3030

31-
__version__ = "1.1.1"
31+
__version__ = "1.1.2"
3232

3333
try:
3434
from airflow import __version__ as airflow_version
3535
except ImportError:
3636
from airflow.version import version as airflow_version
3737

38-
if packaging.version.parse(airflow_version) < packaging.version.parse("2.4.0"):
38+
if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
39+
"2.4.0"
40+
):
3941
raise RuntimeError(
4042
f"The package `apache-airflow-providers-apache-flink:{__version__}` requires Apache Airflow 2.4.0+" # NOQA: E501
4143
)

airflow/providers/apache/flink/provider.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ description: |
2323
2424
suspended: false
2525
versions:
26+
- 1.1.2
2627
- 1.1.1
2728
- 1.1.0
2829
- 1.0.1
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
225e3041d269698d0456e09586924c1898d09434
1+
a54c2424df51bf1acec420f4792a237dabcfa12b

airflow/providers/apache/hive/CHANGELOG.rst

Lines changed: 25 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,32 @@
2727
Changelog
2828
---------
2929

30-
The provider now uses pure-sasl, a pure-Python implementation of SASL,
31-
which is better maintained than previous sasl implementation, even
32-
if a bit slower for sasl interface. It also allows hive to be
33-
installed for Python 3.11.
30+
6.1.5
31+
.....
32+
33+
.. note::
34+
The provider now uses pure-sasl, a pure-Python implementation of SASL,
35+
which is better maintained than previous sasl implementation, even
36+
if a bit slower for sasl interface. It also allows hive to be
37+
installed for Python 3.11.
3438

39+
Misc
40+
~~~~
41+
42+
* ``Bring back hive support for Python 3.11 (#32607)``
43+
* ``Refactor: Simplify code in Apache/Alibaba providers (#33227)``
44+
* ``Simplify 'X for X in Y' to 'Y' where applicable (#33453)``
45+
* ``Replace OrderedDict with plain dict (#33508)``
46+
* ``Simplify code around enumerate (#33476)``
47+
* ``Use str.splitlines() to split lines in providers (#33593)``
48+
* ``Simplify conditions on len() in providers/apache (#33564)``
49+
* ``Replace repr() with proper formatting (#33520)``
50+
* ``Avoid importing pandas and numpy in runtime and module level (#33483)``
51+
* ``Consolidate import and usage of pandas (#33480)``
52+
53+
.. Below changes are excluded from the changelog. Move them to
54+
appropriate section above if needed. Do not delete the lines(!):
55+
* ``D401 Support - Providers: Airbyte to Atlassian (Inclusive) (#33354)``
3556
3657
6.1.4
3758
.....

airflow/providers/apache/hive/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
__all__ = ["__version__"]
3030

31-
__version__ = "6.1.4"
31+
__version__ = "6.1.5"
3232

3333
try:
3434
from airflow import __version__ as airflow_version

airflow/providers/apache/hive/provider.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ description: |
2323
2424
suspended: false
2525
versions:
26+
- 6.1.5
2627
- 6.1.4
2728
- 6.1.3
2829
- 6.1.2
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
a54c2424df51bf1acec420f4792a237dabcfa12b
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
225e3041d269698d0456e09586924c1898d09434
1+
b5a4d36383c4143f46e168b8b7a4ba2dc7c54076

airflow/providers/apache/livy/CHANGELOG.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,20 @@
2828
Changelog
2929
---------
3030

31+
3.5.3
32+
.....
33+
34+
Misc
35+
~~~~
36+
37+
* ``Refactor: Remove useless str() calls (#33629)``
38+
* ``Refactor: Simplify code in Apache/Alibaba providers (#33227)``
39+
* ``Simplify conditions on len() in providers/apache (#33564)``
40+
41+
.. Below changes are excluded from the changelog. Move them to
42+
appropriate section above if needed. Do not delete the lines(!):
43+
* ``D401 Support - Providers: Airbyte to Atlassian (Inclusive) (#33354)``
44+
3145
3.5.2
3246
.....
3347

airflow/providers/apache/livy/__init__.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,16 @@
2828

2929
__all__ = ["__version__"]
3030

31-
__version__ = "3.5.2"
31+
__version__ = "3.5.3"
3232

3333
try:
3434
from airflow import __version__ as airflow_version
3535
except ImportError:
3636
from airflow.version import version as airflow_version
3737

38-
if packaging.version.parse(airflow_version) < packaging.version.parse("2.4.0"):
38+
if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
39+
"2.4.0"
40+
):
3941
raise RuntimeError(
4042
f"The package `apache-airflow-providers-apache-livy:{__version__}` requires Apache Airflow 2.4.0+" # NOQA: E501
4143
)

airflow/providers/apache/livy/provider.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ description: |
2323
2424
suspended: false
2525
versions:
26+
- 3.5.3
2627
- 3.5.2
2728
- 3.5.1
2829
- 3.5.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
225e3041d269698d0456e09586924c1898d09434
1+
b5a4d36383c4143f46e168b8b7a4ba2dc7c54076

airflow/providers/apache/pinot/CHANGELOG.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,18 @@ Changelog
3030
---------
3131

3232

33+
4.1.3
34+
.....
35+
36+
Bug Fixes
37+
~~~~~~~~~
38+
39+
* ``Referencing correct hooks for Apache Pinot (#33601)``
40+
41+
.. Below changes are excluded from the changelog. Move them to
42+
appropriate section above if needed. Do not delete the lines(!):
43+
* ``D401 Support - Providers: Airbyte to Atlassian (Inclusive) (#33354)``
44+
3345
4.1.2
3446
.....
3547

airflow/providers/apache/pinot/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
__all__ = ["__version__"]
3030

31-
__version__ = "4.1.2"
31+
__version__ = "4.1.3"
3232

3333
try:
3434
from airflow import __version__ as airflow_version

airflow/providers/apache/pinot/provider.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ description: |
2323
2424
suspended: false
2525
versions:
26+
- 4.1.3
2627
- 4.1.2
2728
- 4.1.1
2829
- 4.1.0

airflow/providers/apache/spark/CHANGELOG.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,18 @@
2929
Changelog
3030
---------
3131

32+
4.1.4
33+
.....
34+
35+
Misc
36+
~~~~
37+
38+
* ``Refactor: Simplify code in Apache/Alibaba providers (#33227)``
39+
40+
.. Below changes are excluded from the changelog. Move them to
41+
appropriate section above if needed. Do not delete the lines(!):
42+
* ``D401 Support - Providers: Airbyte to Atlassian (Inclusive) (#33354)``
43+
3244
4.1.3
3345
.....
3446

airflow/providers/apache/spark/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
__all__ = ["__version__"]
3030

31-
__version__ = "4.1.3"
31+
__version__ = "4.1.4"
3232

3333
try:
3434
from airflow import __version__ as airflow_version

airflow/providers/apache/spark/provider.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ description: |
2323
2424
suspended: false
2525
versions:
26+
- 4.1.4
2627
- 4.1.3
2728
- 4.1.2
2829
- 4.1.1
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3878fe6fab3ccc1461932b456c48996f2763139f
1+
c645d8e40c167ea1f6c332cdc3ea0ca5a9363205
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
c645d8e40c167ea1f6c332cdc3ea0ca5a9363205

0 commit comments

Comments
 (0)








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: https://github.com/apache/airflow/commit/c077d190609f931387c1fcd7b8cc34f12e2372b9

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy