diff options
author | Kai Knoblich <kai@FreeBSD.org> | 2019-11-26 18:37:58 +0000 |
---|---|---|
committer | Kai Knoblich <kai@FreeBSD.org> | 2019-11-26 18:37:58 +0000 |
commit | cd672417a043a2500385dd4ba8557aba03c8eb0b (patch) | |
tree | 205174eafc30fa895eae6bfc8fc23f42d99911c4 /UPDATING | |
parent | 40c1fed29c19c3975c9243aca7d9edf1a5c1c28e (diff) | |
download | ports-cd672417a043a2500385dd4ba8557aba03c8eb0b.tar.gz ports-cd672417a043a2500385dd4ba8557aba03c8eb0b.zip |
Notes
Diffstat (limited to 'UPDATING')
-rw-r--r-- | UPDATING | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -5,6 +5,28 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20191126: + AFFECTS: consumers of net/py-urllib3 + AUTHOR: kai@FreeBSD.org + + Since version 1.25 HTTPS connections are now verified by default which is + done via "cert_reqs = 'CERT_REQUIRED'". While certificate verification + can be disabled via "cert_reqs = 'CERT_NONE'", it's highly recommended to + leave it on. + + Various consumers of net/py-urllib3 already have implemented routines that + either explicitly enable or disable HTTPS certificate verification (e.g. + via configuration settings, CLI arguments, etc.). + + Yet it may happen that there are still some consumers which don't + explicitly enable/disable certificate verification for HTTPS connections + which could then lead to errors (as is often the case with self-signed + certificates). + + In case of an error one should try first to temporarily disable + certificate verification of the problematic urllib3 consumer to see if + this approach will remedy the issue. + 20191125: AFFECTS: users of emulators/qemu AUTHOR: bofh@FreeBSD.org |