Content-Length: 1247121 | pFad | https://github.com/apache/airflow/commit/d745cee3dbde6b437a817aa64e385a1a948389d5

70 Prepare adhoc wave of Providers (#31478) · apache/airflow@d745cee · GitHub
Skip to content

Commit d745cee

Browse files
authored
Prepare adhoc wave of Providers (#31478)
1 parent b353621 commit d745cee

File tree

35 files changed

+199
-79
lines changed

35 files changed

+199
-79
lines changed

airflow/providers/common/sql/CHANGELOG.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,14 @@
2424
Changelog
2525
---------
2626

27+
1.5.1
28+
.....
29+
30+
Misc
31+
~~~~
32+
33+
* ``Bring back min-airflow-version for preinstalled providers (#31469)``
34+
2735
1.5.0
2836
.....
2937

airflow/providers/common/sql/__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__ = "1.5.0"
31+
__version__ = "1.5.1"
3232

3333
try:
3434
from airflow import __version__ as airflow_version

airflow/providers/common/sql/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.5.1
2627
- 1.5.0
2728
- 1.4.0
2829
- 1.3.4

airflow/providers/ftp/CHANGELOG.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,14 @@
2424
Changelog
2525
---------
2626

27+
3.4.1
28+
.....
29+
30+
Misc
31+
~~~~
32+
33+
* ``Bring back min-airflow-version for preinstalled providers (#31469)``
34+
2735
3.4.0
2836
.....
2937

airflow/providers/ftp/__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__ = "3.4.0"
31+
__version__ = "3.4.1"
3232

3333
try:
3434
from airflow import __version__ as airflow_version

airflow/providers/ftp/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.4.1
2627
- 3.4.0
2728
- 3.3.1
2829
- 3.3.0

airflow/providers/google/CHANGELOG.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,15 @@
2323
Changelog
2424
---------
2525

26+
10.1.1
27+
......
28+
29+
Bug Fixes
30+
~~~~~~~~~
31+
32+
* ``Fix accessing a GKE cluster through the private endpoint in 'GKEStartPodOperator' (#31391)``
33+
* ``Fix 'BigQueryGetDataOperator''s query job bugs in deferrable mode (#31433)``
34+
2635
10.1.0
2736
......
2837

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.1.0"
31+
__version__ = "10.1.1"
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.1.1
3334
- 10.1.0
3435
- 10.0.0
3536
- 9.0.0

airflow/providers/http/CHANGELOG.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,14 @@
2424
Changelog
2525
---------
2626

27+
4.4.1
28+
.....
29+
30+
Misc
31+
~~~~
32+
33+
* ``Bring back min-airflow-version for preinstalled providers (#31469)``
34+
2735
4.4.0
2836
.....
2937

airflow/providers/http/__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.4.0"
31+
__version__ = "4.4.1"
3232

3333
try:
3434
from airflow import __version__ as airflow_version

airflow/providers/http/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.4.1
2627
- 4.4.0
2728
- 4.3.0
2829
- 4.2.0

airflow/providers/imap/CHANGELOG.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,14 @@
2424
Changelog
2525
---------
2626

27+
3.2.1
28+
.....
29+
30+
Misc
31+
~~~~
32+
33+
* ``Bring back min-airflow-version for preinstalled providers (#31469)``
34+
2735
3.2.0
2836
.....
2937

airflow/providers/imap/__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__ = "3.2.0"
31+
__version__ = "3.2.1"
3232

3333
try:
3434
from airflow import __version__ as airflow_version

airflow/providers/imap/provider.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ description: |
2424
2525
suspended: false
2626
versions:
27+
- 3.2.1
2728
- 3.2.0
2829
- 3.1.1
2930
- 3.1.0

airflow/providers/microsoft/azure/CHANGELOG.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,19 @@
2424
Changelog
2525
---------
2626

27+
6.1.1
28+
.....
29+
30+
Bug Fixes
31+
~~~~~~~~~
32+
33+
* ``Fix deferrable mode execution in WasbPrefixSensor (#31411)``
34+
35+
Misc
36+
~~~~
37+
38+
* ``Optimize deferred mode execution for wasb sensors (#31009)``
39+
2740
6.1.0
2841
.....
2942
.. note::

airflow/providers/microsoft/azure/__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.0"
31+
__version__ = "6.1.1"
3232

3333
try:
3434
from airflow import __version__ as airflow_version

airflow/providers/microsoft/azure/provider.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ description: |
2222
`Microsoft Azure <https://azure.microsoft.com/>`__
2323
suspended: false
2424
versions:
25+
- 6.1.1
2526
- 6.1.0
2627
- 6.0.0
2728
- 5.3.1

airflow/providers/sqlite/CHANGELOG.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,14 @@
2424
Changelog
2525
---------
2626

27+
3.4.1
28+
.....
29+
30+
Misc
31+
~~~~
32+
33+
* ``Bring back min-airflow-version for preinstalled providers (#31469)``
34+
2735
3.4.0
2836
.....
2937

airflow/providers/sqlite/__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__ = "3.4.0"
31+
__version__ = "3.4.1"
3232

3333
try:
3434
from airflow import __version__ as airflow_version

airflow/providers/sqlite/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.4.1
2627
- 3.4.0
2728
- 3.3.2
2829
- 3.3.1

docs/apache-airflow-providers-common-sql/commits.rst

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,26 @@ For high-level changelog, see :doc:`package information including changelog <ind
2828

2929

3030

31+
1.5.1
32+
.....
33+
34+
Latest change: 2023-05-23
35+
36+
================================================================================================= =========== ======================================================================
37+
Commit Committed Subject
38+
================================================================================================= =========== ======================================================================
39+
`547e352578 <https://github.com/apache/airflow/commit/547e352578fac92f072b269dc257d21cdc279d97>`_ 2023-05-23 ``Bring back min-airflow-version for preinstalled providers (#31469)``
40+
================================================================================================= =========== ======================================================================
41+
3142
1.5.0
3243
.....
3344

34-
Latest change: 2023-05-18
45+
Latest change: 2023-05-19
3546

3647
================================================================================================= =========== ======================================================================================
3748
Commit Committed Subject
3849
================================================================================================= =========== ======================================================================================
50+
`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
3951
`abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)``
4052
`f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)``
4153
`d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)``

docs/apache-airflow-providers-common-sql/index.rst

Lines changed: 7 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Package apache-airflow-providers-common-sql
6464
`Common SQL Provider <https://en.wikipedia.org/wiki/SQL>`__
6565

6666

67-
Release: 1.5.0
67+
Release: 1.5.1
6868

6969
Provider package
7070
----------------
@@ -84,20 +84,11 @@ Requirements
8484

8585
The minimum Apache Airflow version supported by this provider package is ``2.4.0``.
8686

87-
This provider package is preinstalled by default when Apache Airflow is installed. You do not need to
88-
install it separately. You can upgrade and downgrade it independently of Apache Airflow package though.
89-
90-
.. note::
91-
92-
The minimum Apache Airflow version for this package is 2.4.0 and it will fail
93-
import at runtime if the version of Airflow is lower even if there is no requirement specified in
94-
the dependencies - this is because the provider is preinstalled and specifying minimum Apache
95-
Airflow version would create a dependency cycle, which confuses dependency tools.
96-
97-
============= ==================
98-
PIP package Version required
99-
============= ==================
100-
``sqlparse`` ``>=0.4.2``
101-
============= ==================
87+
================== ==================
88+
PIP package Version required
89+
================== ==================
90+
``apache-airflow`` ``>=2.4.0``
91+
``sqlparse`` ``>=0.4.2``
92+
================== ==================
10293

10394
.. include:: ../../airflow/providers/common/sql/CHANGELOG.rst

docs/apache-airflow-providers-ftp/commits.rst

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,26 @@ For high-level changelog, see :doc:`package information including changelog <ind
2828

2929

3030

31+
3.4.1
32+
.....
33+
34+
Latest change: 2023-05-23
35+
36+
================================================================================================= =========== ======================================================================
37+
Commit Committed Subject
38+
================================================================================================= =========== ======================================================================
39+
`547e352578 <https://github.com/apache/airflow/commit/547e352578fac92f072b269dc257d21cdc279d97>`_ 2023-05-23 ``Bring back min-airflow-version for preinstalled providers (#31469)``
40+
================================================================================================= =========== ======================================================================
41+
3142
3.4.0
3243
.....
3344

34-
Latest change: 2023-05-18
45+
Latest change: 2023-05-19
3546

3647
================================================================================================= =========== ======================================================================================
3748
Commit Committed Subject
3849
================================================================================================= =========== ======================================================================================
50+
`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
3951
`abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)``
4052
`f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)``
4153
`d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)``

docs/apache-airflow-providers-ftp/index.rst

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Package apache-airflow-providers-ftp
7171
`File Transfer Protocol (FTP) <https://tools.ietf.org/html/rfc114>`__
7272

7373

74-
Release: 3.4.0
74+
Release: 3.4.1
7575

7676
Provider package
7777
----------------
@@ -91,14 +91,10 @@ Requirements
9191

9292
The minimum Apache Airflow version supported by this provider package is ``2.4.0``.
9393

94-
This provider package is preinstalled by default when Apache Airflow is installed. You do not need to
95-
install it separately. You can upgrade and downgrade it independently of Apache Airflow package though.
96-
97-
.. note::
98-
99-
The minimum Apache Airflow version for this package is 2.4.0 and it will fail
100-
import at runtime if the version of Airflow is lower even if there is no requirement specified in
101-
the dependencies - this is because the provider is preinstalled and specifying minimum Apache
102-
Airflow version would create a dependency cycle, which confuses dependency tools.
94+
================== ==================
95+
PIP package Version required
96+
================== ==================
97+
``apache-airflow`` ``>=2.4.0``
98+
================== ==================
10399

104100
.. include:: ../../airflow/providers/ftp/CHANGELOG.rst

docs/apache-airflow-providers-google/commits.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,18 @@ For high-level changelog, see :doc:`package information including changelog <ind
3535

3636

3737

38+
10.1.1
39+
......
40+
41+
Latest change: 2023-05-23
42+
43+
================================================================================================= =========== ==============================================================================================
44+
Commit Committed Subject
45+
================================================================================================= =========== ==============================================================================================
46+
`c082aec089 <https://github.com/apache/airflow/commit/c082aec089405ed0399cfee548011b0520be0011>`_ 2023-05-23 ``Fix accessing a GKE cluster through the private endpoint in 'GKEStartPodOperator' (#31391)``
47+
`0d6e626b05 <https://github.com/apache/airflow/commit/0d6e626b050a860462224ad64dc5e9831fe8624d>`_ 2023-05-22 ``Fix 'BigQueryGetDataOperator''s query job bugs in deferrable mode (#31433)``
48+
================================================================================================= =========== ==============================================================================================
49+
3850
10.1.0
3951
......
4052

@@ -43,6 +55,7 @@ Latest change: 2023-05-19
4355
================================================================================================= =========== ===========================================================================================================================
4456
Commit Committed Subject
4557
================================================================================================= =========== ===========================================================================================================================
58+
`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
4659
`54f1fb0574 <https://github.com/apache/airflow/commit/54f1fb0574a6ecf8f415bbf6da1aaf6f1999bb29>`_ 2023-05-19 ``Docstring improvements (#31375)``
4760
`cfe759dc59 <https://github.com/apache/airflow/commit/cfe759dc59bfc3390e7ba07184f0de9eb725122d>`_ 2023-05-19 ``Switch default Google ads to v13 (#31382)``
4861
`abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)``

docs/apache-airflow-providers-google/index.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Google services including:
7676
- `Google Workspace <https://workspace.google.com/>`__ (formerly Google Suite)
7777

7878

79-
Release: 10.1.0
79+
Release: 10.1.1
8080

8181
Provider package
8282
----------------
@@ -194,7 +194,7 @@ Downloading official packages
194194
You can download officially released packages and verify their checksums and signatures from the
195195
`Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
196196

197-
* `The apache-airflow-providers-google 10.1.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-google-10.1.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-google-10.1.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-google-10.1.0.tar.gz.sha512>`__)
198-
* `The apache-airflow-providers-google 10.1.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-10.1.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-10.1.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-10.1.0-py3-none-any.whl.sha512>`__)
197+
* `The apache-airflow-providers-google 10.1.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-google-10.1.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-google-10.1.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-google-10.1.1.tar.gz.sha512>`__)
198+
* `The apache-airflow-providers-google 10.1.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-10.1.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-10.1.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-10.1.1-py3-none-any.whl.sha512>`__)
199199

200200
.. include:: ../../airflow/providers/google/CHANGELOG.rst

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/d745cee3dbde6b437a817aa64e385a1a948389d5

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy