Fixed CVE - issue 86 mentioned in opensearch-dsl-py repo (#295)
Signed-off-by: saimedhi <[email protected]>
This commit is contained in:
@@ -9,6 +9,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
|||||||
### Fixed
|
### Fixed
|
||||||
- Fixed SigV4 Signing for Managed Service ([#279](https://github.com/opensearch-project/opensearch-py/pull/279))
|
- 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 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
|
### Security
|
||||||
|
|
||||||
## [2.1.0]
|
## [2.1.0]
|
||||||
|
|||||||
@@ -51,7 +51,6 @@ packages = [
|
|||||||
]
|
]
|
||||||
install_requires = [
|
install_requires = [
|
||||||
"urllib3>=1.21.1, <2",
|
"urllib3>=1.21.1, <2",
|
||||||
"certifi",
|
|
||||||
"requests>=2.4.0, <3.0.0",
|
"requests>=2.4.0, <3.0.0",
|
||||||
"six",
|
"six",
|
||||||
"python-dateutil",
|
"python-dateutil",
|
||||||
@@ -70,6 +69,8 @@ tests_require = [
|
|||||||
]
|
]
|
||||||
if sys.version_info >= (3, 6):
|
if sys.version_info >= (3, 6):
|
||||||
tests_require.append("pytest-mock<4.0.0")
|
tests_require.append("pytest-mock<4.0.0")
|
||||||
|
install_requires.append("certifi>=2022.12.07")
|
||||||
|
|
||||||
async_require = ["aiohttp>=3,<4"]
|
async_require = ["aiohttp>=3,<4"]
|
||||||
|
|
||||||
docs_require = ["sphinx", "sphinx_rtd_theme", "myst_parser", "sphinx_copybutton"]
|
docs_require = ["sphinx", "sphinx_rtd_theme", "myst_parser", "sphinx_copybutton"]
|
||||||
|
|||||||
Reference in New Issue
Block a user