apache-airflow-providers-http 5.3.1rc1__tar.gz → 5.6.2rc1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- apache_airflow_providers_http-5.6.2rc1/NOTICE +5 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/PKG-INFO +56 -22
- apache_airflow_providers_http-5.6.2rc1/README.rst +93 -0
- apache_airflow_providers_http-5.6.2rc1/docs/.latest-doc-only-change.txt +1 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/docs/changelog.rst +155 -6
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/docs/connections/http.rst +1 -1
- apache_airflow_providers_http-5.6.2rc1/docs/index.rst +138 -0
- apache_airflow_providers_http-5.6.2rc1/docs/triggers.rst +148 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/provider.yaml +12 -1
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/pyproject.toml +19 -10
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/src/airflow/__init__.py +1 -1
- {apache_airflow_providers_http-5.3.1rc1/tests/system → apache_airflow_providers_http-5.6.2rc1/src/airflow/providers}/__init__.py +1 -1
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/src/airflow/providers/http/__init__.py +3 -3
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/src/airflow/providers/http/exceptions.py +1 -1
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/src/airflow/providers/http/get_provider_info.py +1 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/src/airflow/providers/http/hooks/http.py +101 -62
- apache_airflow_providers_http-5.6.2rc1/src/airflow/providers/http/notifications/__init__.py +21 -0
- apache_airflow_providers_http-5.6.2rc1/src/airflow/providers/http/notifications/http.py +105 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/src/airflow/providers/http/operators/http.py +31 -16
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/src/airflow/providers/http/sensors/http.py +4 -10
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/src/airflow/providers/http/triggers/http.py +138 -19
- apache_airflow_providers_http-5.6.2rc1/src/airflow/providers/http/version_compat.py +41 -0
- {apache_airflow_providers_http-5.3.1rc1/src/airflow/providers → apache_airflow_providers_http-5.6.2rc1/tests/system}/__init__.py +1 -1
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/tests/unit/__init__.py +1 -1
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/tests/unit/http/hooks/test_http.py +379 -338
- apache_airflow_providers_http-5.6.2rc1/tests/unit/http/notifications/__init__.py +16 -0
- apache_airflow_providers_http-5.6.2rc1/tests/unit/http/notifications/test_http.py +95 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/tests/unit/http/operators/test_http.py +74 -4
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/tests/unit/http/sensors/test_http.py +20 -16
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/tests/unit/http/triggers/test_http.py +124 -2
- apache_airflow_providers_http-5.3.1rc1/README.rst +0 -64
- apache_airflow_providers_http-5.3.1rc1/docs/.latest-doc-only-change.txt +0 -1
- apache_airflow_providers_http-5.3.1rc1/docs/index.rst +0 -108
- {apache_airflow_providers_http-5.3.1rc1/src/airflow/providers/http → apache_airflow_providers_http-5.6.2rc1}/LICENSE +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/docs/commits.rst +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/docs/conf.py +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/docs/installing-providers-from-sources.rst +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/docs/integration-logos/HTTP.png +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/docs/operators.rst +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/docs/security.rst +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/src/airflow/providers/http/hooks/__init__.py +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/src/airflow/providers/http/operators/__init__.py +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/src/airflow/providers/http/sensors/__init__.py +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/src/airflow/providers/http/triggers/__init__.py +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/tests/conftest.py +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/tests/system/http/__init__.py +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/tests/system/http/example_http.py +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/tests/unit/http/__init__.py +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/tests/unit/http/hooks/__init__.py +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/tests/unit/http/operators/__init__.py +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/tests/unit/http/sensors/__init__.py +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/tests/unit/http/triggers/__init__.py +0 -0
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: apache-airflow-providers-http
|
|
3
|
-
Version: 5.
|
|
3
|
+
Version: 5.6.2rc1
|
|
4
4
|
Summary: Provider package apache-airflow-providers-http for Apache Airflow
|
|
5
5
|
Keywords: airflow-provider,http,airflow,integration
|
|
6
6
|
Author-email: Apache Software Foundation <dev@airflow.apache.org>
|
|
7
7
|
Maintainer-email: Apache Software Foundation <dev@airflow.apache.org>
|
|
8
|
-
Requires-Python:
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
9
|
Description-Content-Type: text/x-rst
|
|
10
|
+
License-Expression: Apache-2.0
|
|
10
11
|
Classifier: Development Status :: 5 - Production/Stable
|
|
11
12
|
Classifier: Environment :: Console
|
|
12
13
|
Classifier: Environment :: Web Environment
|
|
@@ -14,24 +15,28 @@ Classifier: Intended Audience :: Developers
|
|
|
14
15
|
Classifier: Intended Audience :: System Administrators
|
|
15
16
|
Classifier: Framework :: Apache Airflow
|
|
16
17
|
Classifier: Framework :: Apache Airflow :: Provider
|
|
17
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
19
18
|
Classifier: Programming Language :: Python :: 3.10
|
|
20
19
|
Classifier: Programming Language :: Python :: 3.11
|
|
21
20
|
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
22
22
|
Classifier: Topic :: System :: Monitoring
|
|
23
|
-
|
|
23
|
+
License-File: LICENSE
|
|
24
|
+
License-File: NOTICE
|
|
25
|
+
Requires-Dist: apache-airflow>=2.11.0rc1
|
|
26
|
+
Requires-Dist: apache-airflow-providers-common-compat>=1.10.1rc1
|
|
24
27
|
Requires-Dist: requests>=2.32.0,<3
|
|
25
28
|
Requires-Dist: requests-toolbelt>=1.0.0
|
|
26
|
-
Requires-Dist: aiohttp>=3.
|
|
29
|
+
Requires-Dist: aiohttp>=3.12.14
|
|
27
30
|
Requires-Dist: asgiref>=2.3.0
|
|
31
|
+
Requires-Dist: apache-airflow-providers-common-compat ; extra == "common-compat"
|
|
28
32
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
|
29
|
-
Project-URL: Changelog, https://airflow.staged.apache.org/docs/apache-airflow-providers-http/5.
|
|
30
|
-
Project-URL: Documentation, https://airflow.staged.apache.org/docs/apache-airflow-providers-http/5.
|
|
33
|
+
Project-URL: Changelog, https://airflow.staged.apache.org/docs/apache-airflow-providers-http/5.6.2/changelog.html
|
|
34
|
+
Project-URL: Documentation, https://airflow.staged.apache.org/docs/apache-airflow-providers-http/5.6.2
|
|
31
35
|
Project-URL: Mastodon, https://fosstodon.org/@airflow
|
|
32
36
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
|
33
37
|
Project-URL: Source Code, https://github.com/apache/airflow
|
|
34
38
|
Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
|
|
39
|
+
Provides-Extra: common-compat
|
|
35
40
|
|
|
36
41
|
|
|
37
42
|
.. Licensed to the Apache Software Foundation (ASF) under one
|
|
@@ -58,7 +63,7 @@ Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
|
|
|
58
63
|
|
|
59
64
|
Package ``apache-airflow-providers-http``
|
|
60
65
|
|
|
61
|
-
Release: ``5.
|
|
66
|
+
Release: ``5.6.2``
|
|
62
67
|
|
|
63
68
|
|
|
64
69
|
`Hypertext Transfer Protocol (HTTP) <https://www.w3.org/Protocols/>`__
|
|
@@ -71,30 +76,59 @@ This is a provider package for ``http`` provider. All classes for this provider
|
|
|
71
76
|
are in ``airflow.providers.http`` python package.
|
|
72
77
|
|
|
73
78
|
You can find package information and changelog for the provider
|
|
74
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-http/5.
|
|
79
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-http/5.6.2/>`_.
|
|
75
80
|
|
|
76
81
|
Installation
|
|
77
82
|
------------
|
|
78
83
|
|
|
79
|
-
You can install this package on top of an existing Airflow
|
|
84
|
+
You can install this package on top of an existing Airflow installation (see ``Requirements`` below
|
|
80
85
|
for the minimum Airflow version supported) via
|
|
81
86
|
``pip install apache-airflow-providers-http``
|
|
82
87
|
|
|
83
|
-
The package supports the following python versions: 3.
|
|
88
|
+
The package supports the following python versions: 3.10,3.11,3.12,3.13
|
|
84
89
|
|
|
85
90
|
Requirements
|
|
86
91
|
------------
|
|
87
92
|
|
|
88
|
-
|
|
89
|
-
PIP package
|
|
90
|
-
|
|
91
|
-
``apache-airflow``
|
|
92
|
-
``
|
|
93
|
-
``requests
|
|
94
|
-
``
|
|
95
|
-
``
|
|
96
|
-
|
|
93
|
+
========================================== ==================
|
|
94
|
+
PIP package Version required
|
|
95
|
+
========================================== ==================
|
|
96
|
+
``apache-airflow`` ``>=2.11.0``
|
|
97
|
+
``apache-airflow-providers-common-compat`` ``>=1.10.1``
|
|
98
|
+
``requests`` ``>=2.32.0,<3``
|
|
99
|
+
``requests-toolbelt`` ``>=1.0.0``
|
|
100
|
+
``aiohttp`` ``>=3.12.14``
|
|
101
|
+
``asgiref`` ``>=2.3.0``
|
|
102
|
+
========================================== ==================
|
|
103
|
+
|
|
104
|
+
Cross provider package dependencies
|
|
105
|
+
-----------------------------------
|
|
106
|
+
|
|
107
|
+
Those are dependencies that might be needed in order to use all the features of the package.
|
|
108
|
+
You need to install the specified providers in order to use them.
|
|
109
|
+
|
|
110
|
+
You can install such cross-provider dependencies when installing from PyPI. For example:
|
|
111
|
+
|
|
112
|
+
.. code-block:: bash
|
|
113
|
+
|
|
114
|
+
pip install apache-airflow-providers-http[common.compat]
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
================================================================================================================== =================
|
|
118
|
+
Dependent package Extra
|
|
119
|
+
================================================================================================================== =================
|
|
120
|
+
`apache-airflow-providers-common-compat <https://airflow.apache.org/docs/apache-airflow-providers-common-compat>`_ ``common.compat``
|
|
121
|
+
================================================================================================================== =================
|
|
122
|
+
|
|
123
|
+
Optional dependencies
|
|
124
|
+
----------------------
|
|
125
|
+
|
|
126
|
+
================= ==========================================
|
|
127
|
+
Extra Dependencies
|
|
128
|
+
================= ==========================================
|
|
129
|
+
``common.compat`` ``apache-airflow-providers-common-compat``
|
|
130
|
+
================= ==========================================
|
|
97
131
|
|
|
98
132
|
The changelog for the provider package can be found in the
|
|
99
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-http/5.
|
|
133
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-http/5.6.2/changelog.html>`_.
|
|
100
134
|
|
|
@@ -0,0 +1,93 @@
|
|
|
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 TEMPLATE FOR THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
|
|
22
|
+
``PROVIDER_README_TEMPLATE.rst.jinja2`` IN the ``dev/breeze/src/airflow_breeze/templates`` DIRECTORY
|
|
23
|
+
|
|
24
|
+
Package ``apache-airflow-providers-http``
|
|
25
|
+
|
|
26
|
+
Release: ``5.6.2``
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
`Hypertext Transfer Protocol (HTTP) <https://www.w3.org/Protocols/>`__
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
Provider package
|
|
33
|
+
----------------
|
|
34
|
+
|
|
35
|
+
This is a provider package for ``http`` provider. All classes for this provider package
|
|
36
|
+
are in ``airflow.providers.http`` python package.
|
|
37
|
+
|
|
38
|
+
You can find package information and changelog for the provider
|
|
39
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-http/5.6.2/>`_.
|
|
40
|
+
|
|
41
|
+
Installation
|
|
42
|
+
------------
|
|
43
|
+
|
|
44
|
+
You can install this package on top of an existing Airflow installation (see ``Requirements`` below
|
|
45
|
+
for the minimum Airflow version supported) via
|
|
46
|
+
``pip install apache-airflow-providers-http``
|
|
47
|
+
|
|
48
|
+
The package supports the following python versions: 3.10,3.11,3.12,3.13
|
|
49
|
+
|
|
50
|
+
Requirements
|
|
51
|
+
------------
|
|
52
|
+
|
|
53
|
+
========================================== ==================
|
|
54
|
+
PIP package Version required
|
|
55
|
+
========================================== ==================
|
|
56
|
+
``apache-airflow`` ``>=2.11.0``
|
|
57
|
+
``apache-airflow-providers-common-compat`` ``>=1.10.1``
|
|
58
|
+
``requests`` ``>=2.32.0,<3``
|
|
59
|
+
``requests-toolbelt`` ``>=1.0.0``
|
|
60
|
+
``aiohttp`` ``>=3.12.14``
|
|
61
|
+
``asgiref`` ``>=2.3.0``
|
|
62
|
+
========================================== ==================
|
|
63
|
+
|
|
64
|
+
Cross provider package dependencies
|
|
65
|
+
-----------------------------------
|
|
66
|
+
|
|
67
|
+
Those are dependencies that might be needed in order to use all the features of the package.
|
|
68
|
+
You need to install the specified providers in order to use them.
|
|
69
|
+
|
|
70
|
+
You can install such cross-provider dependencies when installing from PyPI. For example:
|
|
71
|
+
|
|
72
|
+
.. code-block:: bash
|
|
73
|
+
|
|
74
|
+
pip install apache-airflow-providers-http[common.compat]
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
================================================================================================================== =================
|
|
78
|
+
Dependent package Extra
|
|
79
|
+
================================================================================================================== =================
|
|
80
|
+
`apache-airflow-providers-common-compat <https://airflow.apache.org/docs/apache-airflow-providers-common-compat>`_ ``common.compat``
|
|
81
|
+
================================================================================================================== =================
|
|
82
|
+
|
|
83
|
+
Optional dependencies
|
|
84
|
+
----------------------
|
|
85
|
+
|
|
86
|
+
================= ==========================================
|
|
87
|
+
Extra Dependencies
|
|
88
|
+
================= ==========================================
|
|
89
|
+
``common.compat`` ``apache-airflow-providers-common-compat``
|
|
90
|
+
================= ==========================================
|
|
91
|
+
|
|
92
|
+
The changelog for the provider package can be found in the
|
|
93
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-http/5.6.2/changelog.html>`_.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
bcc64a255e488e74db034e9b7e46a002b1c0f8cd
|
{apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.2rc1}/docs/changelog.rst
RENAMED
|
@@ -27,6 +27,157 @@
|
|
|
27
27
|
Changelog
|
|
28
28
|
---------
|
|
29
29
|
|
|
30
|
+
5.6.2
|
|
31
|
+
.....
|
|
32
|
+
|
|
33
|
+
Misc
|
|
34
|
+
~~~~
|
|
35
|
+
|
|
36
|
+
* ``Remove top-level SDK reference in Core (#59817)``
|
|
37
|
+
|
|
38
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
39
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
40
|
+
* ``TaskInstance unused method cleanup (#59835)``
|
|
41
|
+
|
|
42
|
+
5.6.1
|
|
43
|
+
.....
|
|
44
|
+
|
|
45
|
+
Misc
|
|
46
|
+
~~~~
|
|
47
|
+
|
|
48
|
+
* ``Add backcompat for exceptions in providers (#58727)``
|
|
49
|
+
|
|
50
|
+
Doc-only
|
|
51
|
+
~~~~~~~~
|
|
52
|
+
|
|
53
|
+
* ``Correct header parameter description in HTTP operator (#59105)``
|
|
54
|
+
|
|
55
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
56
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
57
|
+
|
|
58
|
+
5.6.0
|
|
59
|
+
.....
|
|
60
|
+
|
|
61
|
+
.. note::
|
|
62
|
+
This release of provider is only available for Airflow 2.11+ as explained in the
|
|
63
|
+
Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>_.
|
|
64
|
+
|
|
65
|
+
Misc
|
|
66
|
+
~~~~
|
|
67
|
+
|
|
68
|
+
* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)``
|
|
69
|
+
|
|
70
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
71
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
72
|
+
* ``Updates to release process of providers (#58316)``
|
|
73
|
+
|
|
74
|
+
5.5.0
|
|
75
|
+
.....
|
|
76
|
+
|
|
77
|
+
Features
|
|
78
|
+
~~~~~~~~
|
|
79
|
+
|
|
80
|
+
* ``HTTP Notifier implementation (#56160)``
|
|
81
|
+
* ``Add poll_interval attribute to HttpEventTrigger (#57583)``
|
|
82
|
+
|
|
83
|
+
Misc
|
|
84
|
+
~~~~
|
|
85
|
+
|
|
86
|
+
* ``Convert all airflow distributions to be compliant with ASF requirements (#58138)``
|
|
87
|
+
* ``Migrate 'http' provider to 'common.compat' (#57089)``
|
|
88
|
+
|
|
89
|
+
Doc-only
|
|
90
|
+
~~~~~~~~
|
|
91
|
+
|
|
92
|
+
* ``[Doc] Fixing some typos and spelling errors (#57225)``
|
|
93
|
+
* ``Fixing some typos and spelling errors (#57186)``
|
|
94
|
+
|
|
95
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
96
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
97
|
+
* ``Delete all unnecessary LICENSE Files (#58191)``
|
|
98
|
+
* ``Enable PT006 rule to http Provider test (#57917)``
|
|
99
|
+
|
|
100
|
+
5.4.0
|
|
101
|
+
.....
|
|
102
|
+
|
|
103
|
+
Features
|
|
104
|
+
~~~~~~~~
|
|
105
|
+
|
|
106
|
+
* ``Create HttpEventTrigger for AssetWatcher library (#51253)``
|
|
107
|
+
|
|
108
|
+
Doc-only
|
|
109
|
+
~~~~~~~~
|
|
110
|
+
|
|
111
|
+
* ``Remove placeholder Release Date in changelog and index files (#56056)``
|
|
112
|
+
|
|
113
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
114
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
115
|
+
|
|
116
|
+
5.3.4
|
|
117
|
+
.....
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
Bug Fixes
|
|
121
|
+
~~~~~~~~~
|
|
122
|
+
|
|
123
|
+
* ``fix(http): Fix HttpHook.url_from_endpoint() lazy initialization (#54202)``
|
|
124
|
+
|
|
125
|
+
Doc-only
|
|
126
|
+
~~~~~~~~
|
|
127
|
+
|
|
128
|
+
* ``Make term Dag consistent in providers docs (#55101)``
|
|
129
|
+
|
|
130
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
131
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
132
|
+
* ``Switch pre-commit to prek (#54258)``
|
|
133
|
+
* ``Prepare release for Aug 2025 1st wave of providers (#54193)``
|
|
134
|
+
* ``Conn docs extra fix (#53942)``
|
|
135
|
+
* ``Fix Airflow 2 reference in README/index of providers (#55240)``
|
|
136
|
+
|
|
137
|
+
5.3.3
|
|
138
|
+
.....
|
|
139
|
+
|
|
140
|
+
Misc
|
|
141
|
+
~~~~
|
|
142
|
+
|
|
143
|
+
* ``Cleanup type ignores (#53294)``
|
|
144
|
+
* ``Remove type ignore across codebase after mypy upgrade (#53243)``
|
|
145
|
+
* ``Make http provider compatible with mypy 1.16.1 (#53108)``
|
|
146
|
+
* ``Remove upper-binding for "python-requires" (#52980)``
|
|
147
|
+
* ``Temporarily switch to use >=,< pattern instead of '~=' (#52967)``
|
|
148
|
+
* ``Move all BaseHook usages to version_compat in HTTP (#52814)``
|
|
149
|
+
* ``Add Python 3.13 support for Airflow. (#46891)``
|
|
150
|
+
* ``Bump aiohttp to 3.12.14 (#53830)``
|
|
151
|
+
|
|
152
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
153
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
154
|
+
* ``Resolve timeout in ''HttpSensor'' test by fixing template rendering (#53676)``
|
|
155
|
+
|
|
156
|
+
5.3.2
|
|
157
|
+
.....
|
|
158
|
+
|
|
159
|
+
Bug Fixes
|
|
160
|
+
~~~~~~~~~
|
|
161
|
+
|
|
162
|
+
* ``Ensure 'HttpHook.run()' does not alter 'extra_options' passed to it (#51893)``
|
|
163
|
+
* ``Fix HttpOperator(deferrable=True) crash when connection has login / password (#52050)``
|
|
164
|
+
* ``Enable extra_options even when extra not defined for HttpHook.run (#51746)``
|
|
165
|
+
|
|
166
|
+
Misc
|
|
167
|
+
~~~~
|
|
168
|
+
|
|
169
|
+
* ``Move 'BaseHook' implementation to task SDK (#51873)``
|
|
170
|
+
* ``Provider Migration: Replace 'BaseOperator' to Task SDK for 'apache/http' (#52528)``
|
|
171
|
+
* ``Drop support for Python 3.9 (#52072)``
|
|
172
|
+
* ``Use BaseSensorOperator from task sdk in providers (#52296)``
|
|
173
|
+
* ``Add deprecation to 'airflow/sensors/base.py' (#52249)``
|
|
174
|
+
|
|
175
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
176
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
177
|
+
* ``Revert "Replace models.BaseOperator to Task SDK for http (#52506)" (#52515)``
|
|
178
|
+
* ``Replace models.BaseOperator to Task SDK for http (#52506)``
|
|
179
|
+
* ``Remove db usage from http provider tests (#52227)``
|
|
180
|
+
|
|
30
181
|
5.3.1
|
|
31
182
|
.....
|
|
32
183
|
|
|
@@ -168,8 +319,6 @@ Misc
|
|
|
168
319
|
appropriate section above if needed. Do not delete the lines(!):
|
|
169
320
|
* ``Correct new changelog breaking changes header (#44659)``
|
|
170
321
|
* ``Use Python 3.9 as target version for Ruff & Black rules (#44298)``
|
|
171
|
-
|
|
172
|
-
.. Review and move the new changes to one of the sections above:
|
|
173
322
|
* ``Update path of example dags in docs (#45069)``
|
|
174
323
|
|
|
175
324
|
4.13.3
|
|
@@ -201,7 +350,7 @@ Bug Fixes
|
|
|
201
350
|
Misc
|
|
202
351
|
~~~~
|
|
203
352
|
|
|
204
|
-
* ``add
|
|
353
|
+
* ``add lower bound to requests-toolbelt and replace requests_toolbelt with requests-toolbelt (#43020)``
|
|
205
354
|
* ``Set lower bound to asgiref>=2.3.0 (#43001)``
|
|
206
355
|
|
|
207
356
|
|
|
@@ -500,7 +649,7 @@ Misc
|
|
|
500
649
|
Features
|
|
501
650
|
~~~~~~~~
|
|
502
651
|
|
|
503
|
-
* ``Add non login-password auth support for
|
|
652
|
+
* ``Add non login-password auth support for SimpleHttpOperator (#29206)``
|
|
504
653
|
|
|
505
654
|
4.2.0
|
|
506
655
|
.....
|
|
@@ -682,13 +831,13 @@ Features
|
|
|
682
831
|
|
|
683
832
|
.. Below changes are excluded from the changelog. Move them to
|
|
684
833
|
appropriate section above if needed. Do not delete the lines(!):
|
|
685
|
-
* ``Check
|
|
834
|
+
* ``Check syntactic correctness for code-snippets (#16005)``
|
|
686
835
|
* ``Prepares provider release after PIP 21 compatibility (#15576)``
|
|
687
836
|
* ``Remove Backport Providers (#14886)``
|
|
688
837
|
* ``Updated documentation for June 2021 provider release (#16294)``
|
|
689
838
|
* ``Add documentation for the HTTP connection (#15379)``
|
|
690
839
|
* ``More documentation update for June providers release (#16405)``
|
|
691
|
-
* ``Synchronizes updated changelog after
|
|
840
|
+
* ``Synchronizes updated changelog after bugfix release (#16464)``
|
|
692
841
|
|
|
693
842
|
1.1.1
|
|
694
843
|
.....
|
|
@@ -53,7 +53,7 @@ Port (optional)
|
|
|
53
53
|
Schema (optional)
|
|
54
54
|
Specify the service type etc: http/https.
|
|
55
55
|
|
|
56
|
-
|
|
56
|
+
Extra (optional)
|
|
57
57
|
Specify headers and default requests parameters in json format.
|
|
58
58
|
Following default requests parameters are taken into account:
|
|
59
59
|
|
|
@@ -0,0 +1,138 @@
|
|
|
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-http``
|
|
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: Guides
|
|
36
|
+
|
|
37
|
+
Connection types <connections/http>
|
|
38
|
+
Operators <operators>
|
|
39
|
+
Triggers <triggers>
|
|
40
|
+
|
|
41
|
+
.. toctree::
|
|
42
|
+
:hidden:
|
|
43
|
+
:maxdepth: 1
|
|
44
|
+
:caption: References
|
|
45
|
+
|
|
46
|
+
Python API <_api/airflow/providers/http/index>
|
|
47
|
+
|
|
48
|
+
.. toctree::
|
|
49
|
+
:hidden:
|
|
50
|
+
:maxdepth: 1
|
|
51
|
+
:caption: System tests
|
|
52
|
+
|
|
53
|
+
System Tests <_api/tests/system/http/index>
|
|
54
|
+
|
|
55
|
+
.. toctree::
|
|
56
|
+
:hidden:
|
|
57
|
+
:maxdepth: 1
|
|
58
|
+
:caption: Resources
|
|
59
|
+
|
|
60
|
+
Example Dags <https://github.com/apache/airflow/tree/providers-http/|version|/providers/http/tests/system/http>
|
|
61
|
+
PyPI Repository <https://pypi.org/project/apache-airflow-providers-http/>
|
|
62
|
+
Installing from sources <installing-providers-from-sources>
|
|
63
|
+
|
|
64
|
+
.. THE REMAINDER OF THE FILE IS AUTOMATICALLY GENERATED. IT WILL BE OVERWRITTEN AT RELEASE TIME!
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
.. toctree::
|
|
68
|
+
:hidden:
|
|
69
|
+
:maxdepth: 1
|
|
70
|
+
:caption: Commits
|
|
71
|
+
|
|
72
|
+
Detailed list of commits <commits>
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
apache-airflow-providers-http package
|
|
76
|
+
------------------------------------------------------
|
|
77
|
+
|
|
78
|
+
`Hypertext Transfer Protocol (HTTP) <https://www.w3.org/Protocols/>`__
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
Release: 5.6.2
|
|
82
|
+
|
|
83
|
+
Provider package
|
|
84
|
+
----------------
|
|
85
|
+
|
|
86
|
+
This package is for the ``http`` provider.
|
|
87
|
+
All classes for this package are included in the ``airflow.providers.http`` python package.
|
|
88
|
+
|
|
89
|
+
Installation
|
|
90
|
+
------------
|
|
91
|
+
|
|
92
|
+
You can install this package on top of an existing Airflow installation via
|
|
93
|
+
``pip install apache-airflow-providers-http``.
|
|
94
|
+
For the minimum Airflow version supported, see ``Requirements`` below.
|
|
95
|
+
|
|
96
|
+
Requirements
|
|
97
|
+
------------
|
|
98
|
+
|
|
99
|
+
The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``.
|
|
100
|
+
|
|
101
|
+
========================================== ==================
|
|
102
|
+
PIP package Version required
|
|
103
|
+
========================================== ==================
|
|
104
|
+
``apache-airflow`` ``>=2.11.0``
|
|
105
|
+
``apache-airflow-providers-common-compat`` ``>=1.10.1``
|
|
106
|
+
``requests`` ``>=2.32.0,<3``
|
|
107
|
+
``requests-toolbelt`` ``>=1.0.0``
|
|
108
|
+
``aiohttp`` ``>=3.12.14``
|
|
109
|
+
``asgiref`` ``>=2.3.0``
|
|
110
|
+
========================================== ==================
|
|
111
|
+
|
|
112
|
+
Cross provider package dependencies
|
|
113
|
+
-----------------------------------
|
|
114
|
+
|
|
115
|
+
Those are dependencies that might be needed in order to use all the features of the package.
|
|
116
|
+
You need to install the specified provider distributions in order to use them.
|
|
117
|
+
|
|
118
|
+
You can install such cross-provider dependencies when installing from PyPI. For example:
|
|
119
|
+
|
|
120
|
+
.. code-block:: bash
|
|
121
|
+
|
|
122
|
+
pip install apache-airflow-providers-http[common.compat]
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
================================================================================================================== =================
|
|
126
|
+
Dependent package Extra
|
|
127
|
+
================================================================================================================== =================
|
|
128
|
+
`apache-airflow-providers-common-compat <https://airflow.apache.org/docs/apache-airflow-providers-common-compat>`_ ``common.compat``
|
|
129
|
+
================================================================================================================== =================
|
|
130
|
+
|
|
131
|
+
Downloading official packages
|
|
132
|
+
-----------------------------
|
|
133
|
+
|
|
134
|
+
You can download officially released packages and verify their checksums and signatures from the
|
|
135
|
+
`Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
|
|
136
|
+
|
|
137
|
+
* `The apache-airflow-providers-http 5.6.2 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_http-5.6.2.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_http-5.6.2.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_http-5.6.2.tar.gz.sha512>`__)
|
|
138
|
+
* `The apache-airflow-providers-http 5.6.2 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_http-5.6.2-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_http-5.6.2-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_http-5.6.2-py3-none-any.whl.sha512>`__)
|