Skip to content

Commit 21990ed

Browse files
authored
Prepare docs for 09 2023 - 1st wave of Providers (#34201)
* Prepare docs for 09 2023 - 1st wave of Providers * fix amazon change log
1 parent 5744b42 commit 21990ed

File tree

294 files changed

+2028
-302
lines changed

Some content is hidden

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

294 files changed

+2028
-302
lines changed

airflow/providers/airbyte/CHANGELOG.rst

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

2929

30+
3.3.2
31+
.....
32+
33+
Bug Fixes
34+
~~~~~~~~~
35+
36+
* ``fix(providers/airbyte): respect soft_fail argument when exception is raised (#34156)``
37+
38+
.. Below changes are excluded from the changelog. Move them to
39+
appropriate section above if needed. Do not delete the lines(!):
40+
* ``Prepare docs for Aug 2023 3rd wave of Providers (#33730)``
41+
* ``D401 Support - Providers: Airbyte to Atlassian (Inclusive) (#33354)``
42+
* ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)``
43+
* ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)``
44+
* ``Remove spurious headers for provider changelogs (#32373)``
45+
* ``Prepare docs for July 2023 wave of Providers (#32298)``
46+
* ``D205 Support - Providers: Airbyte and Alibaba (#32214)``
47+
* ``Improve provider documentation and README structure (#32125)``
48+
3049
3.3.1
3150
.....
3251

airflow/providers/airbyte/__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.3.1"
31+
__version__ = "3.3.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-airbyte:{__version__}` requires Apache Airflow 2.4.0+" # NOQA: E501
4143
)

airflow/providers/airbyte/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.3.2
2627
- 3.3.1
2728
- 3.3.0
2829
- 3.2.1

airflow/providers/alibaba/CHANGELOG.rst

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

29+
2.5.3
30+
.....
31+
32+
Bug Fixes
33+
~~~~~~~~~
34+
35+
* ``fix(providers/alibaba): respect soft_fail argument when exception is raised (#34157)``
36+
2937
2.5.2
3038
.....
3139

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.2"
31+
__version__ = "2.5.3"
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.3
2627
- 2.5.2
2728
- 2.5.1
2829
- 2.5.0

airflow/providers/amazon/CHANGELOG.rst

Lines changed: 49 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,55 @@
2525

2626
Changelog
2727
---------
28-
* ``A bug intoduced in provider-amazon version 8.0.0 caused all 'EcsRunTaskOperator' tasks to detach from the ECS task after 10 minutes and fail - even if the ECS task was still running. In this version we are fixing it by returning the default 'waiter_max_attempts' value to 'sys.maxsize'``
28+
29+
8.7.0
30+
.....
31+
32+
.. warning:: A bug introduced in version 8.0.0 caused all ``EcsRunTaskOperator`` tasks to detach from the ECS task
33+
and fail after 10 minutes, even if the ECS task was still running.
34+
In this version we are fixing it by returning the default ``waiter_max_attempts`` value to ``sys.maxsize``.
35+
36+
Features
37+
~~~~~~~~
38+
39+
* ``Add Amazon SQS Notifier (#33962)``
40+
* ``Add Amazon SNS Notifier (#33828)``
41+
42+
Bug Fixes
43+
~~~~~~~~~
44+
45+
* ``Increase 'waiter_max_attempts' default value in 'EcsRunTaskOperator' (#33712)``
46+
* ``Fix AWS 'EmrStepSensor' ignoring the specified 'aws_conn_id' in deferred mode (#33952)``
47+
* ``Fix type annotation in AppflowHook (#33881)``
48+
* ``Make Amazon Chime connection lazy loaded and consistent with docs (#34000)``
49+
* ``respect "soft_fail" argument when running BatchSensor in deferrable mode (#33405)``
50+
51+
Misc
52+
~~~~
53+
54+
* ``Refactor: Consolidate import and usage of random (#34108)``
55+
* ``Consolidate importing of os.path.* (#34060)``
56+
* ``Refactor regex in providers (#33898)``
57+
* ``Refactor: Simplify loop in aws/triggers/batch.py (#34052)``
58+
* ``Combine similar if logics in providers (#33987)``
59+
* ``Replace single quotes by double quotes in tests (#33864)``
60+
* ``Remove useless string join from providers (#33968)``
61+
* ``Make 'aws.session_factory' part of Amazon provider configuration documentation (#33960)``
62+
* ``Refactor unneeded jumps in providers (#33833)``
63+
* ``Replace try - except pass by contextlib.suppress in providers (#33980)``
64+
* ``Remove some useless try/except from providers code (#33967)``
65+
* ``Refactor: Replace lambdas with comprehensions in providers (#33771)``
66+
* ``Replace sequence concatenation by unpacking in Airflow providers (#33933)``
67+
* ``Reorganize devel_only extra in airflow's setup.py (#33907)``
68+
* ``Remove explicit str concat from Airflow providers package and tests (#33860)``
69+
* ``Improve modules import in AWS provider by move some of them into a type-checking block (#33780)``
70+
* ``Always use 'Literal' from 'typing_extensions' (#33794)``
71+
* ``Use literal dict instead of calling dict() in providers (#33761)``
72+
* ``remove unnecessary and rewrite it using list in providers (#33763)``
73+
74+
.. Below changes are excluded from the changelog. Move them to
75+
appropriate section above if needed. Do not delete the lines(!):
76+
* ``Add decorator for suppress optional internal methods in Amazon Provider (#34034)``
2977
3078
8.6.0
3179
.....

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.6.0"
31+
__version__ = "8.7.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.7.0
2627
- 8.6.0
2728
- 8.5.1
2829
- 8.5.0

airflow/providers/apache/beam/CHANGELOG.rst

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

29+
5.2.3
30+
.....
31+
32+
Misc
33+
~~~~
34+
35+
* ``Replace sequence concatenation by unpacking in Airflow providers (#33933)``
36+
* ``Improve modules import in Airflow providers by some of them into a type-checking block (#33754)``
37+
2938
5.2.2
3039
.....
3140

0 commit comments

Comments
 (0)