apache-airflow-providers-common-compat 1.6.0rc1__tar.gz → 1.6.1rc1__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.
Potentially problematic release.
This version of apache-airflow-providers-common-compat might be problematic. Click here for more details.
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.6.1rc1}/PKG-INFO +7 -7
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.6.1rc1}/README.rst +4 -4
- apache_airflow_providers_common_compat-1.6.1rc1/docs/.latest-doc-only-change.txt +1 -0
- apache_airflow_providers_common_compat-1.6.1rc1/docs/changelog.rst +214 -0
- apache_airflow_providers_common_compat-1.6.1rc1/docs/commits.rst +204 -0
- apache_airflow_providers_common_compat-1.6.1rc1/docs/conf.py +27 -0
- apache_airflow_providers_common_compat-1.6.1rc1/docs/index.rst +118 -0
- apache_airflow_providers_common_compat-1.6.1rc1/docs/installing-providers-from-sources.rst +18 -0
- apache_airflow_providers_common_compat-1.6.1rc1/docs/security.rst +18 -0
- apache_airflow_providers_common_compat-1.6.1rc1/provider.yaml +42 -0
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.6.1rc1}/pyproject.toml +19 -4
- apache_airflow_providers_common_compat-1.6.1rc1/src/airflow/__init__.py +17 -0
- apache_airflow_providers_common_compat-1.6.1rc1/src/airflow/providers/__init__.py +17 -0
- apache_airflow_providers_common_compat-1.6.1rc1/src/airflow/providers/common/__init__.py +17 -0
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.6.1rc1}/src/airflow/providers/common/compat/__init__.py +1 -1
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.6.1rc1}/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.6.1rc1}/src/airflow/providers/common/compat/notifier/__init__.py +2 -2
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.6.1rc1}/src/airflow/providers/common/compat/openlineage/utils/spark.py +20 -20
- apache_airflow_providers_common_compat-1.6.1rc1/tests/conftest.py +19 -0
- apache_airflow_providers_common_compat-1.6.1rc1/tests/unit/__init__.py +17 -0
- apache_airflow_providers_common_compat-1.6.1rc1/tests/unit/common/__init__.py +17 -0
- apache_airflow_providers_common_compat-1.6.1rc1/tests/unit/common/compat/__init__.py +16 -0
- apache_airflow_providers_common_compat-1.6.1rc1/tests/unit/common/compat/lineage/__init__.py +16 -0
- apache_airflow_providers_common_compat-1.6.1rc1/tests/unit/common/compat/lineage/test_hook.py +52 -0
- apache_airflow_providers_common_compat-1.6.1rc1/tests/unit/common/compat/openlineage/__init__.py +16 -0
- apache_airflow_providers_common_compat-1.6.1rc1/tests/unit/common/compat/openlineage/test_check.py +253 -0
- apache_airflow_providers_common_compat-1.6.1rc1/tests/unit/common/compat/openlineage/test_facet.py +22 -0
- apache_airflow_providers_common_compat-1.6.1rc1/tests/unit/common/compat/openlineage/utils/__init__.py +16 -0
- apache_airflow_providers_common_compat-1.6.1rc1/tests/unit/common/compat/openlineage/utils/test_spark.py +25 -0
- apache_airflow_providers_common_compat-1.6.1rc1/tests/unit/common/compat/openlineage/utils/test_sql.py +23 -0
- apache_airflow_providers_common_compat-1.6.1rc1/tests/unit/common/compat/openlineage/utils/test_utils.py +23 -0
- apache_airflow_providers_common_compat-1.6.1rc1/tests/unit/common/compat/security/__init__.py +16 -0
- apache_airflow_providers_common_compat-1.6.1rc1/tests/unit/common/compat/security/test_permissions.py +23 -0
- apache_airflow_providers_common_compat-1.6.1rc1/tests/unit/common/compat/test_check.py +103 -0
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.6.1rc1}/src/airflow/providers/common/compat/LICENSE +0 -0
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.6.1rc1}/src/airflow/providers/common/compat/assets/__init__.py +0 -0
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.6.1rc1}/src/airflow/providers/common/compat/check.py +0 -0
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.6.1rc1}/src/airflow/providers/common/compat/lineage/__init__.py +0 -0
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.6.1rc1}/src/airflow/providers/common/compat/lineage/entities.py +0 -0
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.6.1rc1}/src/airflow/providers/common/compat/lineage/hook.py +0 -0
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.6.1rc1}/src/airflow/providers/common/compat/openlineage/__init__.py +0 -0
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.6.1rc1}/src/airflow/providers/common/compat/openlineage/check.py +0 -0
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.6.1rc1}/src/airflow/providers/common/compat/openlineage/facet.py +0 -0
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.6.1rc1}/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.6.1rc1}/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.6.1rc1}/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.6.1rc1}/src/airflow/providers/common/compat/security/__init__.py +0 -0
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.6.1rc1}/src/airflow/providers/common/compat/security/permissions.py +0 -0
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.6.1rc1}/src/airflow/providers/common/compat/standard/__init__.py +0 -0
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.6.1rc1}/src/airflow/providers/common/compat/standard/operators.py +0 -0
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.6.1rc1}/src/airflow/providers/common/compat/standard/triggers.py +0 -0
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.6.1rc1}/src/airflow/providers/common/compat/standard/utils.py +0 -0
- {apache_airflow_providers_common_compat-1.6.0rc1 → apache_airflow_providers_common_compat-1.6.1rc1}/src/airflow/providers/common/compat/version_compat.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: apache-airflow-providers-common-compat
|
|
3
|
-
Version: 1.6.
|
|
3
|
+
Version: 1.6.1rc1
|
|
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>
|
|
@@ -24,8 +24,8 @@ Requires-Dist: apache-airflow>=2.9.0rc0
|
|
|
24
24
|
Requires-Dist: apache-airflow-providers-openlineage ; extra == "openlineage"
|
|
25
25
|
Requires-Dist: apache-airflow-providers-standard ; extra == "standard"
|
|
26
26
|
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.6.
|
|
28
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.6.
|
|
27
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.6.1/changelog.html
|
|
28
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.6.1
|
|
29
29
|
Project-URL: Mastodon, https://fosstodon.org/@airflow
|
|
30
30
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
|
31
31
|
Project-URL: Source Code, https://github.com/apache/airflow
|
|
@@ -58,10 +58,10 @@ Provides-Extra: standard
|
|
|
58
58
|
|
|
59
59
|
Package ``apache-airflow-providers-common-compat``
|
|
60
60
|
|
|
61
|
-
Release: ``1.6.
|
|
61
|
+
Release: ``1.6.1``
|
|
62
62
|
|
|
63
63
|
|
|
64
|
-
|
|
64
|
+
Common Compatibility Provider - providing compatibility code for previous Airflow versions
|
|
65
65
|
|
|
66
66
|
|
|
67
67
|
Provider package
|
|
@@ -71,7 +71,7 @@ This is a provider package for ``common.compat`` provider. All classes for this
|
|
|
71
71
|
are in ``airflow.providers.common.compat`` python package.
|
|
72
72
|
|
|
73
73
|
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.6.
|
|
74
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.6.1/>`_.
|
|
75
75
|
|
|
76
76
|
Installation
|
|
77
77
|
------------
|
|
@@ -112,5 +112,5 @@ Dependent package
|
|
|
112
112
|
============================================================================================================== ===============
|
|
113
113
|
|
|
114
114
|
The changelog for the provider package can be found in the
|
|
115
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.6.
|
|
115
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.6.1/changelog.html>`_.
|
|
116
116
|
|
|
@@ -23,10 +23,10 @@
|
|
|
23
23
|
|
|
24
24
|
Package ``apache-airflow-providers-common-compat``
|
|
25
25
|
|
|
26
|
-
Release: ``1.6.
|
|
26
|
+
Release: ``1.6.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,7 +36,7 @@ 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.6.
|
|
39
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.6.1/>`_.
|
|
40
40
|
|
|
41
41
|
Installation
|
|
42
42
|
------------
|
|
@@ -77,4 +77,4 @@ Dependent package
|
|
|
77
77
|
============================================================================================================== ===============
|
|
78
78
|
|
|
79
79
|
The changelog for the provider package can be found in the
|
|
80
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.6.
|
|
80
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.6.1/changelog.html>`_.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
4a8567b20bdd6555cbdc936d6674bf4fa390b0d5
|
|
@@ -0,0 +1,214 @@
|
|
|
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.6.1
|
|
29
|
+
.....
|
|
30
|
+
|
|
31
|
+
Bug Fixes
|
|
32
|
+
~~~~~~~~~
|
|
33
|
+
|
|
34
|
+
* ``Move bases classes to 'airflow.sdk.bases' (#48487)``
|
|
35
|
+
|
|
36
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
37
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
38
|
+
* ``Add backwards compatibility provider tests for Airflow 3.0.0 (#49562)``
|
|
39
|
+
* ``Prepare docs for Apr 3rd wave of providers (#49338)``
|
|
40
|
+
* ``Prepare docs for Apr 2nd wave of providers (#49051)``
|
|
41
|
+
* ``Remove unnecessary entries in get_provider_info and update the schema (#48849)``
|
|
42
|
+
* ``Remove fab from preinstalled providers (#48457)``
|
|
43
|
+
* ``Fix common-io and common-compat provider description format (#48864)``
|
|
44
|
+
* ``Improve documentation building iteration (#48760)``
|
|
45
|
+
* ``Prepare docs for Apr 1st wave of providers (#48828)``
|
|
46
|
+
* ``Simplify tooling by switching completely to uv (#48223)``
|
|
47
|
+
* ``Prepare documentation to release common.compat 1.6.1 (#49624)``
|
|
48
|
+
|
|
49
|
+
1.6.0
|
|
50
|
+
.....
|
|
51
|
+
|
|
52
|
+
Features
|
|
53
|
+
~~~~~~~~
|
|
54
|
+
|
|
55
|
+
* ``feat: Add helper for any provider version check (#47909)``
|
|
56
|
+
* ``feat: Add helper for OpenLineage version check (#47897)``
|
|
57
|
+
|
|
58
|
+
Misc
|
|
59
|
+
~~~~
|
|
60
|
+
|
|
61
|
+
* ``Move BaseNotifier to Task SDK (#48008)``
|
|
62
|
+
* ``AIP-84 Add Auth for DAG Versioning (#47553)``
|
|
63
|
+
* ``AIP-84 Add Auth for backfill (#47482)``
|
|
64
|
+
* ``AIP 84 Add auth for asset alias (#47241)``
|
|
65
|
+
|
|
66
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
67
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
68
|
+
* ``Upgrade providers flit build requirements to 3.12.0 (#48362)``
|
|
69
|
+
* ``serialize http transports contained in composite transport (#47444)``
|
|
70
|
+
* ``Move airflow sources to airflow-core package (#47798)``
|
|
71
|
+
* ``Bump various providers in preparation for Airflow 3.0.0b4 (#48013)``
|
|
72
|
+
* ``fix: compat test test_provider_not_installed failing on main (#48012)``
|
|
73
|
+
* ``Remove links to x/twitter.com (#47801)``
|
|
74
|
+
|
|
75
|
+
1.5.1
|
|
76
|
+
.....
|
|
77
|
+
|
|
78
|
+
Misc
|
|
79
|
+
~~~~
|
|
80
|
+
|
|
81
|
+
* ``Relocate airflow.auth to airflow.api_fastapi.auth (#47492)``
|
|
82
|
+
* ``Upgrade flit to 3.11.0 (#46938)``
|
|
83
|
+
|
|
84
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
85
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
86
|
+
* ``Move tests_common package to devel-common project (#47281)``
|
|
87
|
+
* ``Improve documentation for updating provider dependencies (#47203)``
|
|
88
|
+
* ``Add legacy namespace packages to airflow.providers (#47064)``
|
|
89
|
+
* ``Remove extra whitespace in provider readme template (#46975)``
|
|
90
|
+
|
|
91
|
+
1.5.0
|
|
92
|
+
.....
|
|
93
|
+
|
|
94
|
+
.. note::
|
|
95
|
+
This version has no code changes. It's released due to yank of previous version due to packaging issues.
|
|
96
|
+
|
|
97
|
+
1.4.0
|
|
98
|
+
.....
|
|
99
|
+
|
|
100
|
+
Features
|
|
101
|
+
~~~~~~~~
|
|
102
|
+
|
|
103
|
+
* ``feat: automatically inject OL transport info into spark jobs (#45326)``
|
|
104
|
+
* ``feat: Add OpenLineage support for some SQL to GCS operators (#45242)``
|
|
105
|
+
|
|
106
|
+
Bug Fixes
|
|
107
|
+
~~~~~~~~~
|
|
108
|
+
|
|
109
|
+
* ``fix: OpenLineage sql parsing add try-except for sqlalchemy engine (#46366)``
|
|
110
|
+
|
|
111
|
+
Misc
|
|
112
|
+
~~~~
|
|
113
|
+
|
|
114
|
+
* ``Remove old lineage stuff (#45260)``
|
|
115
|
+
|
|
116
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
117
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
118
|
+
* ``Move provider_tests to unit folder in provider tests (#46800)``
|
|
119
|
+
* ``Removed the unused provider's distribution (#46608)``
|
|
120
|
+
* ``moving common-compat provider (#46063)``
|
|
121
|
+
|
|
122
|
+
1.3.0
|
|
123
|
+
.....
|
|
124
|
+
|
|
125
|
+
.. note::
|
|
126
|
+
This release of provider is only available for Airflow 2.9+ as explained in the
|
|
127
|
+
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
|
|
128
|
+
|
|
129
|
+
Bug Fixes
|
|
130
|
+
~~~~~~~~~
|
|
131
|
+
|
|
132
|
+
* ``fix(providers/common/compat): add back add_input_dataset and add_output_dataset to NoOpCollector (#44681)``
|
|
133
|
+
* ``Fix name of private function in compat provider (#44680)``
|
|
134
|
+
|
|
135
|
+
Misc
|
|
136
|
+
~~~~
|
|
137
|
+
|
|
138
|
+
* ``Bump minimum Airflow version in providers to Airflow 2.9.0 (#44956)``
|
|
139
|
+
* ``Remove references to AIRFLOW_V_2_9_PLUS (#44987)``
|
|
140
|
+
* ``Consistent way of checking Airflow version in providers (#44686)``
|
|
141
|
+
* ``Remove unnecessary compatibility code in S3 asset import (#44714)``
|
|
142
|
+
* ``Move Asset user facing components to task_sdk (#43773)``
|
|
143
|
+
* ``Make AssetAliasEvent a class context.py (#44709)``
|
|
144
|
+
* ``Move triggers to standard provider (#43608)``
|
|
145
|
+
|
|
146
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
147
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
148
|
+
* ``Bumping common compat to 1.3.0 (#44728)``
|
|
149
|
+
* ``Prevent __init__.py in providers from being modified (#44713)``
|
|
150
|
+
* ``Fix accidental db tests in Task SDK (#44690)``
|
|
151
|
+
|
|
152
|
+
.. Review and move the new changes to one of the sections above:
|
|
153
|
+
* ``feat: automatically inject OL info into spark job in DataprocSubmitJobOperator (#44477)``
|
|
154
|
+
|
|
155
|
+
1.2.2
|
|
156
|
+
.....
|
|
157
|
+
|
|
158
|
+
Bug Fixes
|
|
159
|
+
~~~~~~~~~
|
|
160
|
+
|
|
161
|
+
* ``serialize asset/dataset timetable conditions in OpenLineage info also for Airflow 2 (#43434)``
|
|
162
|
+
* ``Move python operator to Standard provider (#42081)``
|
|
163
|
+
|
|
164
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
165
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
166
|
+
* ``Split providers out of the main "airflow/" tree into a UV workspace project (#42505)``
|
|
167
|
+
* ``Fix provider title in documentation (#43157)``
|
|
168
|
+
|
|
169
|
+
1.2.1
|
|
170
|
+
.....
|
|
171
|
+
|
|
172
|
+
Misc
|
|
173
|
+
~~~~
|
|
174
|
+
|
|
175
|
+
* ``Rename dataset related python variable names to asset (#41348)``
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
179
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
180
|
+
|
|
181
|
+
1.2.0
|
|
182
|
+
.....
|
|
183
|
+
|
|
184
|
+
.. note::
|
|
185
|
+
This release of provider is only available for Airflow 2.8+ as explained in the
|
|
186
|
+
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
|
|
187
|
+
|
|
188
|
+
Misc
|
|
189
|
+
~~~~
|
|
190
|
+
|
|
191
|
+
* ``Bump minimum Airflow version in providers to Airflow 2.8.0 (#41396)``
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
195
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
196
|
+
|
|
197
|
+
1.1.0
|
|
198
|
+
.....
|
|
199
|
+
|
|
200
|
+
Features
|
|
201
|
+
~~~~~~~~
|
|
202
|
+
|
|
203
|
+
* ``Add method to common.compat to not force hooks to try/except every 2.10 hook lineage call (#40812)``
|
|
204
|
+
|
|
205
|
+
Misc
|
|
206
|
+
~~~~
|
|
207
|
+
|
|
208
|
+
* ``Migrate OpenLineage provider to V2 facets. (#39530)``
|
|
209
|
+
* ``Add support for hook lineage for S3Hook (#40819)``
|
|
210
|
+
|
|
211
|
+
1.0.0
|
|
212
|
+
.....
|
|
213
|
+
|
|
214
|
+
* ``Initial version of the provider. (#40374)``
|
|
@@ -0,0 +1,204 @@
|
|
|
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
|
+
|
|
36
|
+
|
|
37
|
+
1.6.1
|
|
38
|
+
.....
|
|
39
|
+
|
|
40
|
+
Latest change: 2025-04-23
|
|
41
|
+
|
|
42
|
+
================================================================================================== =========== ==================================================================================
|
|
43
|
+
Commit Committed Subject
|
|
44
|
+
================================================================================================== =========== ==================================================================================
|
|
45
|
+
`405fbf3418 <https://github.com/apache/airflow/commit/405fbf341806e96f84dfd8ad5e2bf4df37140262>`__ 2025-04-23 ``Prepare documentation to release common.compat 1.6.1 (#49624)``
|
|
46
|
+
`7bd0f8324c <https://github.com/apache/airflow/commit/7bd0f8324cfd8a9f5eb60af659b87c52cea3dad8>`__ 2025-04-22 ``Add backwards compatibility provider tests for Airflow 3.0.0 (#49562)``
|
|
47
|
+
`ca3e4e75c6 <https://github.com/apache/airflow/commit/ca3e4e75c634afdceb23a86b7e0b0ff74614a7f1>`__ 2025-04-16 ``Prepare docs for Apr 3rd wave of providers (#49338)``
|
|
48
|
+
`4a8567b20b <https://github.com/apache/airflow/commit/4a8567b20bdd6555cbdc936d6674bf4fa390b0d5>`__ 2025-04-10 ``Prepare docs for Apr 2nd wave of providers (#49051)``
|
|
49
|
+
`7b2ec33c7a <https://github.com/apache/airflow/commit/7b2ec33c7ad4998d9c9735b79593fcdcd3b9dd1f>`__ 2025-04-08 ``Remove unnecessary entries in get_provider_info and update the schema (#48849)``
|
|
50
|
+
`139673d3ce <https://github.com/apache/airflow/commit/139673d3ce5552c2cf8bcb2d202e97342c4b237c>`__ 2025-04-07 ``Remove fab from preinstalled providers (#48457)``
|
|
51
|
+
`3461b3a259 <https://github.com/apache/airflow/commit/3461b3a259663efd6f392fba203801aee4d90a09>`__ 2025-04-07 ``Fix common-io and common-compat provider description format (#48864)``
|
|
52
|
+
`67858fd7e7 <https://github.com/apache/airflow/commit/67858fd7e7ac82788854844c1e6ef5a35f1d0d23>`__ 2025-04-06 ``Improve documentation building iteration (#48760)``
|
|
53
|
+
`adbb062b50 <https://github.com/apache/airflow/commit/adbb062b50e2e128fe475a76b7ce10ec93c39ee2>`__ 2025-04-06 ``Prepare docs for Apr 1st wave of providers (#48828)``
|
|
54
|
+
`d4473555c0 <https://github.com/apache/airflow/commit/d4473555c0e7022e073489b7163d49102881a1a6>`__ 2025-04-02 ``Simplify tooling by switching completely to uv (#48223)``
|
|
55
|
+
`fde5051eac <https://github.com/apache/airflow/commit/fde5051eaca10b81364cca43307c30f49bc7e529>`__ 2025-03-28 ``Move bases classes to 'airflow.sdk.bases' (#48487)``
|
|
56
|
+
================================================================================================== =========== ==================================================================================
|
|
57
|
+
|
|
58
|
+
1.6.0
|
|
59
|
+
.....
|
|
60
|
+
|
|
61
|
+
Latest change: 2025-03-26
|
|
62
|
+
|
|
63
|
+
================================================================================================== =========== =========================================================================
|
|
64
|
+
Commit Committed Subject
|
|
65
|
+
================================================================================================== =========== =========================================================================
|
|
66
|
+
`c762e17820 <https://github.com/apache/airflow/commit/c762e17820cae6b162caa3eec5123760e07d56cc>`__ 2025-03-26 ``Prepare docs for Mar 2nd wave of providers (#48383)``
|
|
67
|
+
`6b32358673 <https://github.com/apache/airflow/commit/6b32358673af89f598009dfb3f280c957a5f2da4>`__ 2025-03-26 ``Move BaseNotifier to Task SDK (#48008)``
|
|
68
|
+
`6adb2dbae4 <https://github.com/apache/airflow/commit/6adb2dbae47341eb61dbc62dbc56176d9aa83fd9>`__ 2025-03-25 ``Upgrade providers flit build requirements to 3.12.0 (#48362)``
|
|
69
|
+
`b96547dedc <https://github.com/apache/airflow/commit/b96547dedc497bc3001fb3a3f30682b046dc7735>`__ 2025-03-22 ``serialize http transports contained in composite transport (#47444)``
|
|
70
|
+
`243fe86d4b <https://github.com/apache/airflow/commit/243fe86d4b3e59bb12977b3e36ca3f2ed27ca0f8>`__ 2025-03-21 ``Move airflow sources to airflow-core package (#47798)``
|
|
71
|
+
`1a5eb7a29c <https://github.com/apache/airflow/commit/1a5eb7a29c777009f2196678a67af0cfe352faab>`__ 2025-03-20 ``Bump various providers in preparation for Airflow 3.0.0b4 (#48013)``
|
|
72
|
+
`84c5579fc9 <https://github.com/apache/airflow/commit/84c5579fc9edf4b5295581af428e98ae2c63d2b4>`__ 2025-03-20 ``fix: compat test test_provider_not_installed failing on main (#48012)``
|
|
73
|
+
`4174bc7d39 <https://github.com/apache/airflow/commit/4174bc7d39fb336c329d887878ac327d4e283f6d>`__ 2025-03-20 ``feat: Add helper for any provider version check (#47909)``
|
|
74
|
+
`a993db24f7 <https://github.com/apache/airflow/commit/a993db24f790784a0b43b8a33c28565ed0412d82>`__ 2025-03-18 ``feat: Add helper for OpenLineage version check (#47897)``
|
|
75
|
+
`935d2831fe <https://github.com/apache/airflow/commit/935d2831fe8fd509b618a738bf00e0c34e186e11>`__ 2025-03-15 ``Remove links to x/twitter.com (#47801)``
|
|
76
|
+
`d5ea56ae4b <https://github.com/apache/airflow/commit/d5ea56ae4be04ebccb12d13fa2cb2be994cf51ac>`__ 2025-03-14 ``AIP-84 Add Auth for DAG Versioning (#47553)``
|
|
77
|
+
`46759a355d <https://github.com/apache/airflow/commit/46759a355d603167535591745c70037d691c866a>`__ 2025-03-13 ``AIP-84 Add Auth for backfill (#47482)``
|
|
78
|
+
`1e2660b3fc <https://github.com/apache/airflow/commit/1e2660b3fcab69ae52577e59d1c1bebe95a3f548>`__ 2025-03-10 ``AIP 84 - Add auth for asset alias (#47241)``
|
|
79
|
+
================================================================================================== =========== =========================================================================
|
|
80
|
+
|
|
81
|
+
1.5.1
|
|
82
|
+
.....
|
|
83
|
+
|
|
84
|
+
Latest change: 2025-03-09
|
|
85
|
+
|
|
86
|
+
================================================================================================== =========== =====================================================================
|
|
87
|
+
Commit Committed Subject
|
|
88
|
+
================================================================================================== =========== =====================================================================
|
|
89
|
+
`492ecfe5c0 <https://github.com/apache/airflow/commit/492ecfe5c03102bfb710108038ebd5fc50cb55b5>`__ 2025-03-09 ``Prepare docs for Mar 1st wave of providers (#47545)``
|
|
90
|
+
`8cc9f1fca9 <https://github.com/apache/airflow/commit/8cc9f1fca9343768e9aa7bb4c802e7d2fc109719>`__ 2025-03-07 ``Relocate airflow.auth to airflow.api_fastapi.auth (#47492)``
|
|
91
|
+
`e4002c3305 <https://github.com/apache/airflow/commit/e4002c3305a757f5926f96c996e701e8f998a042>`__ 2025-03-05 ``Move tests_common package to devel-common project (#47281)``
|
|
92
|
+
`1addb55154 <https://github.com/apache/airflow/commit/1addb55154fbef31bfa021537cfbd4395696381c>`__ 2025-02-28 ``Improve documentation for updating provider dependencies (#47203)``
|
|
93
|
+
`c6c4f95ed9 <https://github.com/apache/airflow/commit/c6c4f95ed9e3220133815b9126c135e805637022>`__ 2025-02-25 ``Add legacy namespace packages to airflow.providers (#47064)``
|
|
94
|
+
`dbf8bb4092 <https://github.com/apache/airflow/commit/dbf8bb409223687c7d2ad10649a92d02c24bb3b4>`__ 2025-02-24 ``Remove extra whitespace in provider readme template (#46975)``
|
|
95
|
+
`b28c336e8b <https://github.com/apache/airflow/commit/b28c336e8b7aa1d69c0f9520b182b1b661377337>`__ 2025-02-21 ``Upgrade flit to 3.11.0 (#46938)``
|
|
96
|
+
================================================================================================== =========== =====================================================================
|
|
97
|
+
|
|
98
|
+
1.5.0
|
|
99
|
+
.....
|
|
100
|
+
|
|
101
|
+
Latest change: 2025-02-21
|
|
102
|
+
|
|
103
|
+
================================================================================================== =========== =========================================================================
|
|
104
|
+
Commit Committed Subject
|
|
105
|
+
================================================================================================== =========== =========================================================================
|
|
106
|
+
`0653ffe78e <https://github.com/apache/airflow/commit/0653ffe78e4a0acaf70801a5ceef8dbabdac8b15>`__ 2025-02-21 ``Prepare docs for Feb 1st wave of providers (fixed) (#46962)``
|
|
107
|
+
`5d87bddf0a <https://github.com/apache/airflow/commit/5d87bddf0aa5f485f3684c909fb95f461e5a2ab6>`__ 2025-02-21 ``Prepare docs for Feb 1st wave of providers (#46893)``
|
|
108
|
+
`4d5846f58f <https://github.com/apache/airflow/commit/4d5846f58fe0de9b43358c0be75dd72e968dacc4>`__ 2025-02-16 ``Move provider_tests to unit folder in provider tests (#46800)``
|
|
109
|
+
`e027457a24 <https://github.com/apache/airflow/commit/e027457a24d0c6235bfed9c2a8399f75342e82f1>`__ 2025-02-15 ``Removed the unused provider's distribution (#46608)``
|
|
110
|
+
`3004da95e9 <https://github.com/apache/airflow/commit/3004da95e97ba79eba2ab6b743a75e3f3f8dc170>`__ 2025-02-03 ``fix: OL sql parsing add try-except for sqlalchemy engine (#46366)``
|
|
111
|
+
`0bcebe341d <https://github.com/apache/airflow/commit/0bcebe341d74bbdea1682962f6f90f9484e908d1>`__ 2025-01-27 ``moving common-compat provider (#46063)``
|
|
112
|
+
`a3294cc627 <https://github.com/apache/airflow/commit/a3294cc6272b132b9ecc2873a570fe5d1d480e03>`__ 2025-01-25 ``Remove old lineage stuff (#45260)``
|
|
113
|
+
`ac2de474fb <https://github.com/apache/airflow/commit/ac2de474fbf9980242599116cff4d1064cf81531>`__ 2025-01-09 ``feat: automatically inject OL transport info into spark jobs (#45326)``
|
|
114
|
+
`ab730b1b5f <https://github.com/apache/airflow/commit/ab730b1b5fa3d3a5ad383f1f6dde9f74cefcf121>`__ 2025-01-08 ``feat: Add OpenLineage support for some SQL to GCS operators (#45242)``
|
|
115
|
+
================================================================================================== =========== =========================================================================
|
|
116
|
+
|
|
117
|
+
1.3.0
|
|
118
|
+
.....
|
|
119
|
+
|
|
120
|
+
Latest change: 2024-12-20
|
|
121
|
+
|
|
122
|
+
================================================================================================== =========== =============================================================================================================
|
|
123
|
+
Commit Committed Subject
|
|
124
|
+
================================================================================================== =========== =============================================================================================================
|
|
125
|
+
`2723508345 <https://github.com/apache/airflow/commit/2723508345d5cf074aeb673955ce72996785f2bc>`__ 2024-12-20 ``Prepare docs for Nov 1st wave of providers Dec 2024 (#45042)``
|
|
126
|
+
`04ccef9b3a <https://github.com/apache/airflow/commit/04ccef9b3a4073eaf313db3905803e7ef3f910fb>`__ 2024-12-19 ``feat: automatically inject OL info into spark job in DataprocSubmitJobOperator (#44477)``
|
|
127
|
+
`2a33da0246 <https://github.com/apache/airflow/commit/2a33da0246c811a98d5cdaf0af2bcca0dee8556a>`__ 2024-12-18 ``Remove references to AIRFLOW_V_2_9_PLUS (#44987)``
|
|
128
|
+
`4b38bed76c <https://github.com/apache/airflow/commit/4b38bed76c1ea5fe84a6bc678ce87e20d563adc0>`__ 2024-12-16 ``Bump min version of Providers to 2.9 (#44956)``
|
|
129
|
+
`490b5e816b <https://github.com/apache/airflow/commit/490b5e816b804f338b0eb97f240ae874d4e15810>`__ 2024-12-10 ``Consistent way of checking Airflow version in providers (#44686)``
|
|
130
|
+
`3d421f78d7 <https://github.com/apache/airflow/commit/3d421f78d7046474c5684580a744f87160378935>`__ 2024-12-06 ``Bumping common compat to 1.3.0 (#44728)``
|
|
131
|
+
`bcc8a4abd1 <https://github.com/apache/airflow/commit/bcc8a4abd148455042d4d56408ff0565cc901bf3>`__ 2024-12-06 ``Prevent __init__.py in providers from being modified (#44713)``
|
|
132
|
+
`450132bc85 <https://github.com/apache/airflow/commit/450132bc859ad4ec1686d4e521efc1efe79a47b8>`__ 2024-12-06 ``Remove unnecessary compatibility code in S3 asset import (#44714)``
|
|
133
|
+
`5f4a30117d <https://github.com/apache/airflow/commit/5f4a30117d82e5981a36cec99a0bbda2bddb54d9>`__ 2024-12-06 ``Make AssetAliasEvent a class context.py (#44709)``
|
|
134
|
+
`d9001cd14a <https://github.com/apache/airflow/commit/d9001cd14aaf8c35e22de3290bbe01ea3513979d>`__ 2024-12-06 ``Fix accidental db tests in Task SDK (#44690)``
|
|
135
|
+
`b9ab0b5ffc <https://github.com/apache/airflow/commit/b9ab0b5ffcbf551fcad3f6e7e0382a78db23a23a>`__ 2024-12-05 ``fix(providers/common/compat): add back add_input_dataset and add_output_dataset to NoOpCollector (#44681)``
|
|
136
|
+
`cac2d1dfda <https://github.com/apache/airflow/commit/cac2d1dfdab471d0dbd152951ce6dc6b3ca5c63b>`__ 2024-12-05 ``Fix name of private function in compat provider (#44680)``
|
|
137
|
+
`4404e64247 <https://github.com/apache/airflow/commit/4404e64247daf37b350bc7cd835d397256507ad1>`__ 2024-11-25 ``Move triggers to standard provider (#43608)``
|
|
138
|
+
`a0f3353c47 <https://github.com/apache/airflow/commit/a0f3353c471e4d9a2cd4b23f0c358d0ae908580a>`__ 2024-11-20 ``Move Asset user facing components to task_sdk (#43773)``
|
|
139
|
+
================================================================================================== =========== =============================================================================================================
|
|
140
|
+
|
|
141
|
+
1.2.2
|
|
142
|
+
.....
|
|
143
|
+
|
|
144
|
+
Latest change: 2024-11-14
|
|
145
|
+
|
|
146
|
+
================================================================================================== =========== ================================================================================================
|
|
147
|
+
Commit Committed Subject
|
|
148
|
+
================================================================================================== =========== ================================================================================================
|
|
149
|
+
`a53d9f6d25 <https://github.com/apache/airflow/commit/a53d9f6d257f193ea5026ba4cd007d5ddeab968f>`__ 2024-11-14 ``Prepare docs for Nov 1st wave of providers (#44011)``
|
|
150
|
+
`73f2eab680 <https://github.com/apache/airflow/commit/73f2eab68081e966fd808bfaca923eed1f81bc43>`__ 2024-11-05 ``serialize asset/dataset timetable conditions in OpenLineage info also for Airflow 2 (#43434)``
|
|
151
|
+
`06088a3abc <https://github.com/apache/airflow/commit/06088a3abcbb46533e74de360746db766d50cf66>`__ 2024-10-31 ``Standard provider python operator (#42081)``
|
|
152
|
+
`68f8164a36 <https://github.com/apache/airflow/commit/68f8164a36db66e7096c1205abead183d34b8ae6>`__ 2024-10-18 ``Fix provider title in documentation (#43157)``
|
|
153
|
+
`857ca4c06c <https://github.com/apache/airflow/commit/857ca4c06c9008593674cabdd28d3c30e3e7f97b>`__ 2024-10-09 ``Split providers out of the main "airflow/" tree into a UV workspace project (#42505)``
|
|
154
|
+
================================================================================================== =========== ================================================================================================
|
|
155
|
+
|
|
156
|
+
1.2.1
|
|
157
|
+
.....
|
|
158
|
+
|
|
159
|
+
Latest change: 2024-10-09
|
|
160
|
+
|
|
161
|
+
================================================================================================== =========== ==================================================================
|
|
162
|
+
Commit Committed Subject
|
|
163
|
+
================================================================================================== =========== ==================================================================
|
|
164
|
+
`2bb8628463 <https://github.com/apache/airflow/commit/2bb862846358d1c5a59b354adb39bc68d5aeae5e>`__ 2024-10-09 ``Prepare docs for Oct 1st adhoc wave of providers (#42862)``
|
|
165
|
+
`ede7cb27fd <https://github.com/apache/airflow/commit/ede7cb27fd39e233889d127490a2255df8c5d27d>`__ 2024-09-30 ``Rename dataset related python variable names to asset (#41348)``
|
|
166
|
+
================================================================================================== =========== ==================================================================
|
|
167
|
+
|
|
168
|
+
1.2.0
|
|
169
|
+
.....
|
|
170
|
+
|
|
171
|
+
Latest change: 2024-08-19
|
|
172
|
+
|
|
173
|
+
================================================================================================== =========== =======================================================================
|
|
174
|
+
Commit Committed Subject
|
|
175
|
+
================================================================================================== =========== =======================================================================
|
|
176
|
+
`75fb7acbac <https://github.com/apache/airflow/commit/75fb7acbaca09a040067f0a5a37637ff44eb9e14>`__ 2024-08-19 ``Prepare docs for Aug 2nd wave of providers (#41559)``
|
|
177
|
+
`fcbff15bda <https://github.com/apache/airflow/commit/fcbff15bda151f70db0ca13fdde015bace5527c4>`__ 2024-08-12 ``Bump minimum Airflow version in providers to Airflow 2.8.0 (#41396)``
|
|
178
|
+
================================================================================================== =========== =======================================================================
|
|
179
|
+
|
|
180
|
+
1.1.0
|
|
181
|
+
.....
|
|
182
|
+
|
|
183
|
+
Latest change: 2024-08-03
|
|
184
|
+
|
|
185
|
+
================================================================================================== =========== ===================================================================================================================
|
|
186
|
+
Commit Committed Subject
|
|
187
|
+
================================================================================================== =========== ===================================================================================================================
|
|
188
|
+
`d23881c648 <https://github.com/apache/airflow/commit/d23881c6489916113921dcedf85077441b44aaf3>`__ 2024-08-03 ``Prepare docs for Aug 1st wave of providers (#41230)``
|
|
189
|
+
`0206a4cbcf <https://github.com/apache/airflow/commit/0206a4cbcfbf85ab035c25533b12f022c22cae3a>`__ 2024-07-23 ``openlineage: migrate OpenLineage provider to V2 facets. (#39530)``
|
|
190
|
+
`0212f67192 <https://github.com/apache/airflow/commit/0212f671921fc5da15085eefbde8b0a76db40fd9>`__ 2024-07-22 ``openlineage: add support for hook lineage for S3Hook (#40819)``
|
|
191
|
+
`6366204458 <https://github.com/apache/airflow/commit/63662044583031fc27d98af02f2913d324245db0>`__ 2024-07-17 ``openlineage: add method to common.compat to not force hooks to try/except every 2.10 hook lineage call (#40812)``
|
|
192
|
+
================================================================================================== =========== ===================================================================================================================
|
|
193
|
+
|
|
194
|
+
1.0.0
|
|
195
|
+
.....
|
|
196
|
+
|
|
197
|
+
Latest change: 2024-06-22
|
|
198
|
+
|
|
199
|
+
================================================================================================== =========== ============================================
|
|
200
|
+
Commit Committed Subject
|
|
201
|
+
================================================================================================== =========== ============================================
|
|
202
|
+
`6e5ae26382 <https://github.com/apache/airflow/commit/6e5ae26382b328e88907e8301d4b2352ef8524c5>`__ 2024-06-22 ``Prepare docs 2nd wave June 2024 (#40273)``
|
|
203
|
+
`0019c9b35a <https://github.com/apache/airflow/commit/0019c9b35af545c60954113503f7f37c9fc3efcb>`__ 2024-06-22 ``Add common.compat provider (#40374)``
|
|
204
|
+
================================================================================================== =========== ============================================
|
|
@@ -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
|
|
@@ -0,0 +1,118 @@
|
|
|
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
|
+
``apache-airflow-providers-common-compat``
|
|
20
|
+
==========================================
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
.. toctree::
|
|
24
|
+
:hidden:
|
|
25
|
+
:maxdepth: 1
|
|
26
|
+
:caption: Basics
|
|
27
|
+
|
|
28
|
+
Home <self>
|
|
29
|
+
Changelog <changelog>
|
|
30
|
+
Security <security>
|
|
31
|
+
|
|
32
|
+
.. toctree::
|
|
33
|
+
:hidden:
|
|
34
|
+
:maxdepth: 1
|
|
35
|
+
:caption: References
|
|
36
|
+
|
|
37
|
+
Python API <_api/airflow/providers/common/compat/index>
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
.. toctree::
|
|
41
|
+
:hidden:
|
|
42
|
+
:maxdepth: 1
|
|
43
|
+
:caption: Resources
|
|
44
|
+
|
|
45
|
+
PyPI Repository <https://pypi.org/project/apache-airflow-providers-common-compat/>
|
|
46
|
+
Installing from sources <installing-providers-from-sources>
|
|
47
|
+
|
|
48
|
+
.. THE REMAINDER OF THE FILE IS AUTOMATICALLY GENERATED. IT WILL BE OVERWRITTEN AT RELEASE TIME!
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
.. toctree::
|
|
52
|
+
:hidden:
|
|
53
|
+
:maxdepth: 1
|
|
54
|
+
:caption: Commits
|
|
55
|
+
|
|
56
|
+
Detailed list of commits <commits>
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
apache-airflow-providers-common-compat package
|
|
60
|
+
------------------------------------------------------
|
|
61
|
+
|
|
62
|
+
Common Compatibility Provider - providing compatibility code for previous Airflow versions
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
Release: 1.6.1
|
|
66
|
+
|
|
67
|
+
Provider package
|
|
68
|
+
----------------
|
|
69
|
+
|
|
70
|
+
This package is for the ``common.compat`` provider.
|
|
71
|
+
All classes for this package are included in the ``airflow.providers.common.compat`` python package.
|
|
72
|
+
|
|
73
|
+
Installation
|
|
74
|
+
------------
|
|
75
|
+
|
|
76
|
+
You can install this package on top of an existing Airflow 2 installation via
|
|
77
|
+
``pip install apache-airflow-providers-common-compat``.
|
|
78
|
+
For the minimum Airflow version supported, see ``Requirements`` below.
|
|
79
|
+
|
|
80
|
+
Requirements
|
|
81
|
+
------------
|
|
82
|
+
|
|
83
|
+
The minimum Apache Airflow version supported by this provider distribution is ``2.9.0``.
|
|
84
|
+
|
|
85
|
+
================== ==================
|
|
86
|
+
PIP package Version required
|
|
87
|
+
================== ==================
|
|
88
|
+
``apache-airflow`` ``>=2.9.0``
|
|
89
|
+
================== ==================
|
|
90
|
+
|
|
91
|
+
Cross provider package dependencies
|
|
92
|
+
-----------------------------------
|
|
93
|
+
|
|
94
|
+
Those are dependencies that might be needed in order to use all the features of the package.
|
|
95
|
+
You need to install the specified provider distributions in order to use them.
|
|
96
|
+
|
|
97
|
+
You can install such cross-provider dependencies when installing from PyPI. For example:
|
|
98
|
+
|
|
99
|
+
.. code-block:: bash
|
|
100
|
+
|
|
101
|
+
pip install apache-airflow-providers-common-compat[openlineage]
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
============================================================================================================== ===============
|
|
105
|
+
Dependent package Extra
|
|
106
|
+
============================================================================================================== ===============
|
|
107
|
+
`apache-airflow-providers-openlineage <https://airflow.apache.org/docs/apache-airflow-providers-openlineage>`_ ``openlineage``
|
|
108
|
+
`apache-airflow-providers-standard <https://airflow.apache.org/docs/apache-airflow-providers-standard>`_ ``standard``
|
|
109
|
+
============================================================================================================== ===============
|
|
110
|
+
|
|
111
|
+
Downloading official packages
|
|
112
|
+
-----------------------------
|
|
113
|
+
|
|
114
|
+
You can download officially released packages and verify their checksums and signatures from the
|
|
115
|
+
`Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
|
|
116
|
+
|
|
117
|
+
* `The apache-airflow-providers-common-compat 1.6.1 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_compat-1.6.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_compat-1.6.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_compat-1.6.1.tar.gz.sha512>`__)
|
|
118
|
+
* `The apache-airflow-providers-common-compat 1.6.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_compat-1.6.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_compat-1.6.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_compat-1.6.1-py3-none-any.whl.sha512>`__)
|