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: Iaceafcba74b388bce95ff86f917133f407398cf7
This commit is contained in:
Emilien Macchi 2015-11-25 11:12:53 +01:00
parent 2e7c5e62bb
commit 0ff37d42b0
5 changed files with 38 additions and 6 deletions

View File

@ -1,3 +1,35 @@
##2015-11-25 - 7.0.0
###Summary
This is a backwards-incompatible major release for OpenStack Liberty.
####Backwards-incompatible changes
- change section name for AMQP rabbit parameters
####Features
- create designate::db::sync
- reflect provider change in puppet-openstacklib
- put all the logging related parameters to the logging class
- allow customization of db sync command line
- metadata: Add missing powerdns module
- use generic_service to manage services
- add enabled_notification_handlers option
- add related parameters to service::central section
- add designate_rootwrap_config in designate::config
- add notification related parameters to designate
- add hooks for external install & svc management
####Bugfixes
- rely on autorequire for config resource ordering
####Maintenance
- fix rspec 3.x syntax
- initial msync run for all Puppet OpenStack modules
- acceptance: enable debug & verbosity for OpenStack logs
- try to use zuul-cloner to prepare fixtures
- remove class_parameter_defaults puppet-lint check
- acceptance: use common bits from puppet-openstack-integration
##2015-10-10 - 6.1.0
###Summary

View File

@ -1,7 +1,7 @@
puppet-designate
================
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-designate",
"version": "6.1.0",
"version": "7.0.0",
"author": "Xingchao Yu and StackForge Contributors",
"summary": "Puppet module for OpenStack Designate",
"license": "Apache-2.0",
@ -32,10 +32,10 @@
"description": "Installs and configures OpenStack Designate (DNS Services).",
"dependencies": [
{ "name": "puppetlabs/inifile", "version_requirement": ">=1.4.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/stdlib", "version_requirement": ">=4.0.0 <5.0.0" },
{ "name": "theforeman/dns", "version_requirement": ">=1.4.0 <4.0.0" },
{ "name": "openstack/openstacklib", "version_requirement": ">=6.0.0 <7.0.0" },
{ "name": "openstack/openstacklib", "version_requirement": ">=7.0.0 <8.0.0" },
{ "name": "antonlindstrom/powerdns", "version_requirement": ">=0.0.5 <1.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"