From 476ae297922188727e131e759543742625bf39e7 Mon Sep 17 00:00:00 2001 From: Maxime Alves LIRMM Date: Fri, 1 Sep 2023 04:59:17 +0900 Subject: [PATCH] [rc] 0.6.28rc5 --- CHANGELOG.md | 4 ++++ halfapi/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6bcd36d..d9e7400 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -79,6 +79,10 @@ The standard configuration precedence is fixed, in this order from the hight to Small cleanup of the logs levels. If you don't want the config to be dumped, just set the HALFAPI_LOGLEVEL to something different than "DEBUG". +### Fixes + +- Check an ACL based on a decorator on "/halfapi/acls/MY_ACL" + ## 0.6.27 ### Breaking changes diff --git a/halfapi/__init__.py b/halfapi/__init__.py index c6d4199..9d573cb 100644 --- a/halfapi/__init__.py +++ b/halfapi/__init__.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -__version__ = '0.6.28rc4' +__version__ = '0.6.28rc5' def version(): return f'HalfAPI version:{__version__}'