diff options
author | AJ Christensen <aj@opscode.com> | 2009-09-04 19:27:04 +1200 |
---|---|---|
committer | AJ Christensen <aj@opscode.com> | 2009-09-04 19:27:04 +1200 |
commit | 8d6249e04c936fa4cf6eeadb118ee5c3683432f8 (patch) | |
tree | 4b0f5a339e5505f5b972b910ed5e2673ac5ab23d | |
parent | fa633806ab772d03e5c77fefeaa638cdea535506 (diff) | |
download | chef-0.7.10.tar.gz |
Release Chef 0.7.100.7.10
-rw-r--r-- | CHANGELOG | 25 | ||||
-rw-r--r-- | chef-server-slice/Rakefile | 2 | ||||
-rw-r--r-- | chef-server/Rakefile | 2 | ||||
-rw-r--r-- | chef/Rakefile | 2 | ||||
-rw-r--r-- | chef/lib/chef.rb | 2 |
5 files changed, 29 insertions, 4 deletions
@@ -1,3 +1,28 @@ +Fri Sep 4 7:25:00 NZST 2009 + + +Release Notes - Chef - Version 0.7.10 + +** Bug + * [CHEF-287] - chef client logging to file only dumps periodically + * [CHEF-362] - regression: mixlib-config 1.0.10 breaks log_location= override + * [CHEF-476] - merb-slices gem not installed with new chef server install on ubuntu 9.0.4 + * [CHEF-481] - 0.7.6 breaks Centos5 + * [CHEF-488] - When installing a gem_package, the version parameter needs to be quoted + * [CHEF-492] - Attributes aren't quite hash enough to fool variables() method in templates + * [CHEF-494] - Multiple roles' default_attributes are not merged correctly on the node + * [CHEF-497] - Status page fails to work under ruby 1.8.5 + * [CHEF-500] - server.rb log_location truncation take two + * [CHEF-512] - Update chef config for pending mixlib-config config_attr_writer fix + * [CHEF-525] - Spec failures in node/attribute_spec.rb + +** Improvement + * [CHEF-449] - use the basename of the target path as the default for the template, remote_file and remote_directory sources + * [CHEF-493] - Alias set_unless with "default" in attributes.rb + * [CHEF-509] - add man pages, initscripts and other goods from packaging efforts + * [CHEF-515] - chef-server needs to be compatible with couchdb 0.10.0 + * [CHEF-524] - Chef::Platform.find_provider_for_node is always used to get an instance of the provider (code duplication) + Wed Aug 12 21:57:53 NZST 2009 Release Notes - Chef - Version 0.7.8 diff --git a/chef-server-slice/Rakefile b/chef-server-slice/Rakefile index 1e5f35b2c3..c25c2e0a79 100644 --- a/chef-server-slice/Rakefile +++ b/chef-server-slice/Rakefile @@ -9,7 +9,7 @@ rescue LoadError end GEM_NAME = "chef-server-slice" -CHEF_SERVER_VERSION="0.7.9" +CHEF_SERVER_VERSION="0.7.10" AUTHOR = "Opscode" EMAIL = "chef@opscode.com" HOMEPAGE = "http://wiki.opscode.com/display/chef" diff --git a/chef-server/Rakefile b/chef-server/Rakefile index d60352e421..54389cc032 100644 --- a/chef-server/Rakefile +++ b/chef-server/Rakefile @@ -18,7 +18,7 @@ require 'chef' unless defined?(Chef) include FileUtils GEM = "chef-server" -CHEF_SERVER_VERSION = "0.7.9" +CHEF_SERVER_VERSION = "0.7.10" AUTHOR = "Opscode" EMAIL = "chef@opscode.com" HOMEPAGE = "http://wiki.opscode.com/display/chef" diff --git a/chef/Rakefile b/chef/Rakefile index d518e20b2b..f7b921f7a7 100644 --- a/chef/Rakefile +++ b/chef/Rakefile @@ -4,7 +4,7 @@ require 'rake/rdoctask' require './tasks/rspec.rb' GEM = "chef" -CHEF_VERSION = "0.7.9" +CHEF_VERSION = "0.7.10" AUTHOR = "Adam Jacob" EMAIL = "adam@opscode.com" HOMEPAGE = "http://wiki.opscode.com/display/chef" diff --git a/chef/lib/chef.rb b/chef/lib/chef.rb index 9cec0cb7e3..0258a75980 100644 --- a/chef/lib/chef.rb +++ b/chef/lib/chef.rb @@ -27,7 +27,7 @@ require 'chef/config' Dir[File.join(File.dirname(__FILE__), 'chef/mixin/**/*.rb')].sort.each { |lib| require lib } class Chef - VERSION = '0.7.9' + VERSION = '0.7.10' end # Adds a Dir.glob to Ruby 1.8.5, for compat |