Skip to content

Commit fbd4c0b

Browse files
Released 2.2.1
1 parent 739c924 commit fbd4c0b

File tree

11 files changed

+23
-10
lines changed

11 files changed

+23
-10
lines changed

docs/changelog.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,18 @@ Please make sure you have a fresh **database backup** before upgrading! Upgradin
1515
----
1616

1717

18+
v2.2.1 - 2019-07-03
19+
^^^^^^^^^^^^^^^^^^^
20+
21+
**Tickets resolved in this release:**
22+
23+
- [`#665 <https://github.com/dennissiemensma/dsmr-reader/issues/665>`_] Django security releases issued: 2.2.3
24+
- [`#660 <https://github.com/dennissiemensma/dsmr-reader/issues/660>`_] Add a timeout to the datalogger web request - by Helmo
25+
26+
27+
----
28+
29+
1830
v2.2.0 - 2019-06-14
1931
^^^^^^^^^^^^^^^^^^^
2032

docs/locale/nl/LC_MESSAGES/api.mo

40 Bytes
Binary file not shown.
40 Bytes
Binary file not shown.
40 Bytes
Binary file not shown.

dsmr_datalogger/scripts/dsmr_datalogger_api_client.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ def send_telegram(telegram, api_url, api_key):
9797
api_url,
9898
headers={'X-AUTHKEY': api_key},
9999
data={'telegram': telegram},
100+
timeout=60,
100101
)
101102

102103
# Old versions of DSMR-reader return 200, new ones 201.

dsmrreader/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
"""
1717
from django.utils.version import get_version
1818

19-
VERSION = (2, 2, 0, 'final', 0)
19+
VERSION = (2, 2, 1, 'final', 0)
2020

2121
__version__ = get_version(VERSION)

dsmrreader/provisioning/requirements/base.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
crcmod==1.7
22
coreapi==2.3.3
3-
django==2.2.2
3+
django==2.2.3
44
django-colorfield==0.1.15
5-
django-debug-toolbar==1.11
5+
django-debug-toolbar==2.0
66
django-filter==2.1.0
77
djangorestframework==3.9.4
88
django-solo==1.1.3
9-
dropbox==9.3.0
9+
dropbox==9.4.0
1010
gunicorn==19.9.0
1111
paho-mqtt==1.3.1
1212
pyserial==3.4
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pylama==7.7.1
2-
sphinx==2.1.1
2+
sphinx==2.1.2
33
sphinx-autobuild==0.7.1
44
sphinx-intl==2.0.0
55
sphinx-rtd-theme==0.4.3
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
psycopg2==2.8.2
2-
psycopg2-binary==2.8.2
1+
psycopg2==2.8.3
2+
psycopg2-binary==2.8.3
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
polib==1.1.0
22
pytest-cov==2.7.1
3-
pytest-django==3.5.0
4-
pytest-xdist==1.28.0
3+
pytest-django==3.5.1
4+
pytest-xdist==1.29.0

0 commit comments

Comments
 (0)