This is an automated email from the ASF dual-hosted git repository.
divijv pushed a commit to branch 3.3
in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/3.3 by this push:
new 018650b3c62 MINOR: Bump requests (python package) from 2.24.0 to
2.31.0 in /tests (#13903)
018650b3c62 is described below
commit 018650b3c629ef2e145144f0092d6fcb0690e747
Author: Manyanda Chitimbo <[email protected]>
AuthorDate: Tue Jun 27 21:17:22 2023 +0200
MINOR: Bump requests (python package) from 2.24.0 to 2.31.0 in /tests
(#13903)
Update "requests" lib used in system tests to version "2.31.0" to fix
CVE-2023-32681: Unintended leak of Proxy-Authorization header in requests
Reviewers: Divij Vaidya <[email protected]>
---
tests/setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/setup.py b/tests/setup.py
index c33a802f05f..a5a077d5f71 100644
--- a/tests/setup.py
+++ b/tests/setup.py
@@ -51,7 +51,7 @@ setup(name="kafkatest",
license="apache2.0",
packages=find_packages(),
include_package_data=True,
- install_requires=["ducktape<0.9", "requests==2.24.0"],
+ install_requires=["ducktape<0.9", "requests==2.31.0"],
tests_require=["pytest", "mock"],
cmdclass={'test': PyTest},
zip_safe=False