From e338469b7af2e527d0f5d947f86f4d9b453660f7 Mon Sep 17 00:00:00 2001 From: Rodolphe Breard Date: Wed, 11 Mar 2020 20:57:27 +0100 Subject: [PATCH] Fix the type of the externalAccountRequired field --- CHANGELOG.md | 3 +++ acmed/src/acme_proto/structs/directory.rs | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b2fa7e..5bdabc9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Wildcard certificates are now supported. In the file name, the `*` is replaced by `_`. +### Fixed +- In the directory, the `externalAccountRequired` field is now a boolean instead of a string. + ## [0.6.1] - 2019-09-13 ### Fixed diff --git a/acmed/src/acme_proto/structs/directory.rs b/acmed/src/acme_proto/structs/directory.rs index 6634249..3b82d12 100644 --- a/acmed/src/acme_proto/structs/directory.rs +++ b/acmed/src/acme_proto/structs/directory.rs @@ -8,7 +8,7 @@ pub struct DirectoryMeta { pub terms_of_service: Option, pub website: Option, pub caa_identities: Option>, - pub external_account_required: Option, + pub external_account_required: Option, } #[derive(Deserialize)]