diff --git a/CHANGELOG.md b/CHANGELOG.md index e7f8ab0d..8966ea14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,34 @@ +##2015-11-25 - 7.0.0 +###Summary + +This is a backwards-incompatible major release for OpenStack Liberty. + +####Backwards-incompatible changes + +####Features +- allow Orchestration of Image Backend +- add new parameters for multidomain support +- add api_versions parameter +- remove hardcoded 'neutron_options' list +- remove hardcoded 'cinder_options' list +- remove hardcoded 'hypervisor_options' list +- add ssl_no_verify parameter +- make redirect type configurable +- add CUSTOM_THEME_PATH variable +- add tag to package resource +- add cache_backend and cache_options params + +####Bugfixes +- do not run collectstatic or compress in Debian +- remove duplicate key for ':servername' + +####Maintenance +- acceptance: enable debug & verbosity for OpenStack logs +- initial msync run for all Puppet OpenStack modules +- try to use zuul-cloner to prepare fixtures +- remove class_parameter_defaults puppet-lint check +- fix rspec 3.x syntax + ##2015-10-15 - 6.1.0 ###Summary diff --git a/README.md b/README.md index 686b896b..e358aed3 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ horizon ======= -6.1.0 - 2015.1 - Kilo +7.0.0 - 2015.2 - Liberty #### Table of Contents diff --git a/Rakefile b/Rakefile index ed79bead..9692ffdd 100644 --- a/Rakefile +++ b/Rakefile @@ -58,7 +58,7 @@ task :spec_prep do zuul_clone_cmd += ['git://git.openstack.org', "#{repo}"] sh(*zuul_clone_cmd) else - sh("git clone https://git.openstack.org/#{repo} #{repo}") + sh("git clone https://git.openstack.org/#{repo} -b stable/liberty #{repo}") end script = ['env'] script += ["PUPPETFILE_DIR=#{Dir.pwd}/spec/fixtures/modules"] diff --git a/metadata.json b/metadata.json index 9e5bab6e..8db0311d 100644 --- a/metadata.json +++ b/metadata.json @@ -1,6 +1,6 @@ { "name": "openstack-horizon", - "version": "6.1.0", + "version": "7.0.0", "author": "Puppet Labs and OpenStack Contributors", "summary": "Puppet module for OpenStack Horizon", "license": "Apache-2.0", diff --git a/spec/spec_helper_acceptance.rb b/spec/spec_helper_acceptance.rb index 429e807c..15e8cc97 100644 --- a/spec/spec_helper_acceptance.rb +++ b/spec/spec_helper_acceptance.rb @@ -38,7 +38,7 @@ RSpec.configure do |c| zuul_clone_cmd += "git://git.openstack.org #{repo}" on host, zuul_clone_cmd else - on host, "git clone https://git.openstack.org/#{repo} #{repo}" + on host, "git clone https://git.openstack.org/#{repo} -b stable/liberty #{repo}" end on host, "ZUUL_REF=#{zuul_ref} ZUUL_BRANCH=#{zuul_branch} ZUUL_URL=#{zuul_url} bash #{repo}/install_modules.sh"