[openstack-dev] oslo.middleware 0.3.0 released

Doug Hellmann doug at doughellmann.com
Wed Jan 7 20:39:45 UTC 2015


The Oslo team is pleased to announce the release of
oslo.middleware 0.3.0: Oslo Middleware library

The primary reason for this release is to move the code
out of the oslo namespace package as part of
https://blueprints.launchpad.net/oslo-incubator/+spec/drop-namespace-packages

This release also adds a dependency on oslo.context. 

For more details, please see the git log history below and
 http://launchpad.net/oslo.middleware/+milestone/0.3.0

Please report issues through launchpad:
 http://bugs.launchpad.net/oslo.middleware

----------------------------------------

Changes in /home/dhellmann/repos/openstack/oslo.middleware  0.2.0..0.3.0

8e06ca5 Move files out of the namespace package
7c8e3e1 Don't use default value in LimitingReader
6824065 switch to oslo.context
b25e8c5 Workflow documentation is now in infra-manual

  diffstat (except docs and test files):

 CONTRIBUTING.rst                             |   7 +-
 openstack-common.conf                        |   2 -
 oslo/middleware/__init__.py                  |  25 +++---
 oslo/middleware/base.py                      |  45 +---------
 oslo/middleware/catch_errors.py              |  32 +------
 oslo/middleware/correlation_id.py            |  16 +---
 oslo/middleware/debug.py                     |  49 +----------
 oslo/middleware/i18n.py                      |  35 --------
 oslo/middleware/openstack/__init__.py        |   0
 oslo/middleware/openstack/common/__init__.py |  17 ----
 oslo/middleware/openstack/common/context.py  | 126 ---------------------------
 oslo/middleware/opts.py                      |  45 ----------
 oslo/middleware/request_id.py                |  29 +-----
 oslo/middleware/sizelimit.py                 |  79 +----------------
 oslo_middleware/__init__.py                  |  23 +++++
 oslo_middleware/base.py                      |  56 ++++++++++++
 oslo_middleware/catch_errors.py              |  43 +++++++++
 oslo_middleware/correlation_id.py            |  27 ++++++
 oslo_middleware/debug.py                     |  60 +++++++++++++
 oslo_middleware/i18n.py                      |  35 ++++++++
 oslo_middleware/opts.py                      |  45 ++++++++++
 oslo_middleware/request_id.py                |  40 +++++++++
 oslo_middleware/sizelimit.py                 |  95 ++++++++++++++++++++
 requirements.txt                             |   1 +
 setup.cfg                                    |   3 +-
 tests/test_sizelimit.py                      |   8 ++
 tests/test_warning.py                        |  61 +++++++++++++
 tox.ini                                      |   6 +-
 34 files changed, 769 insertions(+), 488 deletions(-)

  Requirements updates:

 diff --git a/requirements.txt b/requirements.txt
 index 275fa4f..1b66bf0 100644
 --- a/requirements.txt
 +++ b/requirements.txt
 @@ -7,0 +8 @@ oslo.config>=1.4.0  # Apache-2.0
 +oslo.context>=0.1.0 # Apache-2.0


More information about the OpenStack-dev mailing list