apache-airflow-providers-standard 0.3.0rc1__tar.gz → 0.4.0rc1__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-standard might be problematic. Click here for more details.
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/PKG-INFO +6 -6
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/README.rst +3 -3
- apache_airflow_providers_standard-0.4.0rc1/docs/changelog.rst +269 -0
- apache_airflow_providers_standard-0.4.0rc1/docs/commits.rst +236 -0
- apache_airflow_providers_standard-0.4.0rc1/docs/conf.py +27 -0
- apache_airflow_providers_standard-0.4.0rc1/docs/configurations-ref.rst +19 -0
- apache_airflow_providers_standard-0.4.0rc1/docs/index.rst +93 -0
- apache_airflow_providers_standard-0.4.0rc1/docs/installing-providers-from-sources.rst +18 -0
- apache_airflow_providers_standard-0.4.0rc1/docs/operators/bash.rst +405 -0
- apache_airflow_providers_standard-0.4.0rc1/docs/operators/datetime.rst +85 -0
- apache_airflow_providers_standard-0.4.0rc1/docs/operators/index.rst +25 -0
- apache_airflow_providers_standard-0.4.0rc1/docs/operators/python.rst +485 -0
- apache_airflow_providers_standard-0.4.0rc1/docs/security.rst +18 -0
- apache_airflow_providers_standard-0.4.0rc1/docs/sensors/bash.rst +32 -0
- apache_airflow_providers_standard-0.4.0rc1/docs/sensors/datetime.rst +95 -0
- apache_airflow_providers_standard-0.4.0rc1/docs/sensors/external_task_sensor.rst +88 -0
- apache_airflow_providers_standard-0.4.0rc1/docs/sensors/file.rst +41 -0
- apache_airflow_providers_standard-0.4.0rc1/docs/sensors/index.rst +25 -0
- apache_airflow_providers_standard-0.4.0rc1/docs/sensors/python.rst +50 -0
- apache_airflow_providers_standard-0.4.0rc1/provider.yaml +117 -0
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/pyproject.toml +19 -4
- apache_airflow_providers_standard-0.4.0rc1/src/airflow/__init__.py +17 -0
- apache_airflow_providers_standard-0.4.0rc1/src/airflow/providers/__init__.py +17 -0
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/src/airflow/providers/standard/__init__.py +1 -1
- apache_airflow_providers_standard-0.4.0rc1/src/airflow/providers/standard/decorators/bash.py +121 -0
- apache_airflow_providers_standard-0.4.0rc1/src/airflow/providers/standard/decorators/branch_external_python.py +63 -0
- apache_airflow_providers_standard-0.4.0rc1/src/airflow/providers/standard/decorators/branch_python.py +62 -0
- apache_airflow_providers_standard-0.4.0rc1/src/airflow/providers/standard/decorators/branch_virtualenv.py +62 -0
- apache_airflow_providers_standard-0.4.0rc1/src/airflow/providers/standard/decorators/external_python.py +70 -0
- apache_airflow_providers_standard-0.4.0rc1/src/airflow/providers/standard/decorators/python.py +86 -0
- apache_airflow_providers_standard-0.4.0rc1/src/airflow/providers/standard/decorators/python_virtualenv.py +67 -0
- apache_airflow_providers_standard-0.4.0rc1/src/airflow/providers/standard/decorators/sensor.py +83 -0
- apache_airflow_providers_standard-0.4.0rc1/src/airflow/providers/standard/decorators/short_circuit.py +65 -0
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/src/airflow/providers/standard/get_provider_info.py +29 -5
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/src/airflow/providers/standard/operators/latest_only.py +34 -2
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/src/airflow/providers/standard/operators/trigger_dagrun.py +50 -15
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/src/airflow/providers/standard/sensors/external_task.py +7 -3
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/src/airflow/providers/standard/triggers/external_task.py +82 -17
- apache_airflow_providers_standard-0.4.0rc1/src/airflow/providers/standard/utils/__init__.py +16 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/conftest.py +19 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/__init__.py +17 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/__init__.py +16 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/decorators/__init__.py +16 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/decorators/test_bash.py +528 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/decorators/test_branch_external_python.py +110 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/decorators/test_branch_python.py +98 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/decorators/test_branch_virtualenv.py +126 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/decorators/test_external_python.py +297 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/decorators/test_python.py +1077 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/decorators/test_python_virtualenv.py +391 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/decorators/test_sensor.py +133 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/decorators/test_short_circuit.py +201 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/hooks/__init__.py +16 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/hooks/test_filesystem.py +39 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/hooks/test_package_index.py +123 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/hooks/test_subprocess.py +116 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/operators/__init__.py +16 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/operators/test_bash.py +305 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/operators/test_branch_operator.py +349 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/operators/test_datetime.py +345 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/operators/test_generic_transfer.py +224 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/operators/test_latest_only_operator.py +334 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/operators/test_python.py +2080 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/operators/test_smooth.py +29 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/operators/test_trigger_dagrun.py +736 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/operators/test_weekday.py +355 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/sensors/__init__.py +16 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/sensors/test_bash.py +82 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/sensors/test_date_time.py +92 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/sensors/test_external_task_sensor.py +2035 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/sensors/test_python.py +90 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/sensors/test_time.py +90 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/sensors/test_time_delta.py +187 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/sensors/test_weekday.py +152 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/triggers/__init__.py +16 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/triggers/test_external_task.py +660 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/triggers/test_file.py +106 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/triggers/test_temporal.py +186 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/utils/__init__.py +16 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/utils/test_python_virtualenv.py +220 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/utils/test_skipmixin.py +300 -0
- apache_airflow_providers_standard-0.4.0rc1/tests/unit/standard/utils/test_weekday.py +92 -0
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/src/airflow/providers/standard/LICENSE +0 -0
- {apache_airflow_providers_standard-0.3.0rc1/src/airflow/providers/standard/hooks → apache_airflow_providers_standard-0.4.0rc1/src/airflow/providers/standard/decorators}/__init__.py +0 -0
- {apache_airflow_providers_standard-0.3.0rc1/src/airflow/providers/standard/operators → apache_airflow_providers_standard-0.4.0rc1/src/airflow/providers/standard/hooks}/__init__.py +0 -0
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/src/airflow/providers/standard/hooks/filesystem.py +0 -0
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/src/airflow/providers/standard/hooks/package_index.py +0 -0
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/src/airflow/providers/standard/hooks/subprocess.py +0 -0
- {apache_airflow_providers_standard-0.3.0rc1/src/airflow/providers/standard/sensors → apache_airflow_providers_standard-0.4.0rc1/src/airflow/providers/standard/operators}/__init__.py +0 -0
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/src/airflow/providers/standard/operators/bash.py +0 -0
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/src/airflow/providers/standard/operators/branch.py +0 -0
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/src/airflow/providers/standard/operators/datetime.py +0 -0
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/src/airflow/providers/standard/operators/empty.py +0 -0
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/src/airflow/providers/standard/operators/python.py +0 -0
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/src/airflow/providers/standard/operators/smooth.py +0 -0
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/src/airflow/providers/standard/operators/weekday.py +0 -0
- {apache_airflow_providers_standard-0.3.0rc1/src/airflow/providers/standard/triggers → apache_airflow_providers_standard-0.4.0rc1/src/airflow/providers/standard/sensors}/__init__.py +0 -0
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/src/airflow/providers/standard/sensors/bash.py +0 -0
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/src/airflow/providers/standard/sensors/date_time.py +0 -0
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/src/airflow/providers/standard/sensors/filesystem.py +0 -0
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/src/airflow/providers/standard/sensors/python.py +0 -0
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/src/airflow/providers/standard/sensors/time.py +0 -0
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/src/airflow/providers/standard/sensors/time_delta.py +0 -0
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/src/airflow/providers/standard/sensors/weekday.py +0 -0
- {apache_airflow_providers_standard-0.3.0rc1/src/airflow/providers/standard/utils → apache_airflow_providers_standard-0.4.0rc1/src/airflow/providers/standard/triggers}/__init__.py +0 -0
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/src/airflow/providers/standard/triggers/file.py +0 -0
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/src/airflow/providers/standard/triggers/temporal.py +0 -0
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/src/airflow/providers/standard/utils/python_virtualenv.py +0 -0
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/src/airflow/providers/standard/utils/python_virtualenv_script.jinja2 +0 -0
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/src/airflow/providers/standard/utils/sensor_helper.py +0 -0
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/src/airflow/providers/standard/utils/skipmixin.py +0 -0
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/src/airflow/providers/standard/utils/weekday.py +0 -0
- {apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/src/airflow/providers/standard/version_compat.py +0 -0
{apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: apache-airflow-providers-standard
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.0rc1
|
|
4
4
|
Summary: Provider package apache-airflow-providers-standard for Apache Airflow
|
|
5
5
|
Keywords: airflow-provider,standard,airflow,integration
|
|
6
6
|
Author-email: Apache Software Foundation <dev@airflow.apache.org>
|
|
@@ -22,8 +22,8 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
22
22
|
Classifier: Topic :: System :: Monitoring
|
|
23
23
|
Requires-Dist: apache-airflow>=2.9.0rc0
|
|
24
24
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
|
25
|
-
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-standard/0.
|
|
26
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-standard/0.
|
|
25
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-standard/0.4.0/changelog.html
|
|
26
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-standard/0.4.0
|
|
27
27
|
Project-URL: Mastodon, https://fosstodon.org/@airflow
|
|
28
28
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
|
29
29
|
Project-URL: Source Code, https://github.com/apache/airflow
|
|
@@ -54,7 +54,7 @@ Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
|
|
|
54
54
|
|
|
55
55
|
Package ``apache-airflow-providers-standard``
|
|
56
56
|
|
|
57
|
-
Release: ``0.
|
|
57
|
+
Release: ``0.4.0``
|
|
58
58
|
|
|
59
59
|
|
|
60
60
|
Airflow Standard Provider
|
|
@@ -67,7 +67,7 @@ This is a provider package for ``standard`` provider. All classes for this provi
|
|
|
67
67
|
are in ``airflow.providers.standard`` python package.
|
|
68
68
|
|
|
69
69
|
You can find package information and changelog for the provider
|
|
70
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-standard/0.
|
|
70
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-standard/0.4.0/>`_.
|
|
71
71
|
|
|
72
72
|
Installation
|
|
73
73
|
------------
|
|
@@ -88,5 +88,5 @@ PIP package Version required
|
|
|
88
88
|
================== ==================
|
|
89
89
|
|
|
90
90
|
The changelog for the provider package can be found in the
|
|
91
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-standard/0.
|
|
91
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-standard/0.4.0/changelog.html>`_.
|
|
92
92
|
|
{apache_airflow_providers_standard-0.3.0rc1 → apache_airflow_providers_standard-0.4.0rc1}/README.rst
RENAMED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
|
|
24
24
|
Package ``apache-airflow-providers-standard``
|
|
25
25
|
|
|
26
|
-
Release: ``0.
|
|
26
|
+
Release: ``0.4.0``
|
|
27
27
|
|
|
28
28
|
|
|
29
29
|
Airflow Standard Provider
|
|
@@ -36,7 +36,7 @@ This is a provider package for ``standard`` provider. All classes for this provi
|
|
|
36
36
|
are in ``airflow.providers.standard`` 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-standard/0.
|
|
39
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-standard/0.4.0/>`_.
|
|
40
40
|
|
|
41
41
|
Installation
|
|
42
42
|
------------
|
|
@@ -57,4 +57,4 @@ PIP package Version required
|
|
|
57
57
|
================== ==================
|
|
58
58
|
|
|
59
59
|
The changelog for the provider package can be found in the
|
|
60
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-standard/0.
|
|
60
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-standard/0.4.0/changelog.html>`_.
|
|
@@ -0,0 +1,269 @@
|
|
|
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
|
+
.. http://www.apache.org/licenses/LICENSE-2.0
|
|
19
|
+
.. Unless required by applicable law or agreed to in writing,
|
|
20
|
+
software distributed under the License is distributed on an
|
|
21
|
+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
22
|
+
KIND, either express or implied. See the License for the
|
|
23
|
+
specific language governing permissions and limitations
|
|
24
|
+
under the License.
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
.. NOTE TO CONTRIBUTORS:
|
|
28
|
+
Please, only add notes to the Changelog just below the "Changelog" header when there are some breaking changes
|
|
29
|
+
and you want to add an explanation to the users on how they are supposed to deal with them.
|
|
30
|
+
The changelog is updated and maintained semi-automatically by release manager.
|
|
31
|
+
|
|
32
|
+
``apache-airflow-providers-standard``
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
Changelog
|
|
36
|
+
---------
|
|
37
|
+
|
|
38
|
+
0.4.0
|
|
39
|
+
.....
|
|
40
|
+
|
|
41
|
+
Features
|
|
42
|
+
~~~~~~~~
|
|
43
|
+
|
|
44
|
+
* ``Make default as time.now() for TriggerDagRunOperator (#48969)``
|
|
45
|
+
|
|
46
|
+
Bug Fixes
|
|
47
|
+
~~~~~~~~~
|
|
48
|
+
|
|
49
|
+
* ``Fix WorkflowTrigger to work with TaskSDK (#48819)``
|
|
50
|
+
* ``Get 'LatestOnlyOperator' working with Task SDK (#48945)``
|
|
51
|
+
* ``Fix dagstate trigger to work with TaskSDK (#48747)``
|
|
52
|
+
|
|
53
|
+
Misc
|
|
54
|
+
~~~~
|
|
55
|
+
|
|
56
|
+
* ``Make '@task' import from airflow.sdk (#48896)``
|
|
57
|
+
|
|
58
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
59
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
60
|
+
* ``Fix default base value (#49013)``
|
|
61
|
+
* ``Remove unnecessary entries in get_provider_info and update the schema (#48849)``
|
|
62
|
+
* ``Remove fab from preinstalled providers (#48457)``
|
|
63
|
+
* ``Improve documentation building iteration (#48760)``
|
|
64
|
+
|
|
65
|
+
0.3.0
|
|
66
|
+
.....
|
|
67
|
+
|
|
68
|
+
* ``Make 'ExternalTaskSensor' work with Task SDK (#48651)``
|
|
69
|
+
* ``Make datetime objects in Context as Pendulum objects (#48592)``
|
|
70
|
+
* ``Fix _get_count in sensor_helper.py (#40795)``
|
|
71
|
+
* ``Fix logical_date error in BranchDateTimeOperator and BranchDayOfWeekOperator (#48486)``
|
|
72
|
+
* ``Move 'BaseSensorOperator' to TaskSDK definitions (#48244)``
|
|
73
|
+
* ``Migrate standard decorators to standard provider (#48683)``
|
|
74
|
+
|
|
75
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
76
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
77
|
+
* ``Simplify tooling by switching completely to uv (#48223)``
|
|
78
|
+
* ``Upgrade ruff to latest version (#48553)``
|
|
79
|
+
* ``Bump standard provider to 0.3.0 (#48763)``
|
|
80
|
+
|
|
81
|
+
0.2.0
|
|
82
|
+
.....
|
|
83
|
+
|
|
84
|
+
Features
|
|
85
|
+
~~~~~~~~
|
|
86
|
+
|
|
87
|
+
* ``AIP-72: Implement short circuit and branch operators (#46584)``
|
|
88
|
+
|
|
89
|
+
Bug Fixes
|
|
90
|
+
~~~~~~~~~
|
|
91
|
+
|
|
92
|
+
* ``Handle null logical date in TimeDeltaSensorAsync (#47652)``
|
|
93
|
+
* ``Fix deprecation warning for 'BranchMixIn' (#47856)``
|
|
94
|
+
* ``Fix DayOfWeekSensor use_task_logical_date condition (#47825)``
|
|
95
|
+
* ``Fix python operators errors when initialising plugins in virtualenv jinja script (#48035)``
|
|
96
|
+
|
|
97
|
+
Misc
|
|
98
|
+
~~~~
|
|
99
|
+
|
|
100
|
+
* ``AIP-72: Get 'TriggerDagRunOperator' working with Task SDK (#47882)``
|
|
101
|
+
* ``Relocate utils/weekday.py to standard provider (#47892)``
|
|
102
|
+
* ``AIP-72: Handle Custom XCom Backend on Task SDK (#47339)``
|
|
103
|
+
* ``Rewrite asset event registration (#47677)``
|
|
104
|
+
* ``Implement pre- and post-execute hooks in sdk (#48230)``
|
|
105
|
+
|
|
106
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
107
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
108
|
+
* ``Upgrade providers flit build requirements to 3.12.0 (#48362)``
|
|
109
|
+
* ``Support '@task.bash' with Task SDK (#48060)``
|
|
110
|
+
* ``Move airflow sources to airflow-core package (#47798)``
|
|
111
|
+
* ``Bump various providers in preparation for Airflow 3.0.0b4 (#48013)``
|
|
112
|
+
* ``Remove fixed comments (#47823)``
|
|
113
|
+
* ``Remove links to x/twitter.com (#47801)``
|
|
114
|
+
* ``Fix comment typo in PythonOperator (#47558)``
|
|
115
|
+
|
|
116
|
+
0.1.1
|
|
117
|
+
.....
|
|
118
|
+
|
|
119
|
+
Misc
|
|
120
|
+
~~~~
|
|
121
|
+
|
|
122
|
+
* ``Relocate SmoothOperator to standard provider and add tests (#47530)``
|
|
123
|
+
* ``AIP-72: Moving BaseOperatorLink to task sdk (#47008)``
|
|
124
|
+
* ``Move tests_common package to devel-common project (#47281)``
|
|
125
|
+
* ``Remove old UI and webserver (#46942)``
|
|
126
|
+
* ``Add deferred pagination mode to GenericTransfer (#44809)``
|
|
127
|
+
* ``Replace 'external_trigger' check with DagRunType (#45961)``
|
|
128
|
+
* ``Runtime context shouldn't have start_date as a key (#46961)``
|
|
129
|
+
* ``Upgrade flit to 3.11.0 (#46938)``
|
|
130
|
+
|
|
131
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
132
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
133
|
+
* ``Fix codespell issues detected by new codespell (#47259)``
|
|
134
|
+
* ``Improve documentation for updating provider dependencies (#47203)``
|
|
135
|
+
* ``Add legacy namespace packages to airflow.providers (#47064)``
|
|
136
|
+
* ``Remove extra whitespace in provider readme template (#46975)``
|
|
137
|
+
|
|
138
|
+
0.1.0
|
|
139
|
+
.....
|
|
140
|
+
|
|
141
|
+
Features
|
|
142
|
+
~~~~~~~~
|
|
143
|
+
|
|
144
|
+
* ``AIP-82 Introduce 'BaseEventTrigger' as base class for triggers used with event driven scheduling (#46391)``
|
|
145
|
+
* ``AIP-83 amendment: Add logic for generating run_id when logical date is None. (#46616)``
|
|
146
|
+
|
|
147
|
+
Bug Fixes
|
|
148
|
+
~~~~~~~~~
|
|
149
|
+
|
|
150
|
+
* ``TriggerDagRunOperator by defaults set logical date as null (#46633)``
|
|
151
|
+
* ``Use run_id for ExternalDag and TriggerDagRun links (#46546)``
|
|
152
|
+
|
|
153
|
+
Misc
|
|
154
|
+
~~~~
|
|
155
|
+
|
|
156
|
+
* ``change listener API, add basic support for task instance listeners in TaskSDK, make OpenLineage provider support Airflow 3's listener interface (#45294)``
|
|
157
|
+
* ``Remove AirflowContextDeprecationWarning as all context should be clean for Airflow 3 (#46601)``
|
|
158
|
+
* ``refactor(utils/decorators): rewrite remove task decorator to use cst (#43383)``
|
|
159
|
+
* ``Add dynamic task mapping into TaskSDK runtime (#46032)``
|
|
160
|
+
* ``Moving EmptyOperator to standard provider (#46231)``
|
|
161
|
+
* ``Add run_after column to DagRun model (#45732)``
|
|
162
|
+
* ``Removing feature: send context in venv operators (using 'use_airflow_context') (#46306)``
|
|
163
|
+
* ``Remove import from MySQL provider tests in generic transfer test (#46274)``
|
|
164
|
+
* ``Fix failures on main related to DagRun validation (#45917)``
|
|
165
|
+
* ``Start porting mapped task to SDK (#45627)``
|
|
166
|
+
* ``AIP-72: Support better type-hinting for Context dict in SDK (#45583)``
|
|
167
|
+
* ``Remove code for deprecation of Context keys (#45585)``
|
|
168
|
+
* ``AIP-72: Move non-user facing code to '_internal' (#45515)``
|
|
169
|
+
* ``AIP-72: Add support for 'get_current_context' in Task SDK (#45486)``
|
|
170
|
+
* ``Move Literal alias into TYPE_CHECKING block (#45345)``
|
|
171
|
+
* ``AIP-72: Add Taskflow API support & template rendering in Task SDK (#45444)``
|
|
172
|
+
* ``Remove tuple_in_condition helpers (#45201)``
|
|
173
|
+
|
|
174
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
175
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
176
|
+
* ``Move provider_tests to unit folder in provider tests (#46800)``
|
|
177
|
+
* ``Removed the unused provider's distribution (#46608)``
|
|
178
|
+
* ``move standard, alibaba and common.sql provider to the new structure (#45964)``
|
|
179
|
+
|
|
180
|
+
0.0.3
|
|
181
|
+
.....
|
|
182
|
+
|
|
183
|
+
.. note::
|
|
184
|
+
Provider is still WIP. It can be used with production but we may introduce breaking changes without following semver until version 1.0.0
|
|
185
|
+
|
|
186
|
+
.. note::
|
|
187
|
+
This release of provider is only available for Airflow 2.9+ as explained in the
|
|
188
|
+
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
|
|
189
|
+
|
|
190
|
+
Breaking changes
|
|
191
|
+
~~~~~~~~~~~~~~~~
|
|
192
|
+
|
|
193
|
+
.. warning::
|
|
194
|
+
All deprecated classes, parameters and features have been removed from the SSH provider package.
|
|
195
|
+
The following breaking changes were introduced:
|
|
196
|
+
|
|
197
|
+
* operators
|
|
198
|
+
* ``The deprecated parameter use_dill was removed in PythonOperator and all virtualenv and branching derivates. Please use serializer='dill' instead.``
|
|
199
|
+
* ``The deprecated parameter use_dill was removed in all Python task decorators and virtualenv and branching derivates. Please use serializer='dill' instead.``
|
|
200
|
+
|
|
201
|
+
* ``Remove Provider Deprecations in Standard (#44541)``
|
|
202
|
+
|
|
203
|
+
Bug Fixes
|
|
204
|
+
~~~~~~~~~
|
|
205
|
+
|
|
206
|
+
* ``Add backward compatibility check for StartTriggerArgs import in filesystem sensor (#44458)``
|
|
207
|
+
|
|
208
|
+
Misc
|
|
209
|
+
~~~~
|
|
210
|
+
|
|
211
|
+
* ``Remove references to AIRFLOW_V_2_9_PLUS (#44987)``
|
|
212
|
+
* ``Bump minimum Airflow version in providers to Airflow 2.9.0 (#44956)``
|
|
213
|
+
* ``Remove Pydanitc models introduced for AIP-44 (#44552)``
|
|
214
|
+
* ``Consistent way of checking Airflow version in providers (#44686)``
|
|
215
|
+
* ``Deferrable sensors can implement sensor timeout (#33718)``
|
|
216
|
+
* ``Remove AIP-44 code from renderedtifields.py (#44546)``
|
|
217
|
+
* ``Remove AIP-44 from taskinstance (#44540)``
|
|
218
|
+
* ``Move 'LatestOnlyOperator' operator to standard provider. (#44309)``
|
|
219
|
+
* ``Remove AIP-44 configuration from the code (#44454)``
|
|
220
|
+
* ``Move external task sensor to standard provider (#44288)``
|
|
221
|
+
* ``Move triggers to standard provider (#43608)``
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
225
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
226
|
+
* ``Correct new changelog breaking changes header (#44659)``
|
|
227
|
+
* ``Add missing changelog to breaking change for Standard provider breaking changes (#44581)``
|
|
228
|
+
|
|
229
|
+
0.0.2
|
|
230
|
+
.....
|
|
231
|
+
|
|
232
|
+
.. note::
|
|
233
|
+
Provider is still WIP. It can be used with production but we may introduce breaking changes without following semver until version 1.0.0
|
|
234
|
+
|
|
235
|
+
Bug Fixes
|
|
236
|
+
~~~~~~~~~
|
|
237
|
+
|
|
238
|
+
* ``Fix TriggerDagRunOperator extra_link when trigger_dag_id is templated (#42810)``
|
|
239
|
+
|
|
240
|
+
Misc
|
|
241
|
+
~~~~
|
|
242
|
+
|
|
243
|
+
* ``Move 'TriggerDagRunOperator' to standard provider (#44053)``
|
|
244
|
+
* ``Move filesystem sensor to standard provider (#43890)``
|
|
245
|
+
* ``Rename execution_date to logical_date across codebase (#43902)``
|
|
246
|
+
|
|
247
|
+
|
|
248
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
249
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
250
|
+
* ``Use Python 3.9 as target version for Ruff & Black rules (#44298)``
|
|
251
|
+
* ``update standard provider CHANGELOG.rst (#44110)``
|
|
252
|
+
|
|
253
|
+
0.0.1
|
|
254
|
+
.....
|
|
255
|
+
|
|
256
|
+
.. note::
|
|
257
|
+
Provider is still WIP. It can be used with production but we may introduce breaking changes without following semver until version 1.0.0
|
|
258
|
+
|
|
259
|
+
.. note::
|
|
260
|
+
This provider created by migrating operators/sensors/hooks from Airflow 2 core.
|
|
261
|
+
|
|
262
|
+
Breaking changes
|
|
263
|
+
~~~~~~~~~~~~~~~~
|
|
264
|
+
|
|
265
|
+
* ``In BranchDayOfWeekOperator, DayOfWeekSensor, BranchDateTimeOperator parameter use_task_execution_date has been removed. Please use use_task_logical_date.``
|
|
266
|
+
* ``PythonVirtualenvOperator uses built-in venv instead of virtualenv package.``
|
|
267
|
+
* ``is_venv_installed method has been removed from PythonVirtualenvOperator as venv is built-in.``
|
|
268
|
+
|
|
269
|
+
* ``Initial version of the provider. (#41564)``
|
|
@@ -0,0 +1,236 @@
|
|
|
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-standard
|
|
27
|
+
------------------------------------------------------
|
|
28
|
+
|
|
29
|
+
Airflow Standard Provider
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
This is detailed commit list of changes for versions provider package: ``standard``.
|
|
33
|
+
For high-level changelog, see :doc:`package information including changelog <index>`.
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
0.4.0
|
|
38
|
+
.....
|
|
39
|
+
|
|
40
|
+
Latest change: 2025-04-10
|
|
41
|
+
|
|
42
|
+
================================================================================================== =========== ==================================================================================
|
|
43
|
+
Commit Committed Subject
|
|
44
|
+
================================================================================================== =========== ==================================================================================
|
|
45
|
+
`b58f027cbf <https://github.com/apache/airflow/commit/b58f027cbf39e5eea982a5560b22024e2de328a8>`__ 2025-04-10 ``Fix default base value (#49013)``
|
|
46
|
+
`636224df61 <https://github.com/apache/airflow/commit/636224df611109e1cb008e83b094899ea2d36322>`__ 2025-04-09 ``Fix WorkflowTrigger to work with TaskSDK (#48819)``
|
|
47
|
+
`57cda9ec70 <https://github.com/apache/airflow/commit/57cda9ec70148ee23a667b423b9f9308a9db2341>`__ 2025-04-09 ``Make default as time.now() for TriggerDagRunOperator (#48969)``
|
|
48
|
+
`c31cb5f19e <https://github.com/apache/airflow/commit/c31cb5f19ec77cbd1c40899c187ca83757c3fe20>`__ 2025-04-08 ``Get 'LatestOnlyOperator' working with Task SDK (#48945)``
|
|
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
|
+
`294594c06c <https://github.com/apache/airflow/commit/294594c06c21247547d83d4c1c996d86b49d9a35>`__ 2025-04-08 ``Fix dagstate trigger to work with TaskSDK (#48747)``
|
|
51
|
+
`86d5b27f92 <https://github.com/apache/airflow/commit/86d5b27f92207571ebe0c29a42c42abbf6f8cb8c>`__ 2025-04-08 ``Make '@task' import from airflow.sdk (#48896)``
|
|
52
|
+
`139673d3ce <https://github.com/apache/airflow/commit/139673d3ce5552c2cf8bcb2d202e97342c4b237c>`__ 2025-04-07 ``Remove fab from preinstalled providers (#48457)``
|
|
53
|
+
`67858fd7e7 <https://github.com/apache/airflow/commit/67858fd7e7ac82788854844c1e6ef5a35f1d0d23>`__ 2025-04-06 ``Improve documentation building iteration (#48760)``
|
|
54
|
+
================================================================================================== =========== ==================================================================================
|
|
55
|
+
|
|
56
|
+
0.3.0
|
|
57
|
+
.....
|
|
58
|
+
|
|
59
|
+
Latest change: 2025-04-06
|
|
60
|
+
|
|
61
|
+
================================================================================================== =========== =========================================================================================
|
|
62
|
+
Commit Committed Subject
|
|
63
|
+
================================================================================================== =========== =========================================================================================
|
|
64
|
+
`adbb062b50 <https://github.com/apache/airflow/commit/adbb062b50e2e128fe475a76b7ce10ec93c39ee2>`__ 2025-04-06 ``Prepare docs for Apr 1st wave of providers (#48828)``
|
|
65
|
+
`f01e5e2f64 <https://github.com/apache/airflow/commit/f01e5e2f64ddbb6251d1356fdd2b3b3059726191>`__ 2025-04-04 ``Migrate standard decorators to standard provider (#48683)``
|
|
66
|
+
`adf19b77ad <https://github.com/apache/airflow/commit/adf19b77ad60c28513c751f785cca21175b80e12>`__ 2025-04-04 ``Bump standard provider to 0.3.0 (#48763)``
|
|
67
|
+
`6775bf7bae <https://github.com/apache/airflow/commit/6775bf7bae13f4291e18d4118179c14e4444de0d>`__ 2025-04-03 ``Make 'ExternalTaskSensor' work with Task SDK (#48651)``
|
|
68
|
+
`d4473555c0 <https://github.com/apache/airflow/commit/d4473555c0e7022e073489b7163d49102881a1a6>`__ 2025-04-02 ``Simplify tooling by switching completely to uv (#48223)``
|
|
69
|
+
`e7daa6794c <https://github.com/apache/airflow/commit/e7daa6794c3375cceb6372748c757510cde3eaa8>`__ 2025-04-01 ``Make datetime objects in Context as Pendulum objects (#48592)``
|
|
70
|
+
`ce3da2f46d <https://github.com/apache/airflow/commit/ce3da2f46dcd752560e790a1b25428f7e9c6685f>`__ 2025-04-01 ``Fix _get_count in sensor_helper.py (#40795)``
|
|
71
|
+
`47002feacd <https://github.com/apache/airflow/commit/47002feacd8aaf794b47c2dd241aa25068354a2a>`__ 2025-03-30 ``Upgrade ruff to latest version (#48553)``
|
|
72
|
+
`5479d0b387 <https://github.com/apache/airflow/commit/5479d0b387577a8c5a4b325968b56ebd52a985f3>`__ 2025-03-29 ``Fix logical_date error in BranchDateTimeOperator and BranchDayOfWeekOperator (#48486)``
|
|
73
|
+
`347c98cd8c <https://github.com/apache/airflow/commit/347c98cd8c285b7b8ca3a8a626be89d16a572bbf>`__ 2025-03-28 ``Move 'BaseSensorOperator' to TaskSDK definitions (#48244)``
|
|
74
|
+
================================================================================================== =========== =========================================================================================
|
|
75
|
+
|
|
76
|
+
0.2.0
|
|
77
|
+
.....
|
|
78
|
+
|
|
79
|
+
Latest change: 2025-03-26
|
|
80
|
+
|
|
81
|
+
================================================================================================== =========== =============================================================================================
|
|
82
|
+
Commit Committed Subject
|
|
83
|
+
================================================================================================== =========== =============================================================================================
|
|
84
|
+
`c762e17820 <https://github.com/apache/airflow/commit/c762e17820cae6b162caa3eec5123760e07d56cc>`__ 2025-03-26 ``Prepare docs for Mar 2nd wave of providers (#48383)``
|
|
85
|
+
`6adb2dbae4 <https://github.com/apache/airflow/commit/6adb2dbae47341eb61dbc62dbc56176d9aa83fd9>`__ 2025-03-25 ``Upgrade providers flit build requirements to 3.12.0 (#48362)``
|
|
86
|
+
`bafa787a05 <https://github.com/apache/airflow/commit/bafa787a05cae7563b0479cacac72bed5b45db28>`__ 2025-03-25 ``Implement pre- and post-execute hooks in sdk (#48230)``
|
|
87
|
+
`23260e4121 <https://github.com/apache/airflow/commit/23260e412171b7ccace7519efa4d1e6c58a7b9d6>`__ 2025-03-21 ``Fix python operators errors when initialising plugins in virtualenv jinja script (#48035)``
|
|
88
|
+
`8f1a53801a <https://github.com/apache/airflow/commit/8f1a53801a4da94fb81f65c11dcccf74601e1859>`__ 2025-03-22 ``Support '@task.bash' with Task SDK (#48060)``
|
|
89
|
+
`545bf451d4 <https://github.com/apache/airflow/commit/545bf451d47a9a5335ccf7858dee22ff88ab4de1>`__ 2025-03-21 ``Setting Airflow context Environment variables for operators (#47644)``
|
|
90
|
+
`243fe86d4b <https://github.com/apache/airflow/commit/243fe86d4b3e59bb12977b3e36ca3f2ed27ca0f8>`__ 2025-03-21 ``Move airflow sources to airflow-core package (#47798)``
|
|
91
|
+
`1a5eb7a29c <https://github.com/apache/airflow/commit/1a5eb7a29c777009f2196678a67af0cfe352faab>`__ 2025-03-20 ``Bump various providers in preparation for Airflow 3.0.0b4 (#48013)``
|
|
92
|
+
`4b83391b75 <https://github.com/apache/airflow/commit/4b83391b75fb24209904bad5721cf16a391cf065>`__ 2025-03-19 ``AIP-72: Get 'TriggerDagRunOperator' working with Task SDK (#47882)``
|
|
93
|
+
`566bea2db3 <https://github.com/apache/airflow/commit/566bea2db3e1544e63a467432837957e77be4439>`__ 2025-03-18 ``Relocate utils/weekday.py to standard provider (#47892)``
|
|
94
|
+
`91b0f610ab <https://github.com/apache/airflow/commit/91b0f610ab109f39e27a5a00d9f6d5bf590b47ff>`__ 2025-03-17 ``AIP-72: Handle Custom XCom Backend on Task SDK (#47339)``
|
|
95
|
+
`779b76b891 <https://github.com/apache/airflow/commit/779b76b8914fbbc4e10667874798e1fe227cf968>`__ 2025-03-17 ``Handle null logical date in TimeDeltaSensorAsync (#47652)``
|
|
96
|
+
`d0bcc028af <https://github.com/apache/airflow/commit/d0bcc028af5180e35779ecea8696ac1cec11282e>`__ 2025-03-17 ``Fix deprecation warning for 'BranchMixIn' (#47856)``
|
|
97
|
+
`60f6a9f1a1 <https://github.com/apache/airflow/commit/60f6a9f1a1ab555f932503954a536b5878a96843>`__ 2025-03-16 ``Fix DayOfWeekSensor use_task_logical_date condition (#47825)``
|
|
98
|
+
`9201b36af3 <https://github.com/apache/airflow/commit/9201b36af3afefce80a75c38d2e9c41de6f290c9>`__ 2025-03-16 ``Remove fixed comments (#47823)``
|
|
99
|
+
`935d2831fe <https://github.com/apache/airflow/commit/935d2831fe8fd509b618a738bf00e0c34e186e11>`__ 2025-03-15 ``Remove links to x/twitter.com (#47801)``
|
|
100
|
+
`a6f6733b35 <https://github.com/apache/airflow/commit/a6f6733b3586e025715d6e8d6033f8ce2a0fa1cf>`__ 2025-03-15 ``AIP-72: Implement short circuit and branch operators (#46584)``
|
|
101
|
+
`2fa9230d2a <https://github.com/apache/airflow/commit/2fa9230d2a5dcb09123a2dbb9297894ac40471ad>`__ 2025-03-13 ``Rewrite asset event registration (#47677)``
|
|
102
|
+
`7f7c7a7b45 <https://github.com/apache/airflow/commit/7f7c7a7b4594fe753dcfa106e2c14228e8d09793>`__ 2025-03-10 ``Fix comment typo in PythonOperator (#47558)``
|
|
103
|
+
================================================================================================== =========== =============================================================================================
|
|
104
|
+
|
|
105
|
+
0.1.1
|
|
106
|
+
.....
|
|
107
|
+
|
|
108
|
+
Latest change: 2025-03-09
|
|
109
|
+
|
|
110
|
+
================================================================================================== =========== =======================================================================
|
|
111
|
+
Commit Committed Subject
|
|
112
|
+
================================================================================================== =========== =======================================================================
|
|
113
|
+
`492ecfe5c0 <https://github.com/apache/airflow/commit/492ecfe5c03102bfb710108038ebd5fc50cb55b5>`__ 2025-03-09 ``Prepare docs for Mar 1st wave of providers (#47545)``
|
|
114
|
+
`6b69eb7b9a <https://github.com/apache/airflow/commit/6b69eb7b9aa1c90cd3e7a6b5e9bfa6d8f6b03fe8>`__ 2025-03-08 ``Relocate SmoothOperator to standard provider and add tests (#47530)``
|
|
115
|
+
`aa07160892 <https://github.com/apache/airflow/commit/aa0716089235407f555fee06ac6363419b390bcc>`__ 2025-03-07 ``AIP-72: Moving BaseOperatorLink to task sdk (#47008)``
|
|
116
|
+
`e4002c3305 <https://github.com/apache/airflow/commit/e4002c3305a757f5926f96c996e701e8f998a042>`__ 2025-03-05 ``Move tests_common package to devel-common project (#47281)``
|
|
117
|
+
`1447705482 <https://github.com/apache/airflow/commit/144770548242295dc69d5ea7b7e11a748c246262>`__ 2025-03-01 ``Fix codespell issues detected by new codespell (#47259)``
|
|
118
|
+
`1addb55154 <https://github.com/apache/airflow/commit/1addb55154fbef31bfa021537cfbd4395696381c>`__ 2025-02-28 ``Improve documentation for updating provider dependencies (#47203)``
|
|
119
|
+
`51415547d6 <https://github.com/apache/airflow/commit/51415547d681942ec389f143125e8f9f163d690c>`__ 2025-02-26 ``Remove old UI and webserver (#46942)``
|
|
120
|
+
`310f5cdfde <https://github.com/apache/airflow/commit/310f5cdfde87b9d2c7327fbe03f0dcfe854405a9>`__ 2025-02-26 ``Add deferred pagination mode to GenericTransfer (#44809)``
|
|
121
|
+
`c6c4f95ed9 <https://github.com/apache/airflow/commit/c6c4f95ed9e3220133815b9126c135e805637022>`__ 2025-02-25 ``Add legacy namespace packages to airflow.providers (#47064)``
|
|
122
|
+
`811fa2b016 <https://github.com/apache/airflow/commit/811fa2b016ca613061e5d4d32fee005e53c1bf1d>`__ 2025-02-25 ``Replace 'external_trigger' check with DagRunType (#45961)``
|
|
123
|
+
`518287ce7f <https://github.com/apache/airflow/commit/518287ce7fbb7bb70df499239523b1b2e9ac7656>`__ 2025-02-24 ``Runtime context shouldn't have start_date as a key (#46961)``
|
|
124
|
+
`dbf8bb4092 <https://github.com/apache/airflow/commit/dbf8bb409223687c7d2ad10649a92d02c24bb3b4>`__ 2025-02-24 ``Remove extra whitespace in provider readme template (#46975)``
|
|
125
|
+
`b28c336e8b <https://github.com/apache/airflow/commit/b28c336e8b7aa1d69c0f9520b182b1b661377337>`__ 2025-02-21 ``Upgrade flit to 3.11.0 (#46938)``
|
|
126
|
+
================================================================================================== =========== =======================================================================
|
|
127
|
+
|
|
128
|
+
0.1.0
|
|
129
|
+
.....
|
|
130
|
+
|
|
131
|
+
Latest change: 2025-02-21
|
|
132
|
+
|
|
133
|
+
================================================================================================== =========== ============================================================================================================================================================
|
|
134
|
+
Commit Committed Subject
|
|
135
|
+
================================================================================================== =========== ============================================================================================================================================================
|
|
136
|
+
`5d87bddf0a <https://github.com/apache/airflow/commit/5d87bddf0aa5f485f3684c909fb95f461e5a2ab6>`__ 2025-02-21 ``Prepare docs for Feb 1st wave of providers (#46893)``
|
|
137
|
+
`fdbd68f02e <https://github.com/apache/airflow/commit/fdbd68f02e86dcfec20178d3309b7398cb43ce32>`__ 2025-02-18 ``TriggerDagRunOperator by defaults set logical date as null (#46633)``
|
|
138
|
+
`4d5846f58f <https://github.com/apache/airflow/commit/4d5846f58fe0de9b43358c0be75dd72e968dacc4>`__ 2025-02-16 ``Move provider_tests to unit folder in provider tests (#46800)``
|
|
139
|
+
`e027457a24 <https://github.com/apache/airflow/commit/e027457a24d0c6235bfed9c2a8399f75342e82f1>`__ 2025-02-15 ``Removed the unused provider's distribution (#46608)``
|
|
140
|
+
`3ad8787a3e <https://github.com/apache/airflow/commit/3ad8787a3e13a6733b0cf277ad3800defa74dcee>`__ 2025-02-13 ``AIP-82 Introduce 'BaseEventTrigger' as base class for triggers used with event driven scheduling (#46391)``
|
|
141
|
+
`035060d7f3 <https://github.com/apache/airflow/commit/035060d7f384a4989eddb6fb05f512f9c6a7e5bf>`__ 2025-02-11 ``AIP-83 amendment: Add logic for generating run_id when logical date is None. (#46616)``
|
|
142
|
+
`0047a6886a <https://github.com/apache/airflow/commit/0047a6886a12478dc30fe76e7192fc837b118001>`__ 2025-02-11 ``change listener API, add basic support for task instance listeners in TaskSDK, make OpenLineage provider support Airflow 3's listener interface (#45294)``
|
|
143
|
+
`8592188ac7 <https://github.com/apache/airflow/commit/8592188ac7a57265e9aa33565f25268a03669d79>`__ 2025-02-11 ``Remove AirflowContextDeprecationWarning as all context should be clean for Airflow 3 (#46601)``
|
|
144
|
+
`4111a4c209 <https://github.com/apache/airflow/commit/4111a4c2097f034a1b2c72fa1e5d7db853390d6a>`__ 2025-02-10 ``Use run_id for ExternalDag and TriggerDagRun links (#46546)``
|
|
145
|
+
`9689cf5bb9 <https://github.com/apache/airflow/commit/9689cf5bb9d53be2238456fc138e7bf7f5e62e33>`__ 2025-02-07 ``refactor(utils/decorators): rewrite remove task decorator to use cst (#43383)``
|
|
146
|
+
`aaaea355d3 <https://github.com/apache/airflow/commit/aaaea355d3adf430204d01f8fdb3bfafbd7c2bd9>`__ 2025-02-06 ``Add dynamic task mapping into TaskSDK runtime (#46032)``
|
|
147
|
+
`e6ea6709bb <https://github.com/apache/airflow/commit/e6ea6709bbd8ba7c024c4f75136a0af0cf9987b0>`__ 2025-02-04 ``Moving EmptyOperator to standard provider (#46231)``
|
|
148
|
+
`880b067668 <https://github.com/apache/airflow/commit/880b0676680b7b2f4a78a5ab243b147ff06492c8>`__ 2025-02-03 ``Add run_after column to DagRun model (#45732)``
|
|
149
|
+
`3ff4f2dc24 <https://github.com/apache/airflow/commit/3ff4f2dc248bd633ede6b4eb5b7d38e40d404157>`__ 2025-02-03 ``Removing feature: send context in venv operators (using 'use_airflow_context') (#46306)``
|
|
150
|
+
`b4b6de3c46 <https://github.com/apache/airflow/commit/b4b6de3c46109b4a4672462e54ccf0e0a253aece>`__ 2025-01-30 ``Remove import from MySQL provider tests in generic transfer test (#46274)``
|
|
151
|
+
`29b9e8ea10 <https://github.com/apache/airflow/commit/29b9e8ea10de7a82ad40a7a2160c64a84004a45e>`__ 2025-01-25 ``move standard, alibaba and common.sql provider to the new structure (#45964)``
|
|
152
|
+
`2193be2a5e <https://github.com/apache/airflow/commit/2193be2a5e53760ae00d1b85c825087e995f8eb1>`__ 2025-01-22 ``Fix failures on main related to DagRun validation (#45917)``
|
|
153
|
+
`d1b2a44653 <https://github.com/apache/airflow/commit/d1b2a4465387e9414e6c15f8df85591136a7784b>`__ 2025-01-21 ``Start porting mapped task to SDK (#45627)``
|
|
154
|
+
`f616c62209 <https://github.com/apache/airflow/commit/f616c62209d6b51d293ecf6f5c900f89a7fdc3a3>`__ 2025-01-15 ``AIP-72: Support better type-hinting for Context dict in SDK (#45583)``
|
|
155
|
+
`5597bb2961 <https://github.com/apache/airflow/commit/5597bb296106648fda48c768814f5ae6f3eb7a53>`__ 2025-01-12 ``Remove code for deprecation of Context keys (#45585)``
|
|
156
|
+
`521410f03c <https://github.com/apache/airflow/commit/521410f03cbe776a0fa1f96a5b572a17908cc327>`__ 2025-01-09 ``AIP-72: Move non-user facing code to '_internal' (#45515)``
|
|
157
|
+
`04806231e4 <https://github.com/apache/airflow/commit/04806231e4411f37faa3d97f7b9e9fe2c0409303>`__ 2025-01-09 ``AIP-72: Add support for 'get_current_context' in Task SDK (#45486)``
|
|
158
|
+
`b703d53b77 <https://github.com/apache/airflow/commit/b703d53b774960326b8d91963304bac3ca5d533c>`__ 2025-01-09 ``Move Literal alias into TYPE_CHECKING block (#45345)``
|
|
159
|
+
`b2a244bb13 <https://github.com/apache/airflow/commit/b2a244bb1353ca072f15371fa317396486466071>`__ 2025-01-07 ``AIP-72: Add Taskflow API support & template rendering in Task SDK (#45444)``
|
|
160
|
+
`3873230a11 <https://github.com/apache/airflow/commit/3873230a11de8b9cc24d012ecdfe6848bc6ae0cf>`__ 2024-12-26 ``Remove tuple_in_condition helpers (#45201)``
|
|
161
|
+
================================================================================================== =========== ============================================================================================================================================================
|
|
162
|
+
|
|
163
|
+
0.0.3
|
|
164
|
+
.....
|
|
165
|
+
|
|
166
|
+
Latest change: 2024-12-20
|
|
167
|
+
|
|
168
|
+
================================================================================================== =========== ============================================================================================
|
|
169
|
+
Commit Committed Subject
|
|
170
|
+
================================================================================================== =========== ============================================================================================
|
|
171
|
+
`2723508345 <https://github.com/apache/airflow/commit/2723508345d5cf074aeb673955ce72996785f2bc>`__ 2024-12-20 ``Prepare docs for Nov 1st wave of providers Dec 2024 (#45042)``
|
|
172
|
+
`2a33da0246 <https://github.com/apache/airflow/commit/2a33da0246c811a98d5cdaf0af2bcca0dee8556a>`__ 2024-12-18 ``Remove references to AIRFLOW_V_2_9_PLUS (#44987)``
|
|
173
|
+
`4b38bed76c <https://github.com/apache/airflow/commit/4b38bed76c1ea5fe84a6bc678ce87e20d563adc0>`__ 2024-12-16 ``Bump min version of Providers to 2.9 (#44956)``
|
|
174
|
+
`8af1bbdf25 <https://github.com/apache/airflow/commit/8af1bbdf25e2650e617d456f729d1d4f46465524>`__ 2024-12-12 ``Remove Pydanitc models introduced for AIP-44 (#44552)``
|
|
175
|
+
`490b5e816b <https://github.com/apache/airflow/commit/490b5e816b804f338b0eb97f240ae874d4e15810>`__ 2024-12-10 ``Consistent way of checking Airflow version in providers (#44686)``
|
|
176
|
+
`e03265bb56 <https://github.com/apache/airflow/commit/e03265bb5613b8cfcaa2a42cf6369b1ba091ddf4>`__ 2024-12-05 ``Correct new changelog breaking changes header (#44659)``
|
|
177
|
+
`8ca061ddf5 <https://github.com/apache/airflow/commit/8ca061ddf5fb85c79b1212ca29112190ebb0aab5>`__ 2024-12-03 ``Deferrable sensors can implement sensor timeout (#33718)``
|
|
178
|
+
`74ff524a6d <https://github.com/apache/airflow/commit/74ff524a6d58f3c302368f0f06ca21d5146a69b8>`__ 2024-12-02 ``Add missing changelog to breaking change for Standard provider breaking changes (#44581)``
|
|
179
|
+
`c44690c1c8 <https://github.com/apache/airflow/commit/c44690c1c8bb1bf986af06f1c914460d55bc5a33>`__ 2024-12-01 ``Remove Provider Deprecations in Standard (#44541)``
|
|
180
|
+
`cbc287052e <https://github.com/apache/airflow/commit/cbc287052e7a8e92193988daa92054b561e5ef5d>`__ 2024-12-01 ``Remove AIP-44 code from renderedtifields.py (#44546)``
|
|
181
|
+
`62bac46822 <https://github.com/apache/airflow/commit/62bac46822551383d0ab3cd24e351ffae7a90147>`__ 2024-12-01 ``Remove AIP-44 from taskinstance (#44540)``
|
|
182
|
+
`57d109c8a6 <https://github.com/apache/airflow/commit/57d109c8a60196e99541ab56c7e1efcc61445a71>`__ 2024-11-30 ``Move 'LatestOnlyOperator' operator to standard provider. (#44309)``
|
|
183
|
+
`ab2bd2d4a9 <https://github.com/apache/airflow/commit/ab2bd2d4a9d5154f9d1e9e65d30c4716eca7c4b1>`__ 2024-11-28 ``Add import compatibility check (#44458)``
|
|
184
|
+
`e9f544cc3f <https://github.com/apache/airflow/commit/e9f544cc3fb1ac3d7709b3c54804dd6fdd510eca>`__ 2024-11-28 ``Remove AIP-44 configuration from the code (#44454)``
|
|
185
|
+
`0c30c4d9af <https://github.com/apache/airflow/commit/0c30c4d9af20add18675627c6341824fbdeb4d52>`__ 2024-11-27 ``Move external task sensor to standard provider (#44288)``
|
|
186
|
+
`4404e64247 <https://github.com/apache/airflow/commit/4404e64247daf37b350bc7cd835d397256507ad1>`__ 2024-11-25 ``Move triggers to standard provider (#43608)``
|
|
187
|
+
================================================================================================== =========== ============================================================================================
|
|
188
|
+
|
|
189
|
+
0.0.2
|
|
190
|
+
.....
|
|
191
|
+
|
|
192
|
+
Latest change: 2024-11-24
|
|
193
|
+
|
|
194
|
+
================================================================================================== =========== ==================================================================================
|
|
195
|
+
Commit Committed Subject
|
|
196
|
+
================================================================================================== =========== ==================================================================================
|
|
197
|
+
`f0da8eeab3 <https://github.com/apache/airflow/commit/f0da8eeab3efba4d4e43439db30a273bfd67c9f1>`__ 2024-11-24 ``Prepare docs for Nov 2nd wave of ad hoc providers (#44321)``
|
|
198
|
+
`1275fec92f <https://github.com/apache/airflow/commit/1275fec92fd7cd7135b100d66d41bdcb79ade29d>`__ 2024-11-24 ``Use Python 3.9 as target version for Ruff & Black rules (#44298)``
|
|
199
|
+
`d0f433b024 <https://github.com/apache/airflow/commit/d0f433b0245e910ec568aaf255f28499e296ffce>`__ 2024-11-21 ``Fix TriggerDagRunOperator extra_link when trigger_dag_id is templated (#42810)``
|
|
200
|
+
`f05ce08362 <https://github.com/apache/airflow/commit/f05ce083620aa1c1be34c1c8f9190286a3fe3532>`__ 2024-11-20 ``Move 'TriggerDagRunOperator' to standard provider (#44053)``
|
|
201
|
+
`36803b8bd9 <https://github.com/apache/airflow/commit/36803b8bd9a8b6786b89d54c50726c5b08f9d7ea>`__ 2024-11-17 ``Move filesystem sensor to standard provider (#43890)``
|
|
202
|
+
`b6c75d2cd6 <https://github.com/apache/airflow/commit/b6c75d2cd6ba459ba4134a32bd22be56309d0f91>`__ 2024-11-17 ``update standard provider CHANGELOG.rst (#44110)``
|
|
203
|
+
`123dadda0e <https://github.com/apache/airflow/commit/123dadda0e0648ef1412053d1743128333eecb63>`__ 2024-11-15 ``Rename execution_date to logical_date across codebase (#43902)``
|
|
204
|
+
================================================================================================== =========== ==================================================================================
|
|
205
|
+
|
|
206
|
+
0.0.1
|
|
207
|
+
.....
|
|
208
|
+
|
|
209
|
+
Latest change: 2024-11-14
|
|
210
|
+
|
|
211
|
+
================================================================================================== =========== ================================================================================================================================
|
|
212
|
+
Commit Committed Subject
|
|
213
|
+
================================================================================================== =========== ================================================================================================================================
|
|
214
|
+
`a53d9f6d25 <https://github.com/apache/airflow/commit/a53d9f6d257f193ea5026ba4cd007d5ddeab968f>`__ 2024-11-14 ``Prepare docs for Nov 1st wave of providers (#44011)``
|
|
215
|
+
`2ef8438eec <https://github.com/apache/airflow/commit/2ef8438eecb35027601982bd00865acca737a5b3>`__ 2024-11-14 ``move version imports to inside utils (#44018)``
|
|
216
|
+
`e7194dff6a <https://github.com/apache/airflow/commit/e7194dff6a816bf3a721cbf579ceac19c11cd111>`__ 2024-11-13 ``Add support for semicolon stripping to DbApiHook, PrestoHook, and TrinoHook (#41916)``
|
|
217
|
+
`f757b87581 <https://github.com/apache/airflow/commit/f757b87581d1ef7a298aabc77b0cfcc8b777cc11>`__ 2024-11-11 ``update how to guide section with doc references (#43889)``
|
|
218
|
+
`084e29e9e2 <https://github.com/apache/airflow/commit/084e29e9e2840fc29392bd9f1185da9486ffe86f>`__ 2024-11-11 ``Add documentation to standard provider operators (#43716)``
|
|
219
|
+
`9bbf6f16f7 <https://github.com/apache/airflow/commit/9bbf6f16f75618b72c32b7daa74473519251d945>`__ 2024-11-09 ``Test standard provider with Airflow 2.8 and 2.9 (#43556)``
|
|
220
|
+
`5f9fdf016d <https://github.com/apache/airflow/commit/5f9fdf016da631cd4eb66499b54796d8c2dbbfbd>`__ 2024-11-05 ``add config section to standard provider docs index (#43674)``
|
|
221
|
+
`286075f059 <https://github.com/apache/airflow/commit/286075f05932db9480c1a1e2260b7327247562de>`__ 2024-11-04 ``Add UV support to venv operators (#43612)``
|
|
222
|
+
`fe0dd9b8b3 <https://github.com/apache/airflow/commit/fe0dd9b8b354ac6d80817b306909c56f192b93f1>`__ 2024-11-01 ``Switch PythonVirtualenvOperator to venv from virtualenv package (#43568)``
|
|
223
|
+
`dd7f669e6c <https://github.com/apache/airflow/commit/dd7f669e6c2cbb77e51c0e52a8e83e5d68bf694c>`__ 2024-10-31 ``Mark standard provider as ready for release (#43550)``
|
|
224
|
+
`0c9e159dc4 <https://github.com/apache/airflow/commit/0c9e159dc4ab610caff37ce49bfe1d40c4a628ff>`__ 2024-10-31 ``Fix dependencies of standard provider (#43553)``
|
|
225
|
+
`06088a3abc <https://github.com/apache/airflow/commit/06088a3abcbb46533e74de360746db766d50cf66>`__ 2024-10-31 ``Standard provider python operator (#42081)``
|
|
226
|
+
`4d54cda411 <https://github.com/apache/airflow/commit/4d54cda4114125bb671b0bfccddc73b646855a2d>`__ 2024-10-24 ``Make conn id parameters templated in GenericTransfer and also allow passing hook parameters like in BaseSQLOperator (#42891)``
|
|
227
|
+
`0e112bf0e4 <https://github.com/apache/airflow/commit/0e112bf0e4552c5108a8d91c5047f92eed9bb97f>`__ 2024-10-24 ``BashOperator: Execute templated bash script as file (#42783)``
|
|
228
|
+
`2ed06d1e9f <https://github.com/apache/airflow/commit/2ed06d1e9f446b73c89ceadfc35d1d93abd80282>`__ 2024-10-17 ``chore(docs): add required import of BranchDayOfWeekOperator (#43053)``
|
|
229
|
+
`420b24aa79 <https://github.com/apache/airflow/commit/420b24aa798f73bd6fa8c525e80958e9c9e85dec>`__ 2024-10-10 ``Move Hooks to Standard provider (#42794)``
|
|
230
|
+
`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)``
|
|
231
|
+
`a5ffbbda17 <https://github.com/apache/airflow/commit/a5ffbbda17450a5c99037b292844087119b5676a>`__ 2024-10-09 ``Standard provider bash operator (#42252)``
|
|
232
|
+
`48e39b927a <https://github.com/apache/airflow/commit/48e39b927a9714a2b8c74e96b1fc510cfe817b6e>`__ 2024-10-02 ``Revert "Move FSHook/PackageIndexHook/SubprocessHook to standard provider (#42…" (#42659)``
|
|
233
|
+
`61d1dbbc7f <https://github.com/apache/airflow/commit/61d1dbbc7feb9728da125dc00ad05314758036eb>`__ 2024-10-01 ``Move FSHook/PackageIndexHook/SubprocessHook to standard provider (#42506)``
|
|
234
|
+
`4c2c4079d6 <https://github.com/apache/airflow/commit/4c2c4079d6750367d7ef2bab45d788e8ced3d1e6>`__ 2024-09-21 ``remove time folder from standard provider (#42392)``
|
|
235
|
+
`20ea6b7598 <https://github.com/apache/airflow/commit/20ea6b7598bfd56693973beb2771fcc0ef6597c8>`__ 2024-09-18 ``Airflow Standard Provider (#41564)``
|
|
236
|
+
================================================================================================== =========== ================================================================================================================================
|
|
@@ -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-standard"
|
|
26
|
+
|
|
27
|
+
from docs.provider_conf import * # noqa: F403
|
|
@@ -0,0 +1,19 @@
|
|
|
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
|
+
.. include:: /../../../devel-common/src/sphinx_exts/includes/providers-configurations-ref.rst
|
|
19
|
+
.. include:: /../../../devel-common/src/sphinx_exts/includes/sections-and-options.rst
|