We are pumped to announce the release of: heat 2015.1.4: OpenStack Orchestration This release is part of the kilo stable release series. For more details, please see below. Changes in heat 2015.1.3..2015.1.4 ---------------------------------- 6dde95a Updated from global requirements cb98419 Fix database purge query 121f531 Ignore TypeErrors on old properties during update 505bcf0 Updated from global requirements 37c9f45 Ignore errors on old properties during update 6421e63 Prevent phantom user hooks 05e1658 Release lock correctly when resetting stacks at startup 24228cb Don't calculate attributes for metadata request 793809b Ignore ValueError when adding dependencies e7643d2 Bump stable/kilo next version to 2015.1.4 4197f02 Make minimum default num_engine_workers>=4 03ee722 Neutron port, tolerate switching network name/id Diffstat (except docs and test files) ------------------------------------- bin/heat-engine | 7 +- heat/api/openstack/v1/resources.py | 2 + heat/common/config.py | 2 - heat/db/sqlalchemy/api.py | 99 ++++++++++++++-------- heat/engine/api.py | 5 +- heat/engine/resource.py | 40 ++++++--- heat/engine/resources/openstack/neutron/neutron.py | 8 +- heat/engine/resources/openstack/neutron/port.py | 31 ++++++- heat/engine/service.py | 2 +- heat/engine/stack.py | 5 +- heat/objects/stack.py | 5 ++ heat/rpc/client.py | 2 +- .../functional/test_template_resource.py | 91 ++++++++++++++++++++ requirements.txt | 6 +- setup.cfg | 2 +- test-requirements.txt | 2 +- 25 files changed, 426 insertions(+), 74 deletions(-) Requirements updates -------------------- diff --git a/requirements.txt b/requirements.txt index c77142c..25aeb78 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6 +6 @@ pbr!=0.7,<1.0,>=0.6 -Babel>=1.3 +Babel!=2.3.0,!=2.3.1,!=2.3.2,!=2.3.3,>=1.3 # BSD @@ -25 +25 @@ oslo.utils!=1.4.1,<1.5.0,>=1.4.0 # Apache-2.0 -osprofiler>=0.3.0 # Apache-2.0 +osprofiler<1.0,>=0.3.0 # Apache-2.0 @@ -43 +43 @@ requests!=2.4.0,<2.8.0,>=2.2.0 -Routes!=2.0,>=1.12.3 +Routes!=2.0,<2.3.0,>=1.12.3 diff --git a/test-requirements.txt b/test-requirements.txt index 9afd04d..eb772e2 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -19 +19 @@ testscenarios>=0.4 -testtools!=1.2.0,>=0.9.36 +testtools!=1.2.0,<2.0.0,>=0.9.36