Skip to content

Commit e7f59a9

Browse files
authored
Prepare docs for July 2023 2nd wave of Providers (#32566)
* Prepare docs for July 2023 2nd wave of Providers * clean sftp CHANGELOG.rst
1 parent fcbf159 commit e7f59a9

File tree

36 files changed

+274
-33
lines changed

36 files changed

+274
-33
lines changed

airflow/providers/amazon/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+
8.3.1
30+
.....
31+
32+
Bug Fixes
33+
~~~~~~~~~
34+
35+
* ``Append region info to S3ToRedshitOperator if present (#32328)``
36+
2937
8.3.0
3038
.....
3139

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.3.0"
31+
__version__ = "8.3.1"
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.3.1
2627
- 8.3.0
2728
- 8.2.0
2829
- 8.1.0

airflow/providers/cncf/kubernetes/CHANGELOG.rst

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

30+
7.3.0
31+
.....
32+
33+
Features
34+
~~~~~~~~
35+
36+
* ``Logging from all containers in KubernetesOperatorPod (#31663)``
37+
38+
Bug Fixes
39+
~~~~~~~~~
40+
41+
* ``Fix async KPO by waiting pod termination in 'execute_complete' before cleanup (#32467)``
42+
43+
.. Below changes are excluded from the changelog. Move them to
44+
appropriate section above if needed. Do not delete the lines(!):
45+
* ``D205 Support - Providers: Stragglers and new additions (#32447)``
46+
3047
7.2.0
3148
.....
3249

airflow/providers/cncf/kubernetes/__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__ = "7.2.0"
31+
__version__ = "7.3.0"
3232

3333
try:
3434
from airflow import __version__ as airflow_version

airflow/providers/cncf/kubernetes/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+
- 7.3.0
2627
- 7.2.0
2728
- 7.1.0
2829
- 7.0.0

airflow/providers/google/CHANGELOG.rst

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

30+
10.4.0
31+
......
32+
33+
Features
34+
~~~~~~~~
35+
36+
Implement deferrable mode for S3ToGCSOperator
37+
38+
Bug Fixes
39+
~~~~~~~~~
40+
41+
* ``Bugfix GCSToGCSOperator when copy files to folder without wildcard (#32486)``
42+
* ``Fix 'cache_control' parameter of upload function in 'GCSHook' (#32440)``
43+
* ``Fix BigQuery transfer operators to respect project_id arguments (#32232)``
44+
* ``Fix the gcp_gcs_delete_objects on empty list (#32383)``
45+
* ``Fix endless loop of defer in cloud_build (#32387)``
46+
* ``Fix GCSToGCSOperator copy without wildcard and exact_match=True (#32376)``
47+
48+
Misc
49+
~~~~
50+
51+
* ``Allow a destination folder to be provided (#31885)``
52+
* ``Moves 'AzureBlobStorageToGCSOperator' from Azure to Google provider (#32306)``
53+
* ``Give better link to job configuration docs in BigQueryInsertJobOperator (#31736)``
54+
55+
56+
.. Below changes are excluded from the changelog. Move them to
57+
appropriate section above if needed. Do not delete the lines(!):
58+
* ``Combine 8 into 1 (#29462)``
59+
* ``D205 Support - Provider: Google (#32356)``
60+
* ``Migrating Google AutoML example_dags to sys tests (#32368)``
61+
* ``build(pre-commit): check deferrable default value (#32370)``
62+
3063
10.3.0
3164
......
3265

airflow/providers/google/__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__ = "10.3.0"
31+
__version__ = "10.4.0"
3232

3333
try:
3434
from airflow import __version__ as airflow_version

airflow/providers/google/provider.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ description: |
3030
3131
suspended: false
3232
versions:
33+
- 10.4.0
3334
- 10.3.0
3435
- 10.2.0
3536
- 10.1.1

airflow/providers/http/CHANGELOG.rst

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

30+
4.5.0
31+
.....
32+
33+
Features
34+
~~~~~~~~
35+
36+
* ``Add deferrable mode to SimpleHttpOperator (#32448)``
37+
38+
Bug Fixes
39+
~~~~~~~~~
40+
41+
* ``Fix headers passed into HttpAsyncHook (#32409)``
42+
43+
.. Below changes are excluded from the changelog. Move them to
44+
appropriate section above if needed. Do not delete the lines(!):
45+
* ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)``
46+
* ``Remove spurious headers for provider changelogs (#32373)``
47+
* ``Prepare docs for July 2023 wave of Providers (#32298)``
48+
* ``D205 Support - Providers: GRPC to Oracle (inclusive) (#32357)``
49+
* ``Improve provider documentation and README structure (#32125)``
50+
3051
4.4.2
3152
.....
3253

0 commit comments

Comments
 (0)