We are happy to announce the release of: monasca-log-api 2.0.0: Monasca API for sending log entries This release is part of the pike release series. Download the package from: https://tarballs.openstack.org/monasca-log-api/ For more details, please see below. Changes in monasca-log-api 1.4.0..2.0.0 --------------------------------------- ad7b42c Update Readme references e69b5ad Updated from global requirements e1389d3 Optimize the link address c8e70e3 Replace six.iteritems() with .items() 97de189 Remove monasca_log_api/.gitignore ffaf4a2 Updated from global requirements 6314394 Internal interfaces for log listing API implementation e36dece Updated from global requirements ec33e04 Specification for log listing API bf5507e Updated from global requirements 6814484 Updated from global requirements 3b89b3a Updated from global requirements 4ae2702 Adding WSGI support 7a92ac5 Updated from global requirements 1d1815f Typo fix: adress => address Diffstat (except docs and test files) ------------------------------------- README.md | 10 +-- devstack/README.md | 13 +++ devstack/Vagrantfile | 3 + devstack/files/apache-log-api.template | 25 ++++++ devstack/plugin.sh | 110 +++++++++++++++++++++++- devstack/settings | 8 +- monasca_log_api/.gitignore | 2 - monasca_log_api/api/logs_api.py | 12 +++ monasca_log_api/db/__init__.py | 0 monasca_log_api/db/common/__init__.py | 0 monasca_log_api/db/common/model.py | 43 ++++++++++ monasca_log_api/db/repo/__init__.py | 0 monasca_log_api/db/repo/logs_repository.py | 74 ++++++++++++++++ monasca_log_api/reference/common/validation.py | 2 +- monasca_log_api/wsgi/__init__.py | 0 monasca_log_api/wsgi/monasca_log_api.py | 20 +++++ requirements.txt | 14 ++-- setup.py | 2 +- 20 files changed, 429 insertions(+), 23 deletions(-) Requirements updates -------------------- diff --git a/requirements.txt b/requirements.txt index c0209c2..c847371 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5 +5 @@ -pbr>=1.8 # Apache-2.0 +pbr!=2.1.0,>=2.0.0 # Apache-2.0 @@ -7 +7 @@ Paste # MIT -falcon>=0.1.6 # Apache-2.0 +falcon>=1.0.0 # Apache-2.0 @@ -9,4 +9,4 @@ keystonemiddleware>=4.12.0 # Apache-2.0 -oslo.config!=3.18.0,>=3.14.0 # Apache-2.0 -oslo.context>=2.9.0 # Apache-2.0 -oslo.middleware>=3.0.0 # Apache-2.0 -oslo.log>=3.11.0 # Apache-2.0 +oslo.config>=3.22.0 # Apache-2.0 +oslo.context>=2.12.0 # Apache-2.0 +oslo.middleware>=3.10.0 # Apache-2.0 +oslo.log>=3.22.0 # Apache-2.0 @@ -14 +14 @@ oslo.serialization>=1.10.0 # Apache-2.0 -oslo.utils>=3.18.0 # Apache-2.0 +oslo.utils>=3.20.0 # Apache-2.0