[openstack-dev] [new][glance] glance_store 0.14.0 release (newton)

no-reply at openstack.org no-reply at openstack.org
Wed Jul 20 15:52:30 UTC 2016


We are psyched to announce the release of:

glance_store 0.14.0: OpenStack Image Service Store Library

This release is part of the newton release series.

With source available at:

    http://git.openstack.org/cgit/openstack/glance_store

With package available at:

    https://pypi.python.org/pypi/glance_store

Please report issues through launchpad:

    http://bugs.launchpad.net/glance-store

For more details, please see below.

Changes in glance_store 0.13.0..0.14.0
--------------------------------------

79532ea Add bandit to pep8 and bandit testenv
fd84300 Remove unused variable in vmware store
84e6354 Imported Translations from Zanata
6e7c722 Updated from global requirements
4b6818d Check that size is a number
19d8df3 Replace dict.iterkeys with six.iterkeys to make PY3 compatible
3e20ff9 cinder: Fix get_size return value
5c07499 The function add calculation size_gb need improve
4b10efd Updated from global requirements
a3b298e Updated from global requirements
fd1e846 Fix argument order for assertEqual to (expected, observed)
f0087f3 Updated from global requirements
a678c26 Updated from global requirements
5829046 Remove -c from tox.ini
ea4483c tox respects upper-constraints.txt
9a58812 Updated from global requirements
922233f Updated from global requirements
55af8b5 Updated from global requirements
75cd233 Updated from global requirements
0a6124f Fix minor misspellings affecting Config Reference Guide
6f4bf26 Remove verbose option from glance_store tests
2e93319 Updated from global requirements
8eda73b Updated from global requirements
0a606a5 Improve help text of swift driver opts
40dded6 Updated from global requirements
1e87dfd Add functional tests for swift
25e5d19 Imported Translations from Zanata
7b439d6 Updated from global requirements
32d964f Updated from global requirements
4412580 Fix releasenotes to pass reno gates
3758022 Updated from global requirements
7b94d3c tox: use os-testr instead of testr
9addf29 Fix swiftclient mocks
ba8e51f Deprecate swift driver options properly
da74173 Fix typos in config files
1ae475c Setup defaults for swift driver authentication
1ce1f40 Fix doc generation warnings and errors
200249a trivial:fixing one W503 pep8 error
5c6c6e6 Module docs are not generated
3b53b0b Fix cinder store to support Cinder RemoteFS backends
3b637b4 Missing params in store_add_to_backend docstring
851508c Mock swiftclient's functions in tests
1d2474b Update reno for stable/mitaka
a9d6cce Add base for functional tests


Diffstat (except docs and test files)
-------------------------------------

.gitignore                                         |   3 +
.testr.conf                                        |   2 +-
functional_testing.conf.sample                     |   9 +
glance_store/_drivers/cinder.py                    |  12 +-
glance_store/_drivers/filesystem.py                |   4 +-
glance_store/_drivers/http.py                      |   2 +-
glance_store/_drivers/sheepdog.py                  |   7 +-
glance_store/_drivers/swift/store.py               | 196 +++++++++++---
glance_store/_drivers/swift/utils.py               |  36 ++-
glance_store/_drivers/vmware_datastore.py          |   7 +-
glance_store/backend.py                            |   2 +
.../en_GB/LC_MESSAGES/glance_store-log-warning.po  |  19 ++
.../locale/en_GB/LC_MESSAGES/glance_store.po       | 246 +++++++++++++++++
.../es/LC_MESSAGES/glance_store-log-warning.po     |   8 +-
.../fr/LC_MESSAGES/glance_store-log-warning.po     |   8 +-
glance_store/locale/glance_store-log-warning.pot   |  25 --
glance_store/locale/glance_store.pot               | 290 ---------------------
...event-unauthorized-errors-ebb9cf2236595cd0.yaml |  12 +-
releasenotes/source/index.rst                      |   1 +
.../locale/en_GB/LC_MESSAGES/releasenotes.po       | 113 ++++++++
releasenotes/source/mitaka.rst                     |   6 +
requirements.txt                                   |  12 +-
setup.cfg                                          |   8 +-
test-requirements.txt                              |  12 +-
tools/colorizer.py                                 |   3 +-
tools/tox_install.sh                               |  55 ++++
tox.ini                                            |  34 ++-
42 files changed, 1167 insertions(+), 557 deletions(-)


Requirements updates
--------------------

diff --git a/requirements.txt b/requirements.txt
index f102881..a83ce1a 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -4 +4 @@
-oslo.config>=3.7.0 # Apache-2.0
+oslo.config>=3.10.0 # Apache-2.0
@@ -7,3 +7,3 @@ oslo.serialization>=1.10.0 # Apache-2.0
-oslo.utils>=3.5.0 # Apache-2.0
-oslo.concurrency>=3.5.0 # Apache-2.0
-stevedore>=1.5.0 # Apache-2.0
+oslo.utils>=3.14.0 # Apache-2.0
+oslo.concurrency>=3.8.0 # Apache-2.0
+stevedore>=1.10.0 # Apache-2.0
@@ -17,2 +17,2 @@ jsonschema!=2.5.0,<3.0.0,>=2.0.0 # MIT
-python-keystoneclient!=1.8.0,!=2.1.0,>=1.6.0 # Apache-2.0
-requests!=2.9.0,>=2.8.1 # Apache-2.0
+python-keystoneclient!=1.8.0,!=2.1.0,>=1.7.0 # Apache-2.0
+requests>=2.10.0 # Apache-2.0
diff --git a/test-requirements.txt b/test-requirements.txt
index 8c6627d..b45ee6f 100644
--- a/test-requirements.txt
+++ b/test-requirements.txt
@@ -8 +8 @@ hacking<0.11,>=0.10.0
-mock>=1.2 # BSD
+mock>=2.0 # BSD
@@ -12 +12 @@ coverage>=3.6 # Apache-2.0
-fixtures>=1.3.1 # Apache-2.0/BSD
+fixtures>=3.0.0 # Apache-2.0/BSD
@@ -14 +14 @@ python-subunit>=0.0.18 # Apache-2.0/BSD
-requests-mock>=0.7.0 # Apache-2.0
+requests-mock>=1.0 # Apache-2.0
@@ -18,0 +19,2 @@ oslotest>=1.10.0 # Apache-2.0
+os-testr>=0.7.0 # Apache-2.0
+bandit>=1.0.1  # Apache-2.0
@@ -21 +23 @@ oslotest>=1.10.0 # Apache-2.0
-sphinx!=1.2.0,!=1.3b1,<1.3,>=1.1.2 # BSD
+sphinx!=1.3b1,<1.3,>=1.2.1 # BSD
@@ -23 +25 @@ oslosphinx!=3.4.0,>=2.5.0 # Apache-2.0
-reno>=0.1.1 # Apache2
+reno>=1.8.0 # Apache2





More information about the OpenStack-dev mailing list