From c5233a1e747fcf66a2031421a5646cefbff60c92 Mon Sep 17 00:00:00 2001 From: popony <38776021+popony@users.noreply.github.com> Date: Fri, 27 Apr 2018 01:25:39 -0400 Subject: [PATCH 1/2] Update AcmeHttpClient.cs --- src/Certes/Acme/AcmeHttpClient.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Certes/Acme/AcmeHttpClient.cs b/src/Certes/Acme/AcmeHttpClient.cs index 68fb3e26..1efcad86 100644 --- a/src/Certes/Acme/AcmeHttpClient.cs +++ b/src/Certes/Acme/AcmeHttpClient.cs @@ -15,7 +15,7 @@ namespace Certes.Acme /// HTTP client handling ACME operations. /// /// - internal class AcmeHttpClient : IAcmeHttpClient + public class AcmeHttpClient : IAcmeHttpClient { private const string MimeJoseJson = "application/jose+json"; From 07b5c0ebe2d48f4156d3ba8fc09c39d63e257496 Mon Sep 17 00:00:00 2001 From: Eddie Lin <5827855+fszlin@users.noreply.github.com> Date: Fri, 27 Apr 2018 12:56:55 -0400 Subject: [PATCH 2/2] +doc --- docs/CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index d1352451..1ba37a53 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -4,6 +4,7 @@ All notable changes to this project will be documented in this file. ## [Unreleased] ### Added - Export full chain certification in PEM ([#87][i87]) +- Support custom `HttpClient` ([#95][i95]) ### Changed - Encapsulating ACME errors in exceptions ([#65][i65]) @@ -66,3 +67,4 @@ All notable changes to this project will be documented in this file. [i76]: https://github.com/fszlin/certes/issues/76 [i86]: https://github.com/fszlin/certes/issues/86 [i87]: https://github.com/fszlin/certes/issues/87 +[i95]: https://github.com/fszlin/certes/issues/95