From 6736f25079b96f38dc542b9da53eccb05837feb4 Mon Sep 17 00:00:00 2001 From: frju365 Date: Thu, 3 Dec 2020 11:59:33 +0100 Subject: [PATCH 1/3] [FIX] New CN for LE. --- src/yunohost/certificate.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/yunohost/certificate.py b/src/yunohost/certificate.py index 2118037d9..cecd0a2ea 100644 --- a/src/yunohost/certificate.py +++ b/src/yunohost/certificate.py @@ -647,6 +647,12 @@ def _get_status(domain): "code": "lets-encrypt", "verbose": "Let's Encrypt", } + + elif cert_issuer == "R3": + CA_type = { + "code": "lets-encrypt", + "verbose": "Let's Encrypt", + } elif cert_issuer.startswith("Fake LE"): CA_type = { From 59018e4e8b116b56fe4741dd46bccb340d508fcd Mon Sep 17 00:00:00 2001 From: frju365 Date: Thu, 3 Dec 2020 12:09:20 +0100 Subject: [PATCH 2/3] [fix] Factorisons... --- src/yunohost/certificate.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/yunohost/certificate.py b/src/yunohost/certificate.py index cecd0a2ea..e7d877abf 100644 --- a/src/yunohost/certificate.py +++ b/src/yunohost/certificate.py @@ -642,13 +642,7 @@ def _get_status(domain): "verbose": "Self-signed", } - elif cert_issuer.startswith("Let's Encrypt"): - CA_type = { - "code": "lets-encrypt", - "verbose": "Let's Encrypt", - } - - elif cert_issuer == "R3": + elif cert_issuer.startswith("Let's Encrypt") or cert_issuer == "R3": CA_type = { "code": "lets-encrypt", "verbose": "Let's Encrypt", From a52b7f0153a174970b63f227320d8c9ed997e87b Mon Sep 17 00:00:00 2001 From: Kay0u Date: Thu, 3 Dec 2020 14:04:53 +0000 Subject: [PATCH 3/3] Update changelog for 4.0.8.3 release --- debian/changelog | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/debian/changelog b/debian/changelog index 846ab8adc..4196e74c8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +yunohost (4.0.8.3) stable; urgency=low + + - [fix] Certificate renewal for LE (#1092) + + Thanks to all contributors <3 ! (frju365) + + -- Kay0u Thu, 03 Dec 2020 14:01:03 +0000 + yunohost (4.0.8.2) stable; urgency=low - [fix] intermediate_certificate is now included in signed certificate (#1067)