From 2fd6708e8fcaf646cc815ba5c916e9ae8f8a688a Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Wed, 16 Sep 2020 14:33:36 -0700 Subject: [PATCH 1/2] Upgrade httplib2. --- tools/dev_constraints.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/dev_constraints.txt b/tools/dev_constraints.txt index 6a0b75051..1d8001727 100644 --- a/tools/dev_constraints.txt +++ b/tools/dev_constraints.txt @@ -39,7 +39,7 @@ future==0.16.0 futures==3.3.0 filelock==3.0.12 google-api-python-client==1.5.5 -httplib2==0.10.3 +httplib2==0.18.1 imagesize==0.7.1 importlib-metadata==0.23 ipdb==0.12.3 From ac5e0174f6f6c9dd0810e36920df5a091546be11 Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Wed, 16 Sep 2020 14:43:46 -0700 Subject: [PATCH 2/2] Add changelog entry. --- certbot/CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/certbot/CHANGELOG.md b/certbot/CHANGELOG.md index a0c8c5818..6b0c2432a 100644 --- a/certbot/CHANGELOG.md +++ b/certbot/CHANGELOG.md @@ -21,6 +21,9 @@ Certbot adheres to [Semantic Versioning](https://semver.org/). In the previous release, Certbot said it required `acme>=1.6.0` when it actually required `acme>=1.8.0` to properly support removing contact information from an ACME account. +* Upgraded the version of httplib2 used in our snaps and Docker images to add + support for proxy environment variables and fix the plugin for Google Cloud + DNS. More details about these changes can be found on our GitHub repo.