From e6209c1e5b4909e7066b90e7eec5f5cb38fdbdf6 Mon Sep 17 00:00:00 2001 From: grindsa Date: Mon, 19 Jun 2023 12:40:04 +0200 Subject: [PATCH] [rel] bump to v0.28 --- CHANGES.md | 13 +++++++++++++ SECURITY.md | 4 ++-- acme_srv/version.py | 2 +- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 36be432a..3f7183a8 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -5,6 +5,19 @@ This is a high-level summary of the most important changes. For a full list of changes, see the [git commit log](https://github.com/grindsa/acme2certifier/commits) and pick the appropriate release branch. +# Changes in 0.28 + +**Features and Improvements**: + +- input validation in django deployments +- return account status when querying the account endpoint or sending a request to `new-account` with empty payload +- merge codescanning workflows into a single file + +**Bugfixes**: + +- [#111](https://github.com/grindsa/acme2certifier/issues/111) - Nonce handling in error responses +- [#112](https://github.com/grindsa/acme2certifier/issues/112) - Keyrollover in Posh-ACME + # Changes in 0.27 **Features and Improvements**: diff --git a/SECURITY.md b/SECURITY.md index 495d599f..ef3601b8 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -6,9 +6,9 @@ | Version | Supported | | ------- | ------------------ | +| 0.28.x | :white_check_mark: | | 0.27.x | :white_check_mark: | -| 0.26.x | :white_check_mark: | -| < 0.26 | :x: | +| < 0.27 | :x: | ## Reporting a Vulnerability diff --git a/acme_srv/version.py b/acme_srv/version.py index 7384ef6b..2241a96f 100644 --- a/acme_srv/version.py +++ b/acme_srv/version.py @@ -3,5 +3,5 @@ # 1) we don't load dependencies by storing it in __init__.py # 2) we can import it in setup.py for the same reason # 3) we can import it into your module module -__version__ = '0.27' +__version__ = '0.28' __dbversion__ = '0.23.2'