summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAJ Christensen <aj@opscode.com>2009-08-12 22:08:41 +1200
committerAJ Christensen <aj@opscode.com>2009-08-12 22:08:41 +1200
commitb7d19519a1c15f1c1a324e2683bd728b6198ce5a (patch)
tree7b359b68a14926dc81e25897d55d3103b0058cf9
parenta9d6c9010dc47ba042e081abbe855eab63d2c0d5 (diff)
downloadchef-b7d19519a1c15f1c1a324e2683bd728b6198ce5a.tar.gz
Release Chef 0.7.80.7.8
-rw-r--r--CHANGELOG25
-rw-r--r--chef-server-slice/Rakefile2
-rw-r--r--chef-server/Rakefile2
-rw-r--r--chef/Rakefile2
-rw-r--r--chef/lib/chef.rb2
5 files changed, 29 insertions, 4 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 2a042e8e9e..f31aaca3e9 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,28 @@
+Wed Aug 12 21:57:53 NZST 2009
+
+Release Notes - Chef - Version 0.7.8
+
+** Bug
+ * [CHEF-269] - remote_file fails if URL contains % characters
+ * [CHEF-431] - ChefServerSlice::OpenidServer#index should treat content_type as a symbol
+ * [CHEF-432] - chef-server-slice views should use slice_url instead of url
+ * [CHEF-439] - service resource - inherited file handle weirdness
+ * [CHEF-472] - Output logging is very choppy
+ * [CHEF-473] - attribute setting issue in 0.7.6
+ * [CHEF-477] - Walking an attribute with .each when it is deeply nested and has no defaults or overrides causes an exception
+ * [CHEF-479] - Attribute setting issue in 0.7.6 - wrong saved names?
+ * [CHEF-482] - Nested hashes loaded from JSON don't act like nested hashes
+ * [CHEF-483] - Chef::Node::Attribute.should behave_like_a(Hash)
+ * [CHEF-484] - Method Missing attribute lookups don't honour auto vivify on read.
+ * [CHEF-486] - Attributes added from an attribute file can unneccessarily block run list expansion
+
+** Improvement
+ * [CHEF-430] - Add support for HTTP Basic Authentication to Chef::REST
+
+** New Feature
+ * [CHEF-474] - Switch chef-server syntax highlighting to coderay
+ * [CHEF-475] - chef-repo should have a roles directory with chef upgrade from blog post
+
Sat Aug 8 4:45:50 NZST 2009
Release Notes - Chef - Version 0.7.6
diff --git a/chef-server-slice/Rakefile b/chef-server-slice/Rakefile
index 5a633c0606..8974dc38f3 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.7"
+CHEF_SERVER_VERSION="0.7.8"
AUTHOR = "Opscode"
EMAIL = "chef@opscode.com"
HOMEPAGE = "http://wiki.opscode.com/display/chef"
diff --git a/chef-server/Rakefile b/chef-server/Rakefile
index 13b057e461..b5e9eef40e 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.7"
+CHEF_SERVER_VERSION = "0.7.8"
AUTHOR = "Opscode"
EMAIL = "chef@opscode.com"
HOMEPAGE = "http://wiki.opscode.com/display/chef"
diff --git a/chef/Rakefile b/chef/Rakefile
index a10b6c8479..07a6ec3bb0 100644
--- a/chef/Rakefile
+++ b/chef/Rakefile
@@ -4,7 +4,7 @@ require 'rake/rdoctask'
require './tasks/rspec.rb'
GEM = "chef"
-CHEF_VERSION = "0.7.7"
+CHEF_VERSION = "0.7.8"
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 d051bba2aa..5f825506a8 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.7'
+ VERSION = '0.7.8'
end
# Adds a Dir.glob to Ruby 1.8.5, for compat