We enthusiastically announce the release of: solum 10.0.0: Application Lifecycle Management for OpenStack This release is part of the wallaby release series. The source is available from: https://opendev.org/openstack/solum Download the package from: https://tarballs.openstack.org/solum/ Please report issues through: https://bugs.launchpad.net/solum/+bugs For more details, please see below. 10.0.0 ^^^^^^ Upgrade Notes ************* * The default value of "[oslo_policy] policy_file" config option has been changed from "policy.json" to "policy.yaml". Operators who are utilizing customized or previously generated static policy JSON files (which are not needed by default), should generate new policy files or convert them in YAML format. Use the oslopolicy-convert- json-to-yaml (https://docs.openstack.org/oslo.policy/latest/cli /oslopolicy-convert-json-to-yaml.html) tool to convert a JSON to YAML formatted policy file in backward compatible way. Deprecation Notes ***************** * Use of JSON policy files was deprecated by the "oslo.policy" library during the Victoria development cycle. As a result, this deprecation is being noted in the Wallaby cycle with an anticipated future removal of support by "oslo.policy". As such operators will need to convert to YAML policy files. Please see the upgrade notes for details on migration of any custom policy files. Changes in solum 9.0.0..10.0.0 ------------------------------ 8676572 [goal] Deprecate the JSON formatted policy file 956079e Re-use rpc transport e701790 Fix broken CI and lower-constraints 367585e Imported Translations from Zanata b08405b Add Python3 wallaby unit tests 3f8e9f6 Update master for stable/victoria Diffstat (except docs and test files) ------------------------------------- .zuul.yaml | 2 +- lower-constraints.txt | 34 ++++++------- ...son-formatted-policy-file-23144ea954ae3b4a.yaml | 20 ++++++++ releasenotes/source/index.rst | 1 + .../locale/en_GB/LC_MESSAGES/releasenotes.po | 7 ++- releasenotes/source/victoria.rst | 6 +++ requirements.txt | 17 +++---- setup.cfg | 2 +- solum/cmd/status.py | 9 ++-- solum/common/config.py | 6 +++ solum/common/policy.py | 7 +++ solum/common/rpc/service.py | 18 ++----- solum/conductor/api.py | 4 +- solum/deployer/api.py | 4 +- solum/rpc.py | 56 ++++++++++++++++++++++ solum/worker/api.py | 4 +- tox.ini | 6 +++ 19 files changed, 174 insertions(+), 57 deletions(-) Requirements updates -------------------- diff --git a/requirements.txt b/requirements.txt index 21afdef..906a3fa 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4 +4 @@ -eventlet>=0.22.0 # MIT +eventlet>=0.26.1 # MIT @@ -12,2 +12,2 @@ netaddr>=0.7.20 # BSD -oslo.config>=5.2.0 # Apache-2.0 -oslo.context>=2.21.0 # Apache-2.0 +oslo.config>=6.8.0 # Apache-2.0 +oslo.context>=2.22.0 # Apache-2.0 @@ -18,2 +18,3 @@ oslo.serialization>=2.25.0 # Apache-2.0 -oslo.upgradecheck>=0.1.0 # Apache-2.0 -oslo.utils>=3.36.0 # Apache-2.0 +oslo.service>=1.31.0 # Apache-2.0 +oslo.upgradecheck>=1.3.0 # Apache-2.0 +oslo.utils>=4.5.0 # Apache-2.0 @@ -22,2 +23,2 @@ oslo.rootwrap>=5.13.0 # Apache-2.0 -oslo.policy>=1.34.0 # Apache-2.0 -oslo.privsep>=1.32.0 # Apache-2.0 +oslo.policy>=3.6.0 # Apache-2.0 +oslo.privsep>=1.33.2 # Apache-2.0 @@ -25 +26 @@ pbr>=3.1.1 # Apache-2.0 -pecan>=1.2.1 # BSD +pecan>=1.3.2 # BSD