From 52f4867f6e1407fc5a83e52499b777b682f422b9 Mon Sep 17 00:00:00 2001 From: Chris Date: Wed, 27 Feb 2019 13:43:28 +0100 Subject: [PATCH 1/3] Update dependencies because of vulnerabilities in them, stapled is not affected though. --- requirements.txt | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/requirements.txt b/requirements.txt index e28467e..542e43e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,35 +1,35 @@ # Project deps -ConfigArgParse==0.13.0 +ConfigArgParse==0.14.0 future==0.17.1 -cffi==1.11.5 +cffi==1.12.2 ## python-daemon deps lockfile==0.12.2 docutils==0.14 -python-daemon==2.2.0 +python-daemon==2.2.3 # Packaging and distribution -twine==1.12.1 -tqdm==4.28.1 -idna==2.7 -certifi==2018.10.15 +twine==1.13.0 +tqdm==4.31.1 +idna==2.8 +certifi==2018.11.29 chardet==3.0.4 -pkginfo==1.4.2 -requests==2.20.1 -requests-toolbelt==0.8.0 +pkginfo==1.5.0.1 +requests==2.21.0 +requests-toolbelt==0.9.1 urllib3==1.24.1 stdeb==0.8.5 -wheel==0.32.3 +wheel==0.33.1 # Docs -Sphinx==1.8.2 +Sphinx==1.8.4 sphinx-argparse==0.2.5 -sphinx-rtd-theme==0.4.2 +sphinx-rtd-theme==0.4.3 # Linting pydocstyle==3.0.0 -pycodestyle==2.4.0 -pylint==2.2.2 +pycodestyle==2.5.0 +pylint==2.3.0 # Testing -pytest==4.0.1 +pytest==4.3.0 -- GitLab From fb7ce1c1a6ea4d853c2fb64b61346ce78e96bbb0 Mon Sep 17 00:00:00 2001 From: Chris Date: Wed, 27 Feb 2019 13:49:29 +0100 Subject: [PATCH 2/3] Update version number and add changelog. --- debian/changelog | 15 +++++++++++++++ stapled/version.py | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 2e16b71..5ffd2d8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,18 @@ +stapled (1.2) stretch; urgency=low + + * Updated dependencies with vulnerabilities, not afftecting stapled. + * Added the --one-off argument that allows running stapled in one-off mode + which is a mode that runs staple fetching for all certificates as usual, + including threading, but stops threads once they are finished with their + queues and then quits. + * Reduced minimum time to live setting for keeping HAProxy sockets open to 10 + seconds. + * Reduced default time to live setting for keeping HAProxy sockets open to 10 + seconds. This should still be more then enough for all expected conditions + stapled could run under. + + -- Chris Wed, 27 Feb 2019 13:43:58 +0100 + stapled (1.1) stretch; urgency=low * Change haproxy socket connection keep-alive (formerly "timeout") to new diff --git a/stapled/version.py b/stapled/version.py index d432343..3864fe9 100644 --- a/stapled/version.py +++ b/stapled/version.py @@ -1,3 +1,3 @@ -__version__ = '1.1' +__version__ = '1.2' __app_name__ = 'stapled' __debian_version__ = 'stretch' -- GitLab From b215a76036c2ed3f6a2302365339839a3ef4cb8d Mon Sep 17 00:00:00 2001 From: Maarten de Waard Date: Wed, 27 Feb 2019 16:10:55 +0000 Subject: [PATCH 3/3] fix spelling in changelog --- debian/changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 5ffd2d8..5e2061b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,6 @@ stapled (1.2) stretch; urgency=low - * Updated dependencies with vulnerabilities, not afftecting stapled. + * Updated dependencies with vulnerabilities, not affecting stapled. * Added the --one-off argument that allows running stapled in one-off mode which is a mode that runs staple fetching for all certificates as usual, including threading, but stops threads once they are finished with their -- GitLab