apache-airflow-providers-http 5.2.1rc1__tar.gz → 5.2.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.
Files changed (42) hide show
  1. {apache_airflow_providers_http-5.2.1rc1 → apache_airflow_providers_http-5.2.2rc1}/PKG-INFO +9 -9
  2. {apache_airflow_providers_http-5.2.1rc1 → apache_airflow_providers_http-5.2.2rc1}/README.rst +4 -4
  3. apache_airflow_providers_http-5.2.2rc1/docs/.latest-doc-only-change.txt +1 -0
  4. apache_airflow_providers_http-5.2.2rc1/docs/changelog.rst +686 -0
  5. apache_airflow_providers_http-5.2.2rc1/docs/commits.rst +714 -0
  6. apache_airflow_providers_http-5.2.2rc1/docs/conf.py +27 -0
  7. apache_airflow_providers_http-5.2.2rc1/docs/connections/http.rst +77 -0
  8. apache_airflow_providers_http-5.2.2rc1/docs/index.rst +108 -0
  9. apache_airflow_providers_http-5.2.2rc1/docs/installing-providers-from-sources.rst +18 -0
  10. apache_airflow_providers_http-5.2.2rc1/docs/integration-logos/HTTP.png +0 -0
  11. apache_airflow_providers_http-5.2.2rc1/docs/operators.rst +146 -0
  12. apache_airflow_providers_http-5.2.2rc1/docs/security.rst +18 -0
  13. apache_airflow_providers_http-5.2.2rc1/provider.yaml +98 -0
  14. {apache_airflow_providers_http-5.2.1rc1 → apache_airflow_providers_http-5.2.2rc1}/pyproject.toml +22 -7
  15. apache_airflow_providers_http-5.2.2rc1/src/airflow/__init__.py +17 -0
  16. apache_airflow_providers_http-5.2.2rc1/src/airflow/providers/__init__.py +17 -0
  17. {apache_airflow_providers_http-5.2.1rc1 → apache_airflow_providers_http-5.2.2rc1}/src/airflow/providers/http/__init__.py +1 -1
  18. {apache_airflow_providers_http-5.2.1rc1 → apache_airflow_providers_http-5.2.2rc1}/src/airflow/providers/http/get_provider_info.py +0 -51
  19. {apache_airflow_providers_http-5.2.1rc1 → apache_airflow_providers_http-5.2.2rc1}/src/airflow/providers/http/hooks/http.py +3 -3
  20. {apache_airflow_providers_http-5.2.1rc1 → apache_airflow_providers_http-5.2.2rc1}/src/airflow/providers/http/operators/http.py +1 -2
  21. {apache_airflow_providers_http-5.2.1rc1 → apache_airflow_providers_http-5.2.2rc1}/src/airflow/providers/http/sensors/http.py +1 -1
  22. apache_airflow_providers_http-5.2.2rc1/tests/conftest.py +19 -0
  23. apache_airflow_providers_http-5.2.2rc1/tests/system/__init__.py +17 -0
  24. apache_airflow_providers_http-5.2.2rc1/tests/system/http/__init__.py +16 -0
  25. apache_airflow_providers_http-5.2.2rc1/tests/system/http/example_http.py +163 -0
  26. apache_airflow_providers_http-5.2.2rc1/tests/unit/__init__.py +17 -0
  27. apache_airflow_providers_http-5.2.2rc1/tests/unit/http/__init__.py +17 -0
  28. apache_airflow_providers_http-5.2.2rc1/tests/unit/http/hooks/__init__.py +17 -0
  29. apache_airflow_providers_http-5.2.2rc1/tests/unit/http/hooks/test_http.py +835 -0
  30. apache_airflow_providers_http-5.2.2rc1/tests/unit/http/operators/__init__.py +17 -0
  31. apache_airflow_providers_http-5.2.2rc1/tests/unit/http/operators/test_http.py +301 -0
  32. apache_airflow_providers_http-5.2.2rc1/tests/unit/http/sensors/__init__.py +17 -0
  33. apache_airflow_providers_http-5.2.2rc1/tests/unit/http/sensors/test_http.py +403 -0
  34. apache_airflow_providers_http-5.2.2rc1/tests/unit/http/triggers/__init__.py +17 -0
  35. apache_airflow_providers_http-5.2.2rc1/tests/unit/http/triggers/test_http.py +186 -0
  36. {apache_airflow_providers_http-5.2.1rc1 → apache_airflow_providers_http-5.2.2rc1}/src/airflow/providers/http/LICENSE +0 -0
  37. {apache_airflow_providers_http-5.2.1rc1 → apache_airflow_providers_http-5.2.2rc1}/src/airflow/providers/http/exceptions.py +0 -0
  38. {apache_airflow_providers_http-5.2.1rc1 → apache_airflow_providers_http-5.2.2rc1}/src/airflow/providers/http/hooks/__init__.py +0 -0
  39. {apache_airflow_providers_http-5.2.1rc1 → apache_airflow_providers_http-5.2.2rc1}/src/airflow/providers/http/operators/__init__.py +0 -0
  40. {apache_airflow_providers_http-5.2.1rc1 → apache_airflow_providers_http-5.2.2rc1}/src/airflow/providers/http/sensors/__init__.py +0 -0
  41. {apache_airflow_providers_http-5.2.1rc1 → apache_airflow_providers_http-5.2.2rc1}/src/airflow/providers/http/triggers/__init__.py +0 -0
  42. {apache_airflow_providers_http-5.2.1rc1 → apache_airflow_providers_http-5.2.2rc1}/src/airflow/providers/http/triggers/http.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: apache-airflow-providers-http
3
- Version: 5.2.1rc1
3
+ Version: 5.2.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>
@@ -21,16 +21,16 @@ Classifier: Programming Language :: Python :: 3.11
21
21
  Classifier: Programming Language :: Python :: 3.12
22
22
  Classifier: Topic :: System :: Monitoring
23
23
  Requires-Dist: apache-airflow>=2.9.0rc0
24
- Requires-Dist: requests>=2.27.0,<3
24
+ Requires-Dist: requests>=2.31.0,<3
25
25
  Requires-Dist: requests-toolbelt>=1.0.0
26
26
  Requires-Dist: aiohttp>=3.9.2,!=3.11.0
27
27
  Requires-Dist: asgiref>=2.3.0
28
28
  Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
29
- Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-http/5.2.1/changelog.html
30
- Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-http/5.2.1
29
+ Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-http/5.2.2/changelog.html
30
+ Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-http/5.2.2
31
+ Project-URL: Mastodon, https://fosstodon.org/@airflow
31
32
  Project-URL: Slack Chat, https://s.apache.org/airflow-slack
32
33
  Project-URL: Source Code, https://github.com/apache/airflow
33
- Project-URL: Twitter, https://x.com/ApacheAirflow
34
34
  Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
35
35
 
36
36
 
@@ -58,7 +58,7 @@ Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
58
58
 
59
59
  Package ``apache-airflow-providers-http``
60
60
 
61
- Release: ``5.2.1``
61
+ Release: ``5.2.2``
62
62
 
63
63
 
64
64
  `Hypertext Transfer Protocol (HTTP) <https://www.w3.org/Protocols/>`__
@@ -71,7 +71,7 @@ This is a provider package for ``http`` provider. All classes for this provider
71
71
  are in ``airflow.providers.http`` python package.
72
72
 
73
73
  You can find package information and changelog for the provider
74
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-http/5.2.1/>`_.
74
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-http/5.2.2/>`_.
75
75
 
76
76
  Installation
77
77
  ------------
@@ -89,12 +89,12 @@ Requirements
89
89
  PIP package Version required
90
90
  ===================== ====================
91
91
  ``apache-airflow`` ``>=2.9.0``
92
- ``requests`` ``>=2.27.0,<3``
92
+ ``requests`` ``>=2.31.0,<3``
93
93
  ``requests-toolbelt`` ``>=1.0.0``
94
94
  ``aiohttp`` ``!=3.11.0,>=3.9.2``
95
95
  ``asgiref`` ``>=2.3.0``
96
96
  ===================== ====================
97
97
 
98
98
  The changelog for the provider package can be found in the
99
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-http/5.2.1/changelog.html>`_.
99
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-http/5.2.2/changelog.html>`_.
100
100
 
@@ -23,7 +23,7 @@
23
23
 
24
24
  Package ``apache-airflow-providers-http``
25
25
 
26
- Release: ``5.2.1``
26
+ Release: ``5.2.2``
27
27
 
28
28
 
29
29
  `Hypertext Transfer Protocol (HTTP) <https://www.w3.org/Protocols/>`__
@@ -36,7 +36,7 @@ This is a provider package for ``http`` provider. All classes for this provider
36
36
  are in ``airflow.providers.http`` 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-http/5.2.1/>`_.
39
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-http/5.2.2/>`_.
40
40
 
41
41
  Installation
42
42
  ------------
@@ -54,11 +54,11 @@ Requirements
54
54
  PIP package Version required
55
55
  ===================== ====================
56
56
  ``apache-airflow`` ``>=2.9.0``
57
- ``requests`` ``>=2.27.0,<3``
57
+ ``requests`` ``>=2.31.0,<3``
58
58
  ``requests-toolbelt`` ``>=1.0.0``
59
59
  ``aiohttp`` ``!=3.11.0,>=3.9.2``
60
60
  ``asgiref`` ``>=2.3.0``
61
61
  ===================== ====================
62
62
 
63
63
  The changelog for the provider package can be found in the
64
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-http/5.2.1/changelog.html>`_.
64
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-http/5.2.2/changelog.html>`_.
@@ -0,0 +1 @@
1
+ 7b2ec33c7ad4998d9c9735b79593fcdcd3b9dd1f