Skip to content
This repository was archived by the owner on Jun 16, 2025. It is now read-only.
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