apache-airflow-providers-common-compat 1.6.0rc1__tar.gz → 1.10.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- apache_airflow_providers_common_compat-1.10.1/.pre-commit-config.yaml +32 -0
- apache_airflow_providers_common_compat-1.10.1/NOTICE +5 -0
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.10.1}/PKG-INFO +28 -15
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.10.1}/README.rst +18 -8
- apache_airflow_providers_common_compat-1.10.1/docs/.latest-doc-only-change.txt +1 -0
- apache_airflow_providers_common_compat-1.10.1/docs/changelog.rst +366 -0
- apache_airflow_providers_common_compat-1.10.1/docs/commits.rst +35 -0
- apache_airflow_providers_common_compat-1.10.1/docs/conf.py +27 -0
- apache_airflow_providers_common_compat-1.10.1/docs/index.rst +118 -0
- apache_airflow_providers_common_compat-1.10.1/docs/installing-providers-from-sources.rst +18 -0
- apache_airflow_providers_common_compat-1.10.1/docs/security.rst +18 -0
- apache_airflow_providers_common_compat-1.10.1/provider.yaml +54 -0
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.10.1}/pyproject.toml +26 -10
- apache_airflow_providers_common_compat-1.10.1/src/airflow/__init__.py +17 -0
- apache_airflow_providers_common_compat-1.10.1/src/airflow/providers/__init__.py +17 -0
- apache_airflow_providers_common_compat-1.10.1/src/airflow/providers/common/__init__.py +17 -0
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.10.1}/src/airflow/providers/common/compat/__init__.py +3 -3
- apache_airflow_providers_common_compat-1.10.1/src/airflow/providers/common/compat/_compat_utils.py +105 -0
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.10.1}/src/airflow/providers/common/compat/assets/__init__.py +2 -7
- apache_airflow_providers_common_compat-1.10.1/src/airflow/providers/common/compat/connection/__init__.py +50 -0
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.10.1}/src/airflow/providers/common/compat/get_provider_info.py +1 -10
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.10.1}/src/airflow/providers/common/compat/lineage/entities.py +1 -1
- apache_airflow_providers_common_compat-1.10.1/src/airflow/providers/common/compat/lineage/hook.py +242 -0
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.10.1}/src/airflow/providers/common/compat/notifier/__init__.py +2 -2
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.10.1}/src/airflow/providers/common/compat/openlineage/check.py +2 -1
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.10.1}/src/airflow/providers/common/compat/openlineage/utils/spark.py +20 -20
- apache_airflow_providers_common_compat-1.10.1/src/airflow/providers/common/compat/sdk.py +269 -0
- apache_airflow_providers_common_compat-1.10.1/src/airflow/providers/common/compat/sqlalchemy/orm.py +27 -0
- apache_airflow_providers_common_compat-1.10.1/src/airflow/providers/common/compat/standard/__init__.py +16 -0
- apache_airflow_providers_common_compat-1.10.1/src/airflow/providers/common/compat/standard/operators.py +34 -0
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.10.1}/src/airflow/providers/common/compat/standard/triggers.py +6 -9
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.10.1}/src/airflow/providers/common/compat/standard/utils.py +13 -9
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.10.1}/src/airflow/providers/common/compat/version_compat.py +13 -2
- apache_airflow_providers_common_compat-1.10.1/tests/conftest.py +19 -0
- apache_airflow_providers_common_compat-1.10.1/tests/unit/__init__.py +17 -0
- apache_airflow_providers_common_compat-1.10.1/tests/unit/common/__init__.py +17 -0
- apache_airflow_providers_common_compat-1.10.1/tests/unit/common/compat/__init__.py +16 -0
- apache_airflow_providers_common_compat-1.10.1/tests/unit/common/compat/connection/__init__.py +16 -0
- apache_airflow_providers_common_compat-1.10.1/tests/unit/common/compat/connection/test_connection.py +69 -0
- apache_airflow_providers_common_compat-1.10.1/tests/unit/common/compat/lineage/__init__.py +16 -0
- apache_airflow_providers_common_compat-1.10.1/tests/unit/common/compat/lineage/test_hook.py +997 -0
- apache_airflow_providers_common_compat-1.10.1/tests/unit/common/compat/openlineage/__init__.py +16 -0
- apache_airflow_providers_common_compat-1.10.1/tests/unit/common/compat/openlineage/test_check.py +242 -0
- apache_airflow_providers_common_compat-1.10.1/tests/unit/common/compat/openlineage/test_facet.py +22 -0
- apache_airflow_providers_common_compat-1.10.1/tests/unit/common/compat/openlineage/utils/__init__.py +16 -0
- apache_airflow_providers_common_compat-1.10.1/tests/unit/common/compat/openlineage/utils/test_spark.py +25 -0
- apache_airflow_providers_common_compat-1.10.1/tests/unit/common/compat/openlineage/utils/test_sql.py +23 -0
- apache_airflow_providers_common_compat-1.10.1/tests/unit/common/compat/openlineage/utils/test_utils.py +23 -0
- apache_airflow_providers_common_compat-1.10.1/tests/unit/common/compat/security/__init__.py +16 -0
- apache_airflow_providers_common_compat-1.10.1/tests/unit/common/compat/security/test_permissions.py +23 -0
- apache_airflow_providers_common_compat-1.10.1/tests/unit/common/compat/sqlalchemy/__init__.py +16 -0
- apache_airflow_providers_common_compat-1.10.1/tests/unit/common/compat/sqlalchemy/test_orm.py +145 -0
- apache_airflow_providers_common_compat-1.10.1/tests/unit/common/compat/test__compat_utils.py +215 -0
- apache_airflow_providers_common_compat-1.10.1/tests/unit/common/compat/test_check.py +103 -0
- apache_airflow_providers_common_compat-1.10.1/tests/unit/common/compat/test_sdk.py +54 -0
- apache_airflow_providers_common_compat-1.6.0rc1/src/airflow/providers/common/compat/lineage/hook.py +0 -115
- apache_airflow_providers_common_compat-1.6.0rc1/src/airflow/providers/common/compat/standard/operators.py +0 -50
- {apache_airflow_providers_common_compat-1.6.0rc1/src/airflow/providers/common/compat → apache_airflow_providers_common_compat-1.10.1}/LICENSE +0 -0
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.10.1}/src/airflow/providers/common/compat/check.py +0 -0
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.10.1}/src/airflow/providers/common/compat/lineage/__init__.py +0 -0
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.10.1}/src/airflow/providers/common/compat/openlineage/__init__.py +0 -0
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.10.1}/src/airflow/providers/common/compat/openlineage/facet.py +0 -0
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.10.1}/src/airflow/providers/common/compat/openlineage/utils/__init__.py +0 -0
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.10.1}/src/airflow/providers/common/compat/openlineage/utils/sql.py +0 -0
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.10.1}/src/airflow/providers/common/compat/openlineage/utils/utils.py +0 -0
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.10.1}/src/airflow/providers/common/compat/security/__init__.py +0 -0
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.10.1}/src/airflow/providers/common/compat/security/permissions.py +0 -0
- {apache_airflow_providers_common_compat-1.6.0rc1/src/airflow/providers/common/compat/standard → apache_airflow_providers_common_compat-1.10.1/src/airflow/providers/common/compat/sqlalchemy}/__init__.py +0 -0
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# Licensed to the Apache Software Foundation (ASF) under one
|
|
2
|
+
# or more contributor license agreements. See the NOTICE file
|
|
3
|
+
# distributed with this work for additional information
|
|
4
|
+
# regarding copyright ownership. The ASF licenses this file
|
|
5
|
+
# to you under the Apache License, Version 2.0 (the
|
|
6
|
+
# "License"); you may not use this file except in compliance
|
|
7
|
+
# with the License. You may obtain a copy of the License at
|
|
8
|
+
#
|
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
#
|
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
|
12
|
+
# software distributed under the License is distributed on an
|
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
+
# KIND, either express or implied. See the License for the
|
|
15
|
+
# specific language governing permissions and limitations
|
|
16
|
+
# under the License.
|
|
17
|
+
---
|
|
18
|
+
default_stages: [pre-commit, pre-push]
|
|
19
|
+
minimum_prek_version: '0.2.0'
|
|
20
|
+
default_language_version:
|
|
21
|
+
python: python3
|
|
22
|
+
node: 22.19.0
|
|
23
|
+
golang: 1.24.0
|
|
24
|
+
repos:
|
|
25
|
+
- repo: local
|
|
26
|
+
hooks:
|
|
27
|
+
- id: check-common-compat-sdk-imports-in-sync
|
|
28
|
+
name: Check common.compat sdk TYPE_CHECKING matches runtime maps
|
|
29
|
+
language: python
|
|
30
|
+
files: ^src/airflow/providers/common/compat/sdk\.py$
|
|
31
|
+
pass_filenames: false
|
|
32
|
+
entry: ../../../scripts/ci/prek/check_common_compat_lazy_imports.py
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: apache-airflow-providers-common-compat
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.10.1
|
|
4
4
|
Summary: Provider package apache-airflow-providers-common-compat for Apache Airflow
|
|
5
5
|
Keywords: airflow-provider,common.compat,airflow,integration
|
|
6
6
|
Author-email: Apache Software Foundation <dev@airflow.apache.org>
|
|
7
7
|
Maintainer-email: Apache Software Foundation <dev@airflow.apache.org>
|
|
8
|
-
Requires-Python:
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
9
|
Description-Content-Type: text/x-rst
|
|
10
|
+
License-Expression: Apache-2.0
|
|
10
11
|
Classifier: Development Status :: 5 - Production/Stable
|
|
11
12
|
Classifier: Environment :: Console
|
|
12
13
|
Classifier: Environment :: Web Environment
|
|
@@ -14,18 +15,20 @@ Classifier: Intended Audience :: Developers
|
|
|
14
15
|
Classifier: Intended Audience :: System Administrators
|
|
15
16
|
Classifier: Framework :: Apache Airflow
|
|
16
17
|
Classifier: Framework :: Apache Airflow :: Provider
|
|
17
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
19
18
|
Classifier: Programming Language :: Python :: 3.10
|
|
20
19
|
Classifier: Programming Language :: Python :: 3.11
|
|
21
20
|
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
22
22
|
Classifier: Topic :: System :: Monitoring
|
|
23
|
-
|
|
23
|
+
License-File: LICENSE
|
|
24
|
+
License-File: NOTICE
|
|
25
|
+
Requires-Dist: apache-airflow>=2.11.0
|
|
26
|
+
Requires-Dist: asgiref>=2.3.0
|
|
24
27
|
Requires-Dist: apache-airflow-providers-openlineage ; extra == "openlineage"
|
|
25
28
|
Requires-Dist: apache-airflow-providers-standard ; extra == "standard"
|
|
26
29
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
|
27
|
-
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.
|
|
28
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.
|
|
30
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.10.1/changelog.html
|
|
31
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.10.1
|
|
29
32
|
Project-URL: Mastodon, https://fosstodon.org/@airflow
|
|
30
33
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
|
31
34
|
Project-URL: Source Code, https://github.com/apache/airflow
|
|
@@ -58,10 +61,10 @@ Provides-Extra: standard
|
|
|
58
61
|
|
|
59
62
|
Package ``apache-airflow-providers-common-compat``
|
|
60
63
|
|
|
61
|
-
Release: ``1.
|
|
64
|
+
Release: ``1.10.1``
|
|
62
65
|
|
|
63
66
|
|
|
64
|
-
|
|
67
|
+
Common Compatibility Provider - providing compatibility code for previous Airflow versions
|
|
65
68
|
|
|
66
69
|
|
|
67
70
|
Provider package
|
|
@@ -71,16 +74,16 @@ This is a provider package for ``common.compat`` provider. All classes for this
|
|
|
71
74
|
are in ``airflow.providers.common.compat`` python package.
|
|
72
75
|
|
|
73
76
|
You can find package information and changelog for the provider
|
|
74
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.
|
|
77
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.10.1/>`_.
|
|
75
78
|
|
|
76
79
|
Installation
|
|
77
80
|
------------
|
|
78
81
|
|
|
79
|
-
You can install this package on top of an existing Airflow
|
|
82
|
+
You can install this package on top of an existing Airflow installation (see ``Requirements`` below
|
|
80
83
|
for the minimum Airflow version supported) via
|
|
81
84
|
``pip install apache-airflow-providers-common-compat``
|
|
82
85
|
|
|
83
|
-
The package supports the following python versions: 3.
|
|
86
|
+
The package supports the following python versions: 3.10,3.11,3.12,3.13
|
|
84
87
|
|
|
85
88
|
Requirements
|
|
86
89
|
------------
|
|
@@ -88,7 +91,8 @@ Requirements
|
|
|
88
91
|
================== ==================
|
|
89
92
|
PIP package Version required
|
|
90
93
|
================== ==================
|
|
91
|
-
``apache-airflow`` ``>=2.
|
|
94
|
+
``apache-airflow`` ``>=2.11.0``
|
|
95
|
+
``asgiref`` ``>=2.3.0``
|
|
92
96
|
================== ==================
|
|
93
97
|
|
|
94
98
|
Cross provider package dependencies
|
|
@@ -108,9 +112,18 @@ You can install such cross-provider dependencies when installing from PyPI. For
|
|
|
108
112
|
Dependent package Extra
|
|
109
113
|
============================================================================================================== ===============
|
|
110
114
|
`apache-airflow-providers-openlineage <https://airflow.apache.org/docs/apache-airflow-providers-openlineage>`_ ``openlineage``
|
|
111
|
-
`apache-airflow-providers-standard <https://airflow.apache.org/docs/apache-airflow-providers-standard>`_ ``standard``
|
|
112
115
|
============================================================================================================== ===============
|
|
113
116
|
|
|
117
|
+
Optional dependencies
|
|
118
|
+
----------------------
|
|
119
|
+
|
|
120
|
+
=============== ========================================
|
|
121
|
+
Extra Dependencies
|
|
122
|
+
=============== ========================================
|
|
123
|
+
``openlineage`` ``apache-airflow-providers-openlineage``
|
|
124
|
+
``standard`` ``apache-airflow-providers-standard``
|
|
125
|
+
=============== ========================================
|
|
126
|
+
|
|
114
127
|
The changelog for the provider package can be found in the
|
|
115
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.
|
|
128
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.10.1/changelog.html>`_.
|
|
116
129
|
|
|
@@ -23,10 +23,10 @@
|
|
|
23
23
|
|
|
24
24
|
Package ``apache-airflow-providers-common-compat``
|
|
25
25
|
|
|
26
|
-
Release: ``1.
|
|
26
|
+
Release: ``1.10.1``
|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
|
|
29
|
+
Common Compatibility Provider - providing compatibility code for previous Airflow versions
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
Provider package
|
|
@@ -36,16 +36,16 @@ This is a provider package for ``common.compat`` provider. All classes for this
|
|
|
36
36
|
are in ``airflow.providers.common.compat`` python package.
|
|
37
37
|
|
|
38
38
|
You can find package information and changelog for the provider
|
|
39
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.
|
|
39
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.10.1/>`_.
|
|
40
40
|
|
|
41
41
|
Installation
|
|
42
42
|
------------
|
|
43
43
|
|
|
44
|
-
You can install this package on top of an existing Airflow
|
|
44
|
+
You can install this package on top of an existing Airflow installation (see ``Requirements`` below
|
|
45
45
|
for the minimum Airflow version supported) via
|
|
46
46
|
``pip install apache-airflow-providers-common-compat``
|
|
47
47
|
|
|
48
|
-
The package supports the following python versions: 3.
|
|
48
|
+
The package supports the following python versions: 3.10,3.11,3.12,3.13
|
|
49
49
|
|
|
50
50
|
Requirements
|
|
51
51
|
------------
|
|
@@ -53,7 +53,8 @@ Requirements
|
|
|
53
53
|
================== ==================
|
|
54
54
|
PIP package Version required
|
|
55
55
|
================== ==================
|
|
56
|
-
``apache-airflow`` ``>=2.
|
|
56
|
+
``apache-airflow`` ``>=2.11.0``
|
|
57
|
+
``asgiref`` ``>=2.3.0``
|
|
57
58
|
================== ==================
|
|
58
59
|
|
|
59
60
|
Cross provider package dependencies
|
|
@@ -73,8 +74,17 @@ You can install such cross-provider dependencies when installing from PyPI. For
|
|
|
73
74
|
Dependent package Extra
|
|
74
75
|
============================================================================================================== ===============
|
|
75
76
|
`apache-airflow-providers-openlineage <https://airflow.apache.org/docs/apache-airflow-providers-openlineage>`_ ``openlineage``
|
|
76
|
-
`apache-airflow-providers-standard <https://airflow.apache.org/docs/apache-airflow-providers-standard>`_ ``standard``
|
|
77
77
|
============================================================================================================== ===============
|
|
78
78
|
|
|
79
|
+
Optional dependencies
|
|
80
|
+
----------------------
|
|
81
|
+
|
|
82
|
+
=============== ========================================
|
|
83
|
+
Extra Dependencies
|
|
84
|
+
=============== ========================================
|
|
85
|
+
``openlineage`` ``apache-airflow-providers-openlineage``
|
|
86
|
+
``standard`` ``apache-airflow-providers-standard``
|
|
87
|
+
=============== ========================================
|
|
88
|
+
|
|
79
89
|
The changelog for the provider package can be found in the
|
|
80
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.
|
|
90
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.10.1/changelog.html>`_.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3442d811cf693e836a862652c9caf04b7a373af7
|
|
@@ -0,0 +1,366 @@
|
|
|
1
|
+
.. Licensed to the Apache Software Foundation (ASF) under one
|
|
2
|
+
or more contributor license agreements. See the NOTICE file
|
|
3
|
+
distributed with this work for additional information
|
|
4
|
+
regarding copyright ownership. The ASF licenses this file
|
|
5
|
+
to you under the Apache License, Version 2.0 (the
|
|
6
|
+
"License"); you may not use this file except in compliance
|
|
7
|
+
with the License. You may obtain a copy of the License at
|
|
8
|
+
|
|
9
|
+
.. http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
|
|
11
|
+
.. Unless required by applicable law or agreed to in writing,
|
|
12
|
+
software distributed under the License is distributed on an
|
|
13
|
+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
+
KIND, either express or implied. See the License for the
|
|
15
|
+
specific language governing permissions and limitations
|
|
16
|
+
under the License.
|
|
17
|
+
|
|
18
|
+
.. NOTE TO CONTRIBUTORS:
|
|
19
|
+
Please, only add notes to the Changelog just below the "Changelog" header when there are some breaking changes
|
|
20
|
+
and you want to add an explanation to the users on how they are supposed to deal with them.
|
|
21
|
+
The changelog is updated and maintained semi-automatically by release manager.
|
|
22
|
+
|
|
23
|
+
``apache-airflow-providers-common-compat``
|
|
24
|
+
|
|
25
|
+
Changelog
|
|
26
|
+
---------
|
|
27
|
+
|
|
28
|
+
1.10.1
|
|
29
|
+
......
|
|
30
|
+
|
|
31
|
+
Misc
|
|
32
|
+
~~~~
|
|
33
|
+
|
|
34
|
+
* ``Add backcompat for exceptions in providers (#58727)``
|
|
35
|
+
* ``Move the traces and metrics code under a common observability package (#56187)``
|
|
36
|
+
* ``Bump minimum prek version to 0.2.0 (#58952)``
|
|
37
|
+
|
|
38
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
39
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
40
|
+
|
|
41
|
+
1.10.0
|
|
42
|
+
......
|
|
43
|
+
|
|
44
|
+
.. note::
|
|
45
|
+
This release of provider is only available for Airflow 2.11+ as explained in the
|
|
46
|
+
Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>_.
|
|
47
|
+
|
|
48
|
+
Features
|
|
49
|
+
~~~~~~~~
|
|
50
|
+
|
|
51
|
+
* ``Adjust compat HookLevelLineage for new add_extra method (#58057)``
|
|
52
|
+
|
|
53
|
+
Misc
|
|
54
|
+
~~~~
|
|
55
|
+
|
|
56
|
+
* ``Move out some exceptions to TaskSDK (#54505)``
|
|
57
|
+
* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)``
|
|
58
|
+
|
|
59
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
60
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
61
|
+
* ``Updates to release process of providers (#58316)``
|
|
62
|
+
|
|
63
|
+
1.9.0
|
|
64
|
+
.....
|
|
65
|
+
|
|
66
|
+
Features
|
|
67
|
+
~~~~~~~~
|
|
68
|
+
|
|
69
|
+
* ``feat: backwards comp get async conn (#57143)``
|
|
70
|
+
|
|
71
|
+
Misc
|
|
72
|
+
~~~~
|
|
73
|
+
|
|
74
|
+
* ``Convert all airflow distributions to be compliant with ASF requirements (#58138)``
|
|
75
|
+
|
|
76
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
77
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
78
|
+
* ``Delete all unnecessary LICENSE Files (#58191)``
|
|
79
|
+
* ``Enable PT006 rule to 19 files in providers (cncf,common) (#57995)``
|
|
80
|
+
* ``Synchronize default versions in all split .pre-commit-config.yaml (#57851)``
|
|
81
|
+
* ``Fix mypy errors in 'common/compat' (#57759)``
|
|
82
|
+
* ``Extract prek hooks for Common.Compat provider (#57183)``
|
|
83
|
+
|
|
84
|
+
1.8.0
|
|
85
|
+
.....
|
|
86
|
+
|
|
87
|
+
Features
|
|
88
|
+
~~~~~~~~
|
|
89
|
+
|
|
90
|
+
* ``Simplify version-specific imports in the Standard provider (#56867)``
|
|
91
|
+
* ``Add SQLA's 'mapped_column' to common-compat (#56880)``
|
|
92
|
+
* ``Add comprehensive compatibility imports for Airflow 2 to 3 migration (#56790)``
|
|
93
|
+
|
|
94
|
+
Misc
|
|
95
|
+
~~~~
|
|
96
|
+
|
|
97
|
+
* ``Common.Compat: Extract reusable compat utilities and rename to sdk (#56884)``
|
|
98
|
+
* ``Simplify version-specific imports in the Google provider (#56793)``
|
|
99
|
+
* ``Migrate Apache providers & Elasticsearch to ''common.compat'' (#57016)``
|
|
100
|
+
|
|
101
|
+
Doc-only
|
|
102
|
+
~~~~~~~~
|
|
103
|
+
|
|
104
|
+
* ``Remove placeholder Release Date in changelog and index files (#56056)``
|
|
105
|
+
|
|
106
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
107
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
108
|
+
* ``Enable PT011 rule to prvoider tests (#56495)``
|
|
109
|
+
|
|
110
|
+
1.7.4
|
|
111
|
+
.....
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
Misc
|
|
115
|
+
~~~~
|
|
116
|
+
|
|
117
|
+
* ``Bump mypy to 1.18.1 (#55596)``
|
|
118
|
+
|
|
119
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
120
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
121
|
+
* ``Prepare release for Sep 2025 1st wave of providers (#55203)``
|
|
122
|
+
* ``Fix Airflow 2 reference in README/index of providers (#55240)``
|
|
123
|
+
* ``Switch pre-commit to prek (#54258)``
|
|
124
|
+
|
|
125
|
+
1.7.3
|
|
126
|
+
.....
|
|
127
|
+
|
|
128
|
+
Misc
|
|
129
|
+
~~~~
|
|
130
|
+
|
|
131
|
+
* ``fix unreachable mypy warnings (#53575)``
|
|
132
|
+
* ``Add Python 3.13 support for Airflow. (#46891)``
|
|
133
|
+
* ``Remove type ignore across codebase after mypy upgrade (#53243)``
|
|
134
|
+
* ``Remove upper-binding for "python-requires" (#52980)``
|
|
135
|
+
* ``Temporarily switch to use >=,< pattern instead of '~=' (#52967)``
|
|
136
|
+
|
|
137
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
138
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
139
|
+
|
|
140
|
+
1.7.2
|
|
141
|
+
.....
|
|
142
|
+
|
|
143
|
+
Misc
|
|
144
|
+
~~~~
|
|
145
|
+
|
|
146
|
+
* ``Replace models.BaseOperator to Task SDK one for Common Providers (#52443)``
|
|
147
|
+
* ``Drop support for Python 3.9 (#52072)``
|
|
148
|
+
|
|
149
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
150
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
151
|
+
|
|
152
|
+
1.7.1
|
|
153
|
+
.....
|
|
154
|
+
|
|
155
|
+
Misc
|
|
156
|
+
~~~~
|
|
157
|
+
|
|
158
|
+
* ``nit: Remove unreachable code (#51110)``
|
|
159
|
+
|
|
160
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
161
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
162
|
+
|
|
163
|
+
1.7.0
|
|
164
|
+
.....
|
|
165
|
+
|
|
166
|
+
.. note::
|
|
167
|
+
This release of provider is only available for Airflow 2.10+ as explained in the
|
|
168
|
+
Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>_.
|
|
169
|
+
|
|
170
|
+
Misc
|
|
171
|
+
~~~~
|
|
172
|
+
|
|
173
|
+
* ``Remove AIRFLOW_2_10_PLUS conditions (#49877)``
|
|
174
|
+
* ``Bump min Airflow version in providers to 2.10 (#49843)``
|
|
175
|
+
|
|
176
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
177
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
178
|
+
* ``Fix Breeze unit test (#50395)``
|
|
179
|
+
* ``Update description of provider.yaml dependencies (#50231)``
|
|
180
|
+
* ``Avoid committing history for providers (#49907)``
|
|
181
|
+
|
|
182
|
+
1.6.1
|
|
183
|
+
.....
|
|
184
|
+
|
|
185
|
+
Bug Fixes
|
|
186
|
+
~~~~~~~~~
|
|
187
|
+
|
|
188
|
+
* ``Move bases classes to 'airflow.sdk.bases' (#48487)``
|
|
189
|
+
|
|
190
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
191
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
192
|
+
* ``Add backwards compatibility provider tests for Airflow 3.0.0 (#49562)``
|
|
193
|
+
* ``Prepare docs for Apr 3rd wave of providers (#49338)``
|
|
194
|
+
* ``Prepare docs for Apr 2nd wave of providers (#49051)``
|
|
195
|
+
* ``Remove unnecessary entries in get_provider_info and update the schema (#48849)``
|
|
196
|
+
* ``Remove fab from preinstalled providers (#48457)``
|
|
197
|
+
* ``Fix common-io and common-compat provider description format (#48864)``
|
|
198
|
+
* ``Improve documentation building iteration (#48760)``
|
|
199
|
+
* ``Prepare docs for Apr 1st wave of providers (#48828)``
|
|
200
|
+
* ``Simplify tooling by switching completely to uv (#48223)``
|
|
201
|
+
* ``Prepare documentation to release common.compat 1.6.1 (#49624)``
|
|
202
|
+
|
|
203
|
+
1.6.0
|
|
204
|
+
.....
|
|
205
|
+
|
|
206
|
+
Features
|
|
207
|
+
~~~~~~~~
|
|
208
|
+
|
|
209
|
+
* ``feat: Add helper for any provider version check (#47909)``
|
|
210
|
+
* ``feat: Add helper for OpenLineage version check (#47897)``
|
|
211
|
+
|
|
212
|
+
Misc
|
|
213
|
+
~~~~
|
|
214
|
+
|
|
215
|
+
* ``Move BaseNotifier to Task SDK (#48008)``
|
|
216
|
+
* ``AIP-84 Add Auth for DAG Versioning (#47553)``
|
|
217
|
+
* ``AIP-84 Add Auth for backfill (#47482)``
|
|
218
|
+
* ``AIP 84 Add auth for asset alias (#47241)``
|
|
219
|
+
|
|
220
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
221
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
222
|
+
* ``Upgrade providers flit build requirements to 3.12.0 (#48362)``
|
|
223
|
+
* ``serialize http transports contained in composite transport (#47444)``
|
|
224
|
+
* ``Move airflow sources to airflow-core package (#47798)``
|
|
225
|
+
* ``Bump various providers in preparation for Airflow 3.0.0b4 (#48013)``
|
|
226
|
+
* ``fix: compat test test_provider_not_installed failing on main (#48012)``
|
|
227
|
+
* ``Remove links to x/twitter.com (#47801)``
|
|
228
|
+
|
|
229
|
+
1.5.1
|
|
230
|
+
.....
|
|
231
|
+
|
|
232
|
+
Misc
|
|
233
|
+
~~~~
|
|
234
|
+
|
|
235
|
+
* ``Relocate airflow.auth to airflow.api_fastapi.auth (#47492)``
|
|
236
|
+
* ``Upgrade flit to 3.11.0 (#46938)``
|
|
237
|
+
|
|
238
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
239
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
240
|
+
* ``Move tests_common package to devel-common project (#47281)``
|
|
241
|
+
* ``Improve documentation for updating provider dependencies (#47203)``
|
|
242
|
+
* ``Add legacy namespace packages to airflow.providers (#47064)``
|
|
243
|
+
* ``Remove extra whitespace in provider readme template (#46975)``
|
|
244
|
+
|
|
245
|
+
1.5.0
|
|
246
|
+
.....
|
|
247
|
+
|
|
248
|
+
.. note::
|
|
249
|
+
This version has no code changes. It's released due to yank of previous version due to packaging issues.
|
|
250
|
+
|
|
251
|
+
1.4.0
|
|
252
|
+
.....
|
|
253
|
+
|
|
254
|
+
Features
|
|
255
|
+
~~~~~~~~
|
|
256
|
+
|
|
257
|
+
* ``feat: automatically inject OL transport info into spark jobs (#45326)``
|
|
258
|
+
* ``feat: Add OpenLineage support for some SQL to GCS operators (#45242)``
|
|
259
|
+
|
|
260
|
+
Bug Fixes
|
|
261
|
+
~~~~~~~~~
|
|
262
|
+
|
|
263
|
+
* ``fix: OpenLineage sql parsing add try-except for sqlalchemy engine (#46366)``
|
|
264
|
+
|
|
265
|
+
Misc
|
|
266
|
+
~~~~
|
|
267
|
+
|
|
268
|
+
* ``Remove old lineage stuff (#45260)``
|
|
269
|
+
|
|
270
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
271
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
272
|
+
* ``Move provider_tests to unit folder in provider tests (#46800)``
|
|
273
|
+
* ``Removed the unused provider's distribution (#46608)``
|
|
274
|
+
* ``moving common-compat provider (#46063)``
|
|
275
|
+
|
|
276
|
+
1.3.0
|
|
277
|
+
.....
|
|
278
|
+
|
|
279
|
+
.. note::
|
|
280
|
+
This release of provider is only available for Airflow 2.9+ as explained in the
|
|
281
|
+
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
|
|
282
|
+
|
|
283
|
+
Bug Fixes
|
|
284
|
+
~~~~~~~~~
|
|
285
|
+
|
|
286
|
+
* ``fix(providers/common/compat): add back add_input_dataset and add_output_dataset to NoOpCollector (#44681)``
|
|
287
|
+
* ``Fix name of private function in compat provider (#44680)``
|
|
288
|
+
|
|
289
|
+
Misc
|
|
290
|
+
~~~~
|
|
291
|
+
|
|
292
|
+
* ``Bump minimum Airflow version in providers to Airflow 2.9.0 (#44956)``
|
|
293
|
+
* ``Remove references to AIRFLOW_V_2_9_PLUS (#44987)``
|
|
294
|
+
* ``Consistent way of checking Airflow version in providers (#44686)``
|
|
295
|
+
* ``Remove unnecessary compatibility code in S3 asset import (#44714)``
|
|
296
|
+
* ``Move Asset user facing components to task_sdk (#43773)``
|
|
297
|
+
* ``Make AssetAliasEvent a class context.py (#44709)``
|
|
298
|
+
* ``Move triggers to standard provider (#43608)``
|
|
299
|
+
|
|
300
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
301
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
302
|
+
* ``Bumping common compat to 1.3.0 (#44728)``
|
|
303
|
+
* ``Prevent __init__.py in providers from being modified (#44713)``
|
|
304
|
+
* ``Fix accidental db tests in Task SDK (#44690)``
|
|
305
|
+
* ``feat: automatically inject OL info into spark job in DataprocSubmitJobOperator (#44477)``
|
|
306
|
+
|
|
307
|
+
1.2.2
|
|
308
|
+
.....
|
|
309
|
+
|
|
310
|
+
Bug Fixes
|
|
311
|
+
~~~~~~~~~
|
|
312
|
+
|
|
313
|
+
* ``serialize asset/dataset timetable conditions in OpenLineage info also for Airflow 2 (#43434)``
|
|
314
|
+
* ``Move python operator to Standard provider (#42081)``
|
|
315
|
+
|
|
316
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
317
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
318
|
+
* ``Split providers out of the main "airflow/" tree into a UV workspace project (#42505)``
|
|
319
|
+
* ``Fix provider title in documentation (#43157)``
|
|
320
|
+
|
|
321
|
+
1.2.1
|
|
322
|
+
.....
|
|
323
|
+
|
|
324
|
+
Misc
|
|
325
|
+
~~~~
|
|
326
|
+
|
|
327
|
+
* ``Rename dataset related python variable names to asset (#41348)``
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
331
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
332
|
+
|
|
333
|
+
1.2.0
|
|
334
|
+
.....
|
|
335
|
+
|
|
336
|
+
.. note::
|
|
337
|
+
This release of provider is only available for Airflow 2.8+ as explained in the
|
|
338
|
+
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
|
|
339
|
+
|
|
340
|
+
Misc
|
|
341
|
+
~~~~
|
|
342
|
+
|
|
343
|
+
* ``Bump minimum Airflow version in providers to Airflow 2.8.0 (#41396)``
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
347
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
348
|
+
|
|
349
|
+
1.1.0
|
|
350
|
+
.....
|
|
351
|
+
|
|
352
|
+
Features
|
|
353
|
+
~~~~~~~~
|
|
354
|
+
|
|
355
|
+
* ``Add method to common.compat to not force hooks to try/except every 2.10 hook lineage call (#40812)``
|
|
356
|
+
|
|
357
|
+
Misc
|
|
358
|
+
~~~~
|
|
359
|
+
|
|
360
|
+
* ``Migrate OpenLineage provider to V2 facets. (#39530)``
|
|
361
|
+
* ``Add support for hook lineage for S3Hook (#40819)``
|
|
362
|
+
|
|
363
|
+
1.0.0
|
|
364
|
+
.....
|
|
365
|
+
|
|
366
|
+
* ``Initial version of the provider. (#40374)``
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
|
|
2
|
+
.. Licensed to the Apache Software Foundation (ASF) under one
|
|
3
|
+
or more contributor license agreements. See the NOTICE file
|
|
4
|
+
distributed with this work for additional information
|
|
5
|
+
regarding copyright ownership. The ASF licenses this file
|
|
6
|
+
to you under the Apache License, Version 2.0 (the
|
|
7
|
+
"License"); you may not use this file except in compliance
|
|
8
|
+
with the License. You may obtain a copy of the License at
|
|
9
|
+
|
|
10
|
+
.. http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
|
|
12
|
+
.. Unless required by applicable law or agreed to in writing,
|
|
13
|
+
software distributed under the License is distributed on an
|
|
14
|
+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
15
|
+
KIND, either express or implied. See the License for the
|
|
16
|
+
specific language governing permissions and limitations
|
|
17
|
+
under the License.
|
|
18
|
+
|
|
19
|
+
.. NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE OVERWRITTEN!
|
|
20
|
+
|
|
21
|
+
.. IF YOU WANT TO MODIFY THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
|
|
22
|
+
`PROVIDER_COMMITS_TEMPLATE.rst.jinja2` IN the `dev/breeze/src/airflow_breeze/templates` DIRECTORY
|
|
23
|
+
|
|
24
|
+
.. THE REMAINDER OF THE FILE IS AUTOMATICALLY GENERATED. IT WILL BE OVERWRITTEN!
|
|
25
|
+
|
|
26
|
+
Package apache-airflow-providers-common-compat
|
|
27
|
+
------------------------------------------------------
|
|
28
|
+
|
|
29
|
+
Common Compatibility Provider - providing compatibility code for previous Airflow versions
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
This is detailed commit list of changes for versions provider package: ``common.compat``.
|
|
33
|
+
For high-level changelog, see :doc:`package information including changelog <index>`.
|
|
34
|
+
|
|
35
|
+
.. airflow-providers-commits::
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Disable Flake8 because of all the sphinx imports
|
|
2
|
+
#
|
|
3
|
+
# Licensed to the Apache Software Foundation (ASF) under one
|
|
4
|
+
# or more contributor license agreements. See the NOTICE file
|
|
5
|
+
# distributed with this work for additional information
|
|
6
|
+
# regarding copyright ownership. The ASF licenses this file
|
|
7
|
+
# to you under the Apache License, Version 2.0 (the
|
|
8
|
+
# "License"); you may not use this file except in compliance
|
|
9
|
+
# with the License. You may obtain a copy of the License at
|
|
10
|
+
#
|
|
11
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
+
#
|
|
13
|
+
# Unless required by applicable law or agreed to in writing,
|
|
14
|
+
# software distributed under the License is distributed on an
|
|
15
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
16
|
+
# KIND, either express or implied. See the License for the
|
|
17
|
+
# specific language governing permissions and limitations
|
|
18
|
+
# under the License.
|
|
19
|
+
"""Configuration of Providers docs building."""
|
|
20
|
+
|
|
21
|
+
from __future__ import annotations
|
|
22
|
+
|
|
23
|
+
import os
|
|
24
|
+
|
|
25
|
+
os.environ["AIRFLOW_PACKAGE_NAME"] = "apache-airflow-providers-common-compat"
|
|
26
|
+
|
|
27
|
+
from docs.provider_conf import * # noqa: F403
|