release: prepare 7.0.0 (liberty)

This patch prepares this Puppet module to be released in 7.x series (Liberty)
with 7.0.0.

Change-Id: Ie4215a8aa36c886972ad4ab801fb038e2afffc93
This commit is contained in:
Emilien Macchi 2015-11-26 09:36:15 +01:00
parent 6145bf6120
commit 5ca8b0b75f
5 changed files with 45 additions and 5 deletions

View File

@ -1,3 +1,43 @@
##2015-11-25 - 7.0.0
###Summary
This is a backwards-incompatible major release for OpenStack Liberty.
####Backwards-incompatible changes
- remove tenant parameter from keystone_user
####Features
- add tag to package and service resources
- add swift::config class
- reflect provider change in puppet-openstacklib
- keystone/auth: make service description configurable
- add support for swift-object-expirer service
- drop useless comment in authtoken.conf.erb
- improve File resources idempotency
- proxy: ceilometer httpd support
- stop managing file modes
- add support for DLO configuration
- warn that object storage parameter mount_check changes next release
- provide means to disable log_requests in config templates
- add incoming/outgoing chmod params to storage/all
- rely on autorequire for config resource ordering
- add tempauth middleware options
- add tempurl middleware options
- config resources applied after config template
####Bugfixes
- fix swift.conf / Swift_config ordering
- make sure Facter is only executed on agent
- add a blank line to the beginning of each filter
####Maintenance
- initial msync run for all Puppet OpenStack modules
- spec: Enable webmock connect to IPv4 link-local
- try to use zuul-cloner to prepare fixtures
- remove class_parameter_defaults puppet-lint check
- acceptance: use common bits from puppet-openstack-integration
- fix rspec 3.x syntax
##2015-10-10 - 6.1.0
###Summary

View File

@ -1,7 +1,7 @@
swift
=======
6.1.0 - 2015.1 - Kilo
7.0.0 - 2015.2 - Liberty
#### Table of Contents

View File

@ -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"]

View File

@ -1,6 +1,6 @@
{
"name": "openstack-swift",
"version": "6.1.0",
"version": "7.0.0",
"author": "Puppet Labs and OpenStack Contributors",
"summary": "Puppet module for OpenStack Swift",
"license": "Apache-2.0",
@ -32,7 +32,7 @@
"description": "Installs and configures OpenStack Swift (Object Storage).",
"dependencies": [
{ "name": "puppetlabs/inifile", "version_requirement": ">=1.0.0 <2.0.0" },
{ "name": "openstack/keystone", "version_requirement": ">=6.0.0 <7.0.0" },
{ "name": "openstack/keystone", "version_requirement": ">=7.0.0 <8.0.0" },
{ "name": "puppetlabs/rsync", "version_requirement": ">=0.2.0 <1.0.0" },
{ "name": "puppetlabs/stdlib", "version_requirement": ">=4.0.0 <5.0.0" },
{ "name": "puppetlabs/xinetd", "version_requirement": ">=1.0.1 <2.0.0" },

View File

@ -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"