Skip to content

Commit

Permalink
Upgraded packages and bumped version to 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Esteban Sánchez committed Jul 14, 2020
1 parent 2fcbe00 commit 1267f36
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

### 2.1.1 (2020-07-14)

- Upgraded dependencies
- `prometheus_client` to 0.8.0
- `psycopg2` to 2.8.5
- `python-json-logger` to 0.1.11

### 2.1.0 (2020-07-10)
- Upgraded PyYAML to 5.3.1 to fix CVE-2017-18342 among others
- [FEATURE] Reload configuration file on SIGHUP. [#21](https://github.com/spreaker/prometheus-pgbouncer-exporter/pull/21) (thanks to [Vineet Joshi](https://github.com/jvineet))
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
psycopg2==2.8.5
prometheus_client==0.0.21
python-json-logger==0.1.5
prometheus_client==0.8.0
python-json-logger==0.1.11
pycodestyle
PyYAML==5.3.1
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@
setup(
name = 'prometheus-pgbouncer-exporter',
packages = ['prometheus_pgbouncer_exporter'],
version = '2.1.0',
version = '2.1.1',
description = 'Prometheus exporter for PgBouncer',
long_description = long_description,
long_description_content_type = "text/markdown",
author = 'Spreaker Developers',
author_email = 'dev@spreaker.com',
url = 'https://github.com/spreaker/prometheus-pgbouncer-exporter',
download_url = 'https://github.com/spreaker/prometheus-pgbouncer-exporter/archive/2.0.1.tar.gz',
download_url = 'https://github.com/spreaker/prometheus-pgbouncer-exporter/archive/2.1.1.tar.gz',
keywords = ['prometheus', 'pgbouncer'],
classifiers = [],
python_requires = ' >= 3',
install_requires = ['psycopg2 == 2.8.5', 'prometheus_client==0.0.21', 'python-json-logger==0.1.5', 'PyYAML==5.3.1'],
install_requires = ['psycopg2 == 2.8.5', 'prometheus_client==0.8.0', 'python-json-logger==0.1.11', 'PyYAML==5.3.1'],
entry_points = {
'console_scripts': [
'pgbouncer-exporter=prometheus_pgbouncer_exporter.cli:main',
Expand Down

0 comments on commit 1267f36

Please sign in to comment.