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

[Snyk] Security upgrade zipp from 3.15.0 to 3.19.1 #178

Merged
merged 3 commits into from
Jul 11, 2024
Merged
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: 1 addition & 1 deletion .github/workflows/test-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- testname: uwsgi
- testname: uwsgi-lazy-apps
- testname: wsgi
- testname: connexion-pydantic
# - testname: connexion-pydantic
- testname: restful-with-blueprints
- testname: restful-return-none
- testname: restplus-default-metrics
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ or paste it into requirements.txt:
prometheus-flask-exporter

# or with specific version number
prometheus-flask-exporter==0.23.0
prometheus-flask-exporter==0.23.1
```
and then install dependencies from requirements.txt file as usual:
```
Expand Down
2 changes: 2 additions & 0 deletions examples/connexion-pydantic/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Connexion with pydantic

This is a test case for [issue #61](https://github.com/rycus86/prometheus_flask_exporter/issues/61)

**This test is currently not running on CI as newer Connexion versions need different setup somehow**
2 changes: 1 addition & 1 deletion prometheus_flask_exporter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1024,4 +1024,4 @@ def _make_response(response):
return _make_response


__version__ = '0.23.0'
__version__ = '0.23.1'
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
flask
prometheus_client
werkzeug>=3.0.1 # not directly required, pinned by Snyk to avoid a vulnerability
zipp>=3.19.1 # not directly required, pinned by Snyk to avoid a vulnerability
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
setup(
name='prometheus_flask_exporter',
packages=['prometheus_flask_exporter'],
version='0.23.0',
version='0.23.1',
description='Prometheus metrics exporter for Flask',
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT',
author='Viktor Adam',
author_email='[email protected]',
url='https://github.com/rycus86/prometheus_flask_exporter',
download_url='https://github.com/rycus86/prometheus_flask_exporter/archive/0.23.0.tar.gz',
download_url='https://github.com/rycus86/prometheus_flask_exporter/archive/0.23.1.tar.gz',
keywords=['prometheus', 'flask', 'monitoring', 'exporter'],
classifiers=[
'Development Status :: 4 - Beta',
Expand Down
Loading