apache-airflow-providers-http 5.3.1rc1__tar.gz → 5.6.0__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.0/NOTICE +5 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/PKG-INFO +56 -22
- apache_airflow_providers_http-5.6.0/README.rst +93 -0
- apache_airflow_providers_http-5.6.0/docs/.latest-doc-only-change.txt +1 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/docs/changelog.rst +127 -6
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/docs/connections/http.rst +1 -1
- apache_airflow_providers_http-5.6.0/docs/index.rst +138 -0
- apache_airflow_providers_http-5.6.0/docs/triggers.rst +148 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/provider.yaml +10 -1
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/pyproject.toml +19 -10
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/src/airflow/__init__.py +1 -1
- {apache_airflow_providers_http-5.3.1rc1/tests/system → apache_airflow_providers_http-5.6.0/src/airflow/providers}/__init__.py +1 -1
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/src/airflow/providers/http/__init__.py +3 -3
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/src/airflow/providers/http/get_provider_info.py +1 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/src/airflow/providers/http/hooks/http.py +101 -61
- apache_airflow_providers_http-5.6.0/src/airflow/providers/http/notifications/__init__.py +21 -0
- apache_airflow_providers_http-5.6.0/src/airflow/providers/http/notifications/http.py +105 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/src/airflow/providers/http/operators/http.py +29 -8
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/src/airflow/providers/http/sensors/http.py +10 -4
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/src/airflow/providers/http/triggers/http.py +137 -18
- apache_airflow_providers_http-5.6.0/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.0/tests/system}/__init__.py +1 -1
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/tests/unit/__init__.py +1 -1
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/tests/unit/http/hooks/test_http.py +378 -337
- apache_airflow_providers_http-5.6.0/tests/unit/http/notifications/__init__.py +16 -0
- apache_airflow_providers_http-5.6.0/tests/unit/http/notifications/test_http.py +95 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/tests/unit/http/operators/test_http.py +73 -3
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/tests/unit/http/sensors/test_http.py +17 -13
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/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.0}/LICENSE +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/docs/commits.rst +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/docs/conf.py +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/docs/installing-providers-from-sources.rst +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/docs/integration-logos/HTTP.png +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/docs/operators.rst +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/docs/security.rst +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/src/airflow/providers/http/exceptions.py +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/src/airflow/providers/http/hooks/__init__.py +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/src/airflow/providers/http/operators/__init__.py +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/src/airflow/providers/http/sensors/__init__.py +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/src/airflow/providers/http/triggers/__init__.py +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/tests/conftest.py +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/tests/system/http/__init__.py +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/tests/system/http/example_http.py +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/tests/unit/http/__init__.py +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/tests/unit/http/hooks/__init__.py +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/tests/unit/http/operators/__init__.py +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/tests/unit/http/sensors/__init__.py +0 -0
- {apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/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.0
|
|
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.0
|
|
26
|
+
Requires-Dist: apache-airflow-providers-common-compat>=1.8.0
|
|
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.
|
|
30
|
-
Project-URL: Documentation, https://airflow.
|
|
33
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-http/5.6.0/changelog.html
|
|
34
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-http/5.6.0
|
|
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.0``
|
|
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.0/>`_.
|
|
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.8.0``
|
|
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.0/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.0``
|
|
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.0/>`_.
|
|
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.8.0``
|
|
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.0/changelog.html>`_.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
bcc64a255e488e74db034e9b7e46a002b1c0f8cd
|
{apache_airflow_providers_http-5.3.1rc1 → apache_airflow_providers_http-5.6.0}/docs/changelog.rst
RENAMED
|
@@ -27,6 +27,129 @@
|
|
|
27
27
|
Changelog
|
|
28
28
|
---------
|
|
29
29
|
|
|
30
|
+
5.6.0
|
|
31
|
+
.....
|
|
32
|
+
|
|
33
|
+
.. note::
|
|
34
|
+
This release of provider is only available for Airflow 2.11+ as explained in the
|
|
35
|
+
Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>_.
|
|
36
|
+
|
|
37
|
+
Misc
|
|
38
|
+
~~~~
|
|
39
|
+
|
|
40
|
+
* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)``
|
|
41
|
+
|
|
42
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
43
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
44
|
+
* ``Updates to release process of providers (#58316)``
|
|
45
|
+
|
|
46
|
+
5.5.0
|
|
47
|
+
.....
|
|
48
|
+
|
|
49
|
+
Features
|
|
50
|
+
~~~~~~~~
|
|
51
|
+
|
|
52
|
+
* ``HTTP Notifier implementation (#56160)``
|
|
53
|
+
* ``Add poll_interval attribute to HttpEventTrigger (#57583)``
|
|
54
|
+
|
|
55
|
+
Misc
|
|
56
|
+
~~~~
|
|
57
|
+
|
|
58
|
+
* ``Convert all airflow distributions to be compliant with ASF requirements (#58138)``
|
|
59
|
+
* ``Migrate 'http' provider to 'common.compat' (#57089)``
|
|
60
|
+
|
|
61
|
+
Doc-only
|
|
62
|
+
~~~~~~~~
|
|
63
|
+
|
|
64
|
+
* ``[Doc] Fixing some typos and spelling errors (#57225)``
|
|
65
|
+
* ``Fixing some typos and spelling errors (#57186)``
|
|
66
|
+
|
|
67
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
68
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
69
|
+
* ``Delete all unnecessary LICENSE Files (#58191)``
|
|
70
|
+
* ``Enable PT006 rule to http Provider test (#57917)``
|
|
71
|
+
|
|
72
|
+
5.4.0
|
|
73
|
+
.....
|
|
74
|
+
|
|
75
|
+
Features
|
|
76
|
+
~~~~~~~~
|
|
77
|
+
|
|
78
|
+
* ``Create HttpEventTrigger for AssetWatcher library (#51253)``
|
|
79
|
+
|
|
80
|
+
Doc-only
|
|
81
|
+
~~~~~~~~
|
|
82
|
+
|
|
83
|
+
* ``Remove placeholder Release Date in changelog and index files (#56056)``
|
|
84
|
+
|
|
85
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
86
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
87
|
+
|
|
88
|
+
5.3.4
|
|
89
|
+
.....
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
Bug Fixes
|
|
93
|
+
~~~~~~~~~
|
|
94
|
+
|
|
95
|
+
* ``fix(http): Fix HttpHook.url_from_endpoint() lazy initialization (#54202)``
|
|
96
|
+
|
|
97
|
+
Doc-only
|
|
98
|
+
~~~~~~~~
|
|
99
|
+
|
|
100
|
+
* ``Make term Dag consistent in providers docs (#55101)``
|
|
101
|
+
|
|
102
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
103
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
104
|
+
* ``Switch pre-commit to prek (#54258)``
|
|
105
|
+
* ``Prepare release for Aug 2025 1st wave of providers (#54193)``
|
|
106
|
+
* ``Conn docs extra fix (#53942)``
|
|
107
|
+
* ``Fix Airflow 2 reference in README/index of providers (#55240)``
|
|
108
|
+
|
|
109
|
+
5.3.3
|
|
110
|
+
.....
|
|
111
|
+
|
|
112
|
+
Misc
|
|
113
|
+
~~~~
|
|
114
|
+
|
|
115
|
+
* ``Cleanup type ignores (#53294)``
|
|
116
|
+
* ``Remove type ignore across codebase after mypy upgrade (#53243)``
|
|
117
|
+
* ``Make http provider compatible with mypy 1.16.1 (#53108)``
|
|
118
|
+
* ``Remove upper-binding for "python-requires" (#52980)``
|
|
119
|
+
* ``Temporarily switch to use >=,< pattern instead of '~=' (#52967)``
|
|
120
|
+
* ``Move all BaseHook usages to version_compat in HTTP (#52814)``
|
|
121
|
+
* ``Add Python 3.13 support for Airflow. (#46891)``
|
|
122
|
+
* ``Bump aiohttp to 3.12.14 (#53830)``
|
|
123
|
+
|
|
124
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
125
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
126
|
+
* ``Resolve timeout in ''HttpSensor'' test by fixing template rendering (#53676)``
|
|
127
|
+
|
|
128
|
+
5.3.2
|
|
129
|
+
.....
|
|
130
|
+
|
|
131
|
+
Bug Fixes
|
|
132
|
+
~~~~~~~~~
|
|
133
|
+
|
|
134
|
+
* ``Ensure 'HttpHook.run()' does not alter 'extra_options' passed to it (#51893)``
|
|
135
|
+
* ``Fix HttpOperator(deferrable=True) crash when connection has login / password (#52050)``
|
|
136
|
+
* ``Enable extra_options even when extra not defined for HttpHook.run (#51746)``
|
|
137
|
+
|
|
138
|
+
Misc
|
|
139
|
+
~~~~
|
|
140
|
+
|
|
141
|
+
* ``Move 'BaseHook' implementation to task SDK (#51873)``
|
|
142
|
+
* ``Provider Migration: Replace 'BaseOperator' to Task SDK for 'apache/http' (#52528)``
|
|
143
|
+
* ``Drop support for Python 3.9 (#52072)``
|
|
144
|
+
* ``Use BaseSensorOperator from task sdk in providers (#52296)``
|
|
145
|
+
* ``Add deprecation to 'airflow/sensors/base.py' (#52249)``
|
|
146
|
+
|
|
147
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
148
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
149
|
+
* ``Revert "Replace models.BaseOperator to Task SDK for http (#52506)" (#52515)``
|
|
150
|
+
* ``Replace models.BaseOperator to Task SDK for http (#52506)``
|
|
151
|
+
* ``Remove db usage from http provider tests (#52227)``
|
|
152
|
+
|
|
30
153
|
5.3.1
|
|
31
154
|
.....
|
|
32
155
|
|
|
@@ -168,8 +291,6 @@ Misc
|
|
|
168
291
|
appropriate section above if needed. Do not delete the lines(!):
|
|
169
292
|
* ``Correct new changelog breaking changes header (#44659)``
|
|
170
293
|
* ``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
294
|
* ``Update path of example dags in docs (#45069)``
|
|
174
295
|
|
|
175
296
|
4.13.3
|
|
@@ -201,7 +322,7 @@ Bug Fixes
|
|
|
201
322
|
Misc
|
|
202
323
|
~~~~
|
|
203
324
|
|
|
204
|
-
* ``add
|
|
325
|
+
* ``add lower bound to requests-toolbelt and replace requests_toolbelt with requests-toolbelt (#43020)``
|
|
205
326
|
* ``Set lower bound to asgiref>=2.3.0 (#43001)``
|
|
206
327
|
|
|
207
328
|
|
|
@@ -500,7 +621,7 @@ Misc
|
|
|
500
621
|
Features
|
|
501
622
|
~~~~~~~~
|
|
502
623
|
|
|
503
|
-
* ``Add non login-password auth support for
|
|
624
|
+
* ``Add non login-password auth support for SimpleHttpOperator (#29206)``
|
|
504
625
|
|
|
505
626
|
4.2.0
|
|
506
627
|
.....
|
|
@@ -682,13 +803,13 @@ Features
|
|
|
682
803
|
|
|
683
804
|
.. Below changes are excluded from the changelog. Move them to
|
|
684
805
|
appropriate section above if needed. Do not delete the lines(!):
|
|
685
|
-
* ``Check
|
|
806
|
+
* ``Check syntactic correctness for code-snippets (#16005)``
|
|
686
807
|
* ``Prepares provider release after PIP 21 compatibility (#15576)``
|
|
687
808
|
* ``Remove Backport Providers (#14886)``
|
|
688
809
|
* ``Updated documentation for June 2021 provider release (#16294)``
|
|
689
810
|
* ``Add documentation for the HTTP connection (#15379)``
|
|
690
811
|
* ``More documentation update for June providers release (#16405)``
|
|
691
|
-
* ``Synchronizes updated changelog after
|
|
812
|
+
* ``Synchronizes updated changelog after bugfix release (#16464)``
|
|
692
813
|
|
|
693
814
|
1.1.1
|
|
694
815
|
.....
|
|
@@ -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.0
|
|
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.8.0``
|
|
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.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_http-5.6.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_http-5.6.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_http-5.6.0.tar.gz.sha512>`__)
|
|
138
|
+
* `The apache-airflow-providers-http 5.6.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_http-5.6.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_http-5.6.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_http-5.6.0-py3-none-any.whl.sha512>`__)
|