vcswatch reports that
this package seems to have a new changelog entry (version
0.15-1, distribution
unstable) and new commits
in its VCS. You should consider whether it's time to make
an upload.
Here are the relevant commit messages:
commit 27288897cddde14b00c92171bf56d2bcba847ff0
Author: Alberto Bertogli <albertito@blitiri.com.ar>
Date: Mon Sep 28 20:53:22 2020 +0100
Update changelog for 0.15-1 release
commit 35fef88abeb3baf30bd1406f4257a1b9a5c2ebe2
Author: Alberto Bertogli <albertito@blitiri.com.ar>
Date: Mon Sep 28 20:36:08 2020 +0100
Update standards version 4.4.1 -> 4.5.0
commit 0966e52fe6ec4d182853fbf92ef28b5f6e29a012
Author: Alberto Bertogli <albertito@blitiri.com.ar>
Date: Mon Sep 28 20:35:19 2020 +0100
Update debhelper compat 12 -> 13
commit 961c940fb654d2c863dde9c892d1042132900f36
Author: Alberto Bertogli <albertito@blitiri.com.ar>
Date: Mon Sep 28 20:00:34 2020 +0100
Add new "kxgencert" binary
Instead of using openssl, kxd/kxc helper scripts now use a new
"kxgencert" binary for convenience.
commit 7478b4506bc311251a03a9ed759e3b272e06c3bf
Author: Alberto Bertogli <albertito@blitiri.com.ar>
Date: Mon Sep 28 19:58:24 2020 +0100
Remove openssl build-dep (no longer needed)
commit 8be167e46606142d945b63cda87a6f441056073e
Author: Alberto Bertogli <albertito@blitiri.com.ar>
Date: Mon Sep 28 19:57:34 2020 +0100
Remove patch (included in the new release)
commit 330371ae5e59ef0fcf0c0f188df655db5ac46b10
Author: Alberto Bertogli <albertito@blitiri.com.ar>
Date: Mon Sep 28 19:56:11 2020 +0100
New upstream release (0.15)
commit a7ef9e14b9e507d37f680d11ee4e724a9093a0f7
Merge: a97442a c0e5b3d
Author: Alberto Bertogli <albertito@blitiri.com.ar>
Date: Mon Sep 28 19:54:18 2020 +0100
Merge tag 'upstream/0.15' into master
commit c0e5b3d86e3e8c1afec74d0bc736e09243a5eaea
Merge: 113d01c 7403299
Author: Alberto Bertogli <albertito@blitiri.com.ar>
Date: Mon Sep 28 19:53:36 2020 +0100
Merge tag '0.15' into upstream
kxd 0.15
commit 7403299c253f847a5ea194cda2fe1bfdb170137f
Author: Alberto Bertogli <albertito@blitiri.com.ar>
Date: Fri Aug 21 02:57:25 2020 +0100
tests: Use black to auto-format test code
This patch uses the `black` utility to auto-format the test code, for
increased consistency.
commit 51986345eb9197dd52a479336c8bc44388709cd4
Author: Alberto Bertogli <albertito@blitiri.com.ar>
Date: Fri Aug 21 02:46:14 2020 +0100
Use our own tool to generate certificates
This patch introduces an kxgencert tool that can be used to generate
self-signed certificates.
All scripts and tests are adjusted to use it, removing the dependency on
openssl for certificate manipulation.
Unfortunately, the CA tests are removed, although the functionality
continues to be transparently supported.
The main reason is that the way we were generating the self-signed
certificates is not compatible with Go >= 1.15, since the usage of the
CommonName field is deprecated:
https://golang.org/doc/go1.15#commonname.
Because of that, also most clients built with Go 1.15 will no longer
talk to servers with old certificates. This can be worked around by
setting the GODEBUG=x509ignoreCN=0 environment variable.
commit 2ec7193cf143884db2f7a7017424284d329afbf6
Author: Alberto Bertogli <albertito@blitiri.com.ar>
Date: Sun Mar 29 11:43:50 2020 +0100
travis: Test on Ubuntu 18.04 (bionic)
Travis CI's default tests run on Ubuntu 16.04 (xenial), which is quite
old, and can produce results that are not very representative.
This patch makes the test run on Ubuntu 18.04 (bionic) which is the
latest one available.
commit 673ecd238f3bc5c06a427436de4a696676c919bc
Author: Alberto Bertogli <albertito@blitiri.com.ar>
Date: Sun Mar 29 11:40:46 2020 +0100
tests: Add missing conn.getresponse() which was causing false negatives
Somewhere around Python 3.8, http.client.HTTPConnection objects changed
how result handling was done, and ignored SSL errors until
.getresponse() was called.
This causes the test_no_local_cert to fail, even though the server is
responding correctly.
This patch fixes this by adding a .getresponse() call, which forces
validation of the result and makes the test pass again.