From cf9a0757f7fc9c86d9962abc6b8ad39b77d524fc Mon Sep 17 00:00:00 2001 From: Hossein Shafagh Date: Fri, 10 Feb 2023 14:56:00 -0800 Subject: [PATCH 1/2] Preparing for a release 1.3.0 updating the change-log --- CHANGELOG.rst | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c762e973d9..f4ff9de00a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,39 @@ Changelog ========= +1.3.0 - `2023-02-13` +~~~~~~~~~~~~~~~~~~~~ +This release contains many dependency updates, and numerous added or improved features over the last year. + +Some of the notable changes in this release are: + +- No fine-grained authz for role global_cert_issuer +- De-activate endpoint (Entrust Plugin) +- Remove unsafe paginate method and replace with sort_and_page +- Move to github workflows for tests +- Detect duplicate certs +- Metrics for certificate expiry +- Sync source: handling idle/invalidated connection +- Sync endpoint: capture error and continue +- Domain-level fine-grained authz +- Handle and report authz warmup exception +- Ensure secondary certificates are not removed when rotating AWS endpoints +- Improved metric around expired endpoints +- Change pkg_resources call in plugin loading to use resolve rather than load +- Log when an expiring deployed certificate is detected +- NS1 DNS ACME Plugin +- Add a new endpoint that allows updating a certificate owner +- Support rotating endpoints with non-unique names via CLI +- Restrict multiple accounts on a certificate, by plugin +- Moving to dependabot's auto versioning strategy + +Special thanks to all who contributed to this release, notably: + +- `Neil Schelly `_ +- `Mitch Cail `_ +- `Bob Shannon `_ +- `alwaysjolley `_ + 1.2.0 - `2022-01-31` ~~~~~~~~~~~~~~~~~~~~ From 9969bc52ebbae168a537b0f7194d002f8ba3925b Mon Sep 17 00:00:00 2001 From: Hossein Shafagh Date: Fri, 10 Feb 2023 15:12:04 -0800 Subject: [PATCH 2/2] Update __about__.py --- lemur/__about__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lemur/__about__.py b/lemur/__about__.py index 9a860a0530..395fecf206 100644 --- a/lemur/__about__.py +++ b/lemur/__about__.py @@ -15,7 +15,7 @@ __summary__ = "Certificate management and orchestration service" __uri__ = "https://github.com/Netflix/lemur" -__version__ = "1.2.dev0" +__version__ = "1.3.dev0" __author__ = "The Lemur developers" __email__ = "security@netflix.com"