[new][solum] solum-dashboard 1.1.0 release (newton)
We are frolicsome to announce the release of: solum-dashboard 1.1.0: Solum Dashboard This release is part of the newton release series. For more details, please see below. Changes in solum-dashboard 1.0.1..1.1.0 --------------------------------------- 5d4e5e7 Updated from global requirements c0f68ec Manual update from global-requirements for solum-dashboard f31a21d Fix pep8 error 5ce23c6 Remove unused requirement 283c142 Add the languagepack create functionality to the dashboard 24299c3 Fix the applications list functionality in the dashboard fcbc297 Add the languagepack delete functionality to the dashboard adef084 Add the languagepack show and log functionality to the dashboard f93c712 Add the languagepack list functionality to the dashboard ed4abae Remove discover from test-requirements ecd04d1 Resolve pep8 import issues c5b82fd python-solumclient to requirements b001c4f Fix pep8 error d8b6c0e [workaround]Make solum-dashboard running Diffstat (except docs and test files) ------------------------------------- requirements.txt | 25 ++++--- setup.py | 3 +- solumdashboard/api/client.py | 33 +++++---- solumdashboard/applications/panel.py | 2 +- solumdashboard/applications/tables.py | 16 ++-- solumdashboard/applications/tabs.py | 2 +- solumdashboard/applications/urls.py | 23 +++--- solumdashboard/applications/views.py | 13 +++- solumdashboard/applications/workflows/create.py | 4 +- solumdashboard/applications/workflows/launch.py | 4 +- solumdashboard/assemblies/panel.py | 2 +- solumdashboard/assemblies/tables.py | 4 +- solumdashboard/assemblies/tabs.py | 2 +- solumdashboard/assemblies/views.py | 10 ++- solumdashboard/dashboard.py | 4 +- solumdashboard/exceptions.py | 2 +- solumdashboard/languagepacks/__init__.py | 0 solumdashboard/languagepacks/forms.py | 71 ++++++++++++++++++ solumdashboard/languagepacks/panel.py | 28 +++++++ solumdashboard/languagepacks/tables.py | 73 +++++++++++++++++++ solumdashboard/languagepacks/urls.py | 34 +++++++++ solumdashboard/languagepacks/views.py | 85 ++++++++++++++++++++++ .../templates/languagepacks/_create.html | 12 +++ .../templates/languagepacks/_detail.html | 42 +++++++++++ solumdashboard/templates/languagepacks/create.html | 7 ++ solumdashboard/templates/languagepacks/detail.html | 15 ++++ solumdashboard/templates/languagepacks/index.html | 11 +++ test-requirements.txt | 33 +++++---- tox.ini | 22 +++++- 30 files changed, 500 insertions(+), 84 deletions(-) Requirements updates -------------------- diff --git a/requirements.txt b/requirements.txt index 34141ea..ba701ae 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,4 @@ -pbr>=0.6,!=0.7,<1.0 +# The order of packages is significant, because pip processes them in the order +# of appearance. Changing the order has an impact on the overall integration +# process, which may cause wedges in the gate later. +pbr>=1.6 # Apache-2.0 @@ -4,10 +7,8 @@ Django<1.9,>=1.8 # BSD -django_compressor>=2.0 # MIT -django_openstack_auth>=2.0.0 # Apache-2.0 -eventlet>=0.13.0 -iso8601>=0.1.9 -netaddr>=0.7.6 -python-keystoneclient>=0.9.0 -pytz>=2010h -# Horizon Utility Requirements -# for SECURE_KEY generation -lockfile>=0.8 +django-compressor>=2.0 # MIT +django-openstack-auth>=2.4.0 # Apache-2.0 +eventlet!=0.18.3,>=0.18.2 # MIT +iso8601>=0.1.11 # MIT +netaddr!=0.7.16,>=0.7.12 # BSD +python-keystoneclient!=2.1.0,>=2.0.0 # Apache-2.0 +python-solumclient>=1.2.7 # Apache-2.0 +pytz>=2013.6 # MIT @@ -15 +16 @@ lockfile>=0.8 -oslo.utils>=3.5.0 # Apache-2.0 +oslo.utils>=3.16.0 # Apache-2.0 diff --git a/test-requirements.txt b/test-requirements.txt index 74b6ea6..5dcabd5 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -1 +1,4 @@ -hacking>=0.8.0,<0.9 +# The order of packages is significant, because pip processes them in the order +# of appearance. Changing the order has an impact on the overall integration +# process, which may cause wedges in the gate later. +hacking<0.12,>=0.11.0 # Apache-2.0 @@ -3,13 +6,15 @@ hacking>=0.8.0,<0.9 -coverage>=3.6 -discover -mock>=1.0 -oslo.config>=1.4.0.0a3 -pylint==0.25.2 -selenium -sphinx>=1.1.2,!=1.2.0,!=1.3b1,<1.3 -oslosphinx -sphinxcontrib-pecanwsme>=0.8 -sphinxcontrib-httpdomain -testrepository>=0.0.18 -testtools>=0.9.34 -unittest2 +coverage>=3.6 # Apache-2.0 +discover # BSD +mock>=2.0 # BSD +oslo.config>=3.14.0 # Apache-2.0 +pylint==1.4.5 # GPLv2 +selenium>=2.50.1 # Apache-2.0 +testrepository>=0.0.18 # Apache-2.0/BSD + +testtools>=1.4.0 # MIT +unittest2 # BSD + +sphinx!=1.3b1,<1.3,>=1.2.1 # BSD +oslosphinx!=3.4.0,>=2.5.0 # Apache-2.0 +sphinxcontrib-pecanwsme>=0.8 # Apache-2.0 +sphinxcontrib-httpdomain # BSD
participants (1)
-
no-reply@openstack.org