Fixed CVE - issue 86 mentioned in opensearch-dsl-py repo (#295)

Signed-off-by: saimedhi <saimedhi@amazon.com>
This commit is contained in:
Sai Medhini Reddy Maryada
2023-02-16 15:10:03 -08:00
committed by GitHub
parent c58375aa7b
commit b26e2f37c1
2 changed files with 3 additions and 1 deletions
+1
View File
@@ -9,6 +9,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
### Fixed
- Fixed SigV4 Signing for Managed Service ([#279](https://github.com/opensearch-project/opensearch-py/pull/279))
- Fixed SigV4 Signing for Async Requests with QueryStrings ([#272](https://github.com/opensearch-project/opensearch-py/pull/279))
- Fixed CVE - issue 86 mentioned in opensearch-dsl-py repo ([#295](https://github.com/opensearch-project/opensearch-py/pull/295))
### Security
## [2.1.0]
+2 -1
View File
@@ -51,7 +51,6 @@ packages = [
]
install_requires = [
"urllib3>=1.21.1, <2",
"certifi",
"requests>=2.4.0, <3.0.0",
"six",
"python-dateutil",
@@ -70,6 +69,8 @@ tests_require = [
]
if sys.version_info >= (3, 6):
tests_require.append("pytest-mock<4.0.0")
install_requires.append("certifi>=2022.12.07")
async_require = ["aiohttp>=3,<4"]
docs_require = ["sphinx", "sphinx_rtd_theme", "myst_parser", "sphinx_copybutton"]