Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed vulnerable versions of flask and requests #1207

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions contrib/opencensus-ext-flask/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

- Add exception information to span attributes
([#1188](https://github.com/census-instrumentation/opencensus-python/pull/1188))
- Removed vulnerable versions of flask
([#1207](https://github.com/census-instrumentation/opencensus-python/pull/1207))

## 0.8.1
Released 2022-08-03
Expand Down
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-flask/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
include_package_data=True,
long_description=open('README.rst').read(),
install_requires=[
'flask >= 0.12.3, < 3.0.0, != 1.1.3',
'flask >= 0.12.3, < 3.0.0, != 1.1.3, != 2.2.3, != 2.2.4',
'opencensus >= 0.12.dev0, < 1.0.0',
],
extras_require={},
Expand Down
2 changes: 2 additions & 0 deletions contrib/opencensus-ext-requests/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ Released 2022-08-03
([#1143](https://github.com/census-instrumentation/opencensus-python/pull/1143))
- Add `requests` library as a hard dependency
([#1146](https://github.com/census-instrumentation/opencensus-python/pull/1146))
- Removed vulnerable versions of requests
([#1207](https://github.com/census-instrumentation/opencensus-python/pull/1207))

## 0.7.5
Released 2021-05-13
Expand Down
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-requests/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
include_package_data=True,
long_description=open('README.rst').read(),
install_requires=[
'opencensus >= 0.12.dev0, < 1.0.0',
'opencensus >= 0.12.dev0, < 1.0.0, != 2.28.2, != 2.29.0, != 2.30.0',
'requests >= 2.19.0, < 3.0.0',
'wrapt >= 1.0.0, < 2.0.0',
],
Expand Down