The Oslo team is pleased to announce the release of: oslo.middleware 0.4.0: Oslo Middleware library
This release adds a new middleware class for adding a health-check endpoint to a REST service. For more details, please see the git log history below and: http://launchpad.net/oslo.middleware/+milestone/0.4.0 Please report issues through launchpad: http://bugs.launchpad.net/oslo.middleware Changes in /home/dhellmann/repos/openstack/oslo.middleware 0.3.0..0.4.0 ----------------------------------------------------------------------- 3687523 Fixes the healthcheck factory method and docs d345a4b add shortcut to healthcheck middleware 88c69a0 Updated from global requirements 3bc703b Move i18n module to a private name c46b2c6 Update Oslo imports to remove namespace package edabbd1 Add healthcheck middleware 2e6685d Updated from global requirements 020fd92 Fix bug tracker link in readme Diffstat (except docs and test files) ------------------------------------- README.rst | 2 +- oslo_middleware/__init__.py | 2 + oslo_middleware/_i18n.py | 35 ++++++++ oslo_middleware/catch_errors.py | 2 +- oslo_middleware/healthcheck/__init__.py | 116 +++++++++++++++++++++++++ oslo_middleware/healthcheck/disable_by_file.py | 54 ++++++++++++ oslo_middleware/healthcheck/pluginbase.py | 35 ++++++++ oslo_middleware/i18n.py | 35 -------- oslo_middleware/sizelimit.py | 6 +- requirements.txt | 5 +- setup.cfg | 3 + tox.ini | 2 +- 16 files changed, 347 insertions(+), 44 deletions(-) Requirements updates -------------------- diff --git a/requirements.txt b/requirements.txt index 1b66bf0..00cbf4f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7 +7 @@ Babel>=1.3 -oslo.config>=1.4.0 # Apache-2.0 +oslo.config>=1.6.0 # Apache-2.0 @@ -9 +9 @@ oslo.context>=0.1.0 # Apache-2.0 -oslo.i18n>=1.0.0 # Apache-2.0 +oslo.i18n>=1.3.0 # Apache-2.0 @@ -10,0 +11 @@ six>=1.7.0 +stevedore>=1.1.0 # Apache-2.0 __________________________________________________________________________ OpenStack Development Mailing List (not for usage questions) Unsubscribe: [email protected]?subject:unsubscribe http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev
